diff options
Diffstat (limited to 'src/demos/cg/runtime_ogl/cgGL_vertex_example.cg')
-rw-r--r-- | src/demos/cg/runtime_ogl/cgGL_vertex_example.cg | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/demos/cg/runtime_ogl/cgGL_vertex_example.cg b/src/demos/cg/runtime_ogl/cgGL_vertex_example.cg new file mode 100644 index 0000000..dae355e --- /dev/null +++ b/src/demos/cg/runtime_ogl/cgGL_vertex_example.cg @@ -0,0 +1,29 @@ + +struct appdata +{ + float4 position : POSITION; + float3 normal : NORMAL; + float3 color : DIFFUSE; + float3 TestColor : SPECULAR; +}; + +struct vfconn +{ + float4 HPOS : POSITION; + float4 COL0 : COLOR0; +}; + +vfconn main(appdata IN, + uniform float4 Kd, + uniform float4x4 ModelViewProj) +{ + vfconn OUT; + + OUT.HPOS = mul(ModelViewProj, IN.position); + + OUT.COL0.xyz = Kd.xyz * IN.TestColor.xyz; + OUT.COL0.w = 1.0; + + return OUT; +} // main + |