source: GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPPostProc/GTPPostProc.program @ 2024

Revision 2024, 1.1 KB checked in by szirmay, 17 years ago (diff)
Line 
1vertex_program GTP/PostProc/PostProc_VS hlsl
2{
3        source GTPPostProc.hlsl
4        entry_point Default_VS
5        target vs_2_0
6}
7
8fragment_program GTP/PostProc/PostProc_Black_PS hlsl
9{
10        source GTPPostProc.hlsl
11        entry_point Black_PS
12        target ps_2_0
13}
14
15fragment_program GTP/PostProc/Copy_PS hlsl
16{
17        source GTPPostProc.hlsl
18        entry_point Copy_PS
19        target ps_2_0
20}
21
22fragment_program GTP/PostProc/Add_PS hlsl
23{
24        source GTPPostProc.hlsl
25        entry_point Add_PS
26        target ps_2_0
27}
28
29fragment_program GTP/PostProc/Luminance_PS hlsl
30{
31        source GTPPostProc.hlsl
32        entry_point Luminance_PS
33        target ps_2_0
34}
35
36fragment_program GTP/PostProc/GlowCut_PS hlsl
37{
38        source GTPPostProc.hlsl
39        entry_point GlowCut_PS
40        target ps_2_0
41}
42
43fragment_program GTP/PostProc/GlowBlurH_PS hlsl
44{
45        source GTPPostProc.hlsl
46        entry_point GlowBlurH_PS
47        target ps_2_0
48}
49
50fragment_program GTP/PostProc/GlowBlurV_PS hlsl
51{
52        source GTPPostProc.hlsl
53        entry_point GlowBlurV_PS
54        target ps_2_0
55}
56
57fragment_program GTP/PostProc/ToneMap_PS hlsl
58{
59        source GTPPostProc.hlsl
60        entry_point ToneMap_PS
61        target ps_2_0
62}
Note: See TracBrowser for help on using the repository browser.