source: GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/X3D.material @ 916

Revision 916, 468 bytes checked in by szirmay, 18 years ago (diff)
Line 
1
2fragment_program X3DCompositor_FP hlsl
3{
4        source X3DCompositor.hlsl
5        entry_point X3DPS
6        target ps_3_0
7
8}
9
10material X3DCompositor
11{
12        technique
13        {
14                pass
15                {
16                        depth_check off
17                       
18                        fragment_program_ref X3DCompositor_FP
19                        {
20                                param_named_auto width viewport_width   
21                                param_named_auto height viewport_height                         
22                        }
23                       
24                        texture_unit
25                        {
26                                texture flare.png
27                                filtering none
28                                tex_address_mode wrap
29                        }
30                }
31        }
32}
Note: See TracBrowser for help on using the repository browser.