Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/Samples/Media/DeferredShadingMedia/deferred_post_debug.material @ 3

Last change on this file since 3 was 3, checked in by anonymous, 17 years ago

=update

File size: 2.5 KB
Line 
1material DeferredShading/Post/ShowNormal
2{
3    technique
4    {
5        pass
6                {
7                        cull_hardware none
8                        cull_software none
9                        depth_func always_pass
10
11                        fragment_program_ref DeferredShading/post/hlsl/ShowNormal_ps
12                        {
13                        }
14                        vertex_program_ref DeferredShading/post/hlsl/vs
15                        {
16                        }
17                        texture_unit
18                        {
19                                tex_address_mode clamp
20                                filtering none
21                        }
22                        texture_unit
23                        {
24                                tex_coord_set 1
25                                tex_address_mode clamp
26                                filtering none
27                        }
28                }
29        }
30        technique
31    {
32        pass
33                {
34                        cull_hardware none
35                        cull_software none
36                        depth_func always_pass
37
38                        fragment_program_ref DeferredShading/post/glsl/ShowNormal_ps
39                        {
40                        }
41                        vertex_program_ref DeferredShading/post/glsl/vs
42                        {
43                        }
44                        texture_unit
45                        {
46                                tex_address_mode clamp
47                                filtering none
48                        }
49                        texture_unit
50                        {
51                                tex_coord_set 1
52                                tex_address_mode clamp
53                                filtering none
54                        }
55                }
56        }
57}
58
59material DeferredShading/Post/ShowDS
60{
61    technique
62    {
63        pass
64                {
65                        cull_hardware none
66                        cull_software none
67                        depth_func always_pass
68
69                        fragment_program_ref DeferredShading/post/hlsl/ShowDS_ps
70                        {
71                        }
72                        vertex_program_ref DeferredShading/post/hlsl/vs
73                        {
74                        }
75                        texture_unit
76                        {
77                                tex_address_mode clamp
78                                filtering none
79                        }
80                        texture_unit
81                        {
82                                tex_coord_set 1
83                                tex_address_mode clamp
84                                filtering none
85                        }
86                }
87        }
88        technique
89    {
90        pass
91                {
92                        cull_hardware none
93                        cull_software none
94                        depth_func always_pass
95
96                        fragment_program_ref DeferredShading/post/glsl/ShowDS_ps
97                        {
98                        }
99                        vertex_program_ref DeferredShading/post/glsl/vs
100                        {
101                        }
102                        texture_unit
103                        {
104                                tex_address_mode clamp
105                                filtering none
106                        }
107                        texture_unit
108                        {
109                                tex_coord_set 1
110                                tex_address_mode clamp
111                                filtering none
112                        }
113                }
114        }
115}
116material DeferredShading/Post/ShowColour
117{
118    technique
119    {
120        pass
121                {
122                        cull_hardware none
123                        cull_software none
124                        depth_func always_pass
125
126                        fragment_program_ref DeferredShading/post/hlsl/ShowColour_ps
127                        {
128                        }
129                        vertex_program_ref DeferredShading/post/hlsl/vs
130                        {
131                        }
132                        texture_unit
133                        {
134                                tex_address_mode clamp
135                                filtering none
136                        }
137                        texture_unit
138                        {
139                                tex_coord_set 1
140                                tex_address_mode clamp
141                                filtering none
142                        }
143                }
144        }
145        technique
146    {
147        pass
148                {
149                        cull_hardware none
150                        cull_software none
151                        depth_func always_pass
152
153                        fragment_program_ref DeferredShading/post/glsl/ShowColour_ps
154                        {
155                        }
156                        vertex_program_ref DeferredShading/post/glsl/vs
157                        {
158                        }
159                        texture_unit
160                        {
161                                tex_address_mode clamp
162                                filtering none
163                        }
164                        texture_unit
165                        {
166                                tex_coord_set 1
167                                tex_address_mode clamp
168                                filtering none
169                        }
170                }
171        }
172}
Note: See TracBrowser for help on using the repository browser.