Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/data_extern/materials/StdQuad_vp.program @ 12188

Last change on this file since 12188 was 7708, checked in by dafrick, 13 years ago

Merging cleanup branch. You will need to update your data repository as well as your local copy of the code.

  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1vertex_program Ogre/Compositor/StdQuad_Cg_vp cg
2{
3        source StdQuad_vp.cg
4        entry_point StdQuad_vp
5        profiles vs_1_1 arbvp1
6
7        default_params
8        {
9                param_named_auto worldViewProj worldviewproj_matrix
10        }
11}
12
13vertex_program Ogre/Compositor/StdQuad_Tex2_vp cg
14{
15        source StdQuad_vp.cg
16        entry_point StdQuad_Tex2_vp
17        profiles vs_1_1 arbvp1
18
19        default_params
20        {
21                param_named_auto worldViewProj worldviewproj_matrix
22        }
23}
24
25vertex_program Ogre/Compositor/StdQuad_Tex2a_vp cg
26{
27        source StdQuad_vp.cg
28        entry_point StdQuad_Tex2a_vp
29        profiles vs_1_1 arbvp1
30
31        default_params
32        {
33                param_named_auto worldViewProj worldviewproj_matrix
34        }
35}
36
37vertex_program Ogre/Compositor/StdQuad_Tex3_vp cg
38{
39        source StdQuad_vp.cg
40        entry_point StdQuad_Tex3_vp
41        profiles vs_1_1 arbvp1
42
43        default_params
44        {
45                param_named_auto worldViewProj worldviewproj_matrix
46        }
47}
48
49vertex_program Ogre/Compositor/StdQuad_Tex4_vp cg
50{
51        source StdQuad_vp.cg
52        entry_point StdQuad_Tex4_vp
53        profiles vs_1_1 arbvp1
54
55        default_params
56        {
57                param_named_auto worldViewProj worldviewproj_matrix
58        }
59}
60
61vertex_program Ogre/Compositor/StdQuad_GLSL_vp glsl
62{
63        source StdQuad_vp.glsl
64}
65
66
67vertex_program Ogre/Compositor/StdQuad_vp unified
68{
69        delegate Ogre/Compositor/StdQuad_GLSL_vp
70        delegate Ogre/Compositor/StdQuad_Cg_vp
71}
Note: See TracBrowser for help on using the repository browser.