source: OGRE/trunk/ogrenew/Samples/Media/DeferredShadingMedia/deferred_post_onepass.material @ 692

Revision 692, 1.0 KB checked in by mattausch, 19 years ago (diff)

adding ogre 1.2 and dependencies

Line 
1// Post processors
2material DeferredShading/Post/Single
3{
4    technique
5    {
6        pass
7                {
8                        cull_hardware none
9                        cull_software none
10                        depth_func always_pass
11                        depth_write on
12                        // Doesn't work for some reason
13                        //depth_check off
14
15                        fragment_program_ref DeferredShading/post/hlsl/SinglePass_ps
16                        {
17                        }
18                        vertex_program_ref DeferredShading/post/hlsl/vs
19                        {
20                        }
21                        texture_unit
22                        {
23                                tex_address_mode clamp
24                                filtering none
25                        }
26                        texture_unit
27                        {
28                                tex_address_mode clamp
29                                filtering none
30                        }
31                }
32        }
33        technique
34    {
35        pass
36                {
37                        cull_hardware none
38                        cull_software none
39                        depth_func always_pass
40                        depth_write on
41                        // Doesn't work for some reason
42                        //depth_check off
43
44                        fragment_program_ref DeferredShading/post/glsl/SinglePass_ps
45                        {
46                        }
47                        vertex_program_ref DeferredShading/post/glsl/vs
48                        {
49                        }
50                        texture_unit
51                        {
52                                tex_address_mode clamp
53                                filtering none
54                        }
55                        texture_unit
56                        {
57                                tex_address_mode clamp
58                                filtering none
59                        }
60                }
61        }
62}
63
Note: See TracBrowser for help on using the repository browser.