diff options
author | Sven Gothel <[email protected]> | 2011-09-30 15:02:48 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-09-30 15:02:48 +0200 |
commit | dc0cf65dd75079d8f57eb2431c0fe1235fff27ad (patch) | |
tree | e5d576c54c2d6ffdeb31a4dccfde044281bd8954 /src/jogl/classes/jogamp/graph/curve/opengl/shader/attributes.glsl | |
parent | cdc99f97fde9211b7f73d8592d3d64c6ec78898a (diff) |
Graph GLSL: Use global precicision settings enhancing readability
Diffstat (limited to 'src/jogl/classes/jogamp/graph/curve/opengl/shader/attributes.glsl')
-rw-r--r-- | src/jogl/classes/jogamp/graph/curve/opengl/shader/attributes.glsl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/jogl/classes/jogamp/graph/curve/opengl/shader/attributes.glsl b/src/jogl/classes/jogamp/graph/curve/opengl/shader/attributes.glsl index 8240fc661..c8c076ba1 100644 --- a/src/jogl/classes/jogamp/graph/curve/opengl/shader/attributes.glsl +++ b/src/jogl/classes/jogamp/graph/curve/opengl/shader/attributes.glsl @@ -4,10 +4,10 @@ #include precision.glsl -// attribute GRAPHP vec3 gca_Vertices; -attribute GRAPHP vec4 gca_Vertices; -attribute GRAPHP vec2 gca_TexCoords; -//attribute GRAPHP vec4 gca_Colors; -//attribute GRAPHP vec3 gca_Normals; +// attribute vec3 gca_Vertices; +attribute vec4 gca_Vertices; +attribute vec2 gca_TexCoords; +//attribute vec4 gca_Colors; +//attribute vec3 gca_Normals; #endif // attributes_glsl |