summaryrefslogtreecommitdiffstats
path: root/src/demos/cg/runtime_ogl/cgGL_vertex_example.cg
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2009-06-15 23:12:27 +0000
committerKenneth Russel <[email protected]>2009-06-15 23:12:27 +0000
commit41cd6c47b23975098cd155517790e018670785e7 (patch)
tree247333528ad674d427ba96b1e05810f7961d609e /src/demos/cg/runtime_ogl/cgGL_vertex_example.cg
parent935d2596c13371bb745d921dbcb9f05b0c11a010 (diff)
Copied JOGL_2_SANDBOX r350 on to trunk; JOGL_2_SANDBOX branch is now closed
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@352 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/cg/runtime_ogl/cgGL_vertex_example.cg')
-rw-r--r--src/demos/cg/runtime_ogl/cgGL_vertex_example.cg29
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
+