Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/SuperOrxoBros_HS18/data_extern/materials/RadialBlur.material @ 12175

Last change on this file since 12175 was 12175, checked in by siramesh, 5 years ago

Super Orxo Bros (Sidharth Ramesh, Nisa Balta, Jeff Ren)

File size: 639 bytes
Line 
1//Cg Pixel Shader ps_2_0
2fragment_program Radial_Blur_ps_cg cg
3{
4        source Radial_Blur_FP.cg
5        profiles ps_2_0 arbfp1
6        entry_point main
7
8}
9
10
11//Effect: Radial Blur
12material Ogre/Compositor/Radial_Blur
13{
14        technique
15        {
16                pass
17                {
18                        //State: D3DRS_CULLMODE, Value : D3DCULL_NONE
19                        cull_hardware none
20                        cull_software none
21                        depth_check off
22
23                        vertex_program_ref Ogre/Compositor/StdQuad_Tex2a_vp
24                        {
25                        }
26
27                        fragment_program_ref Radial_Blur_ps_cg
28                        {
29                                param_named sampleDist float 0.5
30                                param_named sampleStrength float 2.2
31                        }
32                        texture_unit
33                        {
34                                tex_coord_set 0
35                                tex_address_mode clamp
36                                filtering trilinear
37                        }
38                }
39        }
40}
Note: See TracBrowser for help on using the repository browser.