summaryrefslogtreecommitdiffstats
path: root/src/demos/cg/runtime_ogl/cgGL_vertex_example.cg
diff options
context:
space:
mode:
authorKenneth Russel <kbrussel@alum.mit.edu>2003-06-26 14:26:23 +0000
committerKenneth Russel <kbrussel@alum.mit.edu>2003-06-26 14:26:23 +0000
commit557c3213e11691f0b6bf3d0de5ac8d0003ccd385 (patch)
tree8cd163c0a2bdb2df9e8901710751a171ebb50d41 /src/demos/cg/runtime_ogl/cgGL_vertex_example.cg
parent560a89f99aa8514915de874f2e26d15d45644ffc (diff)
Checked in experimental Cg support and a couple of small demos. By
default it is not built and javadoc is not generated for it. The demos are not compiled by the jogl-demos project makefile since there are issues to be thought through with operations like cgCreateProgramFromFile and their interaction with launching over the web via Java Web Start. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@8 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
+