Provides a screen to draw pixels to with a basic rendering update loop and accepts user input
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
PixelEngine/lib/bin/jogamp/graph/curve/opengl/shader/curverenderer01-pass2.vp

17 lines
431 B

//Copyright 2010 JogAmp Community. All rights reserved.
#if __VERSION__ >= 130
#define attribute in
#define varying out
#endif
#include uniforms.glsl
#include attributes.glsl
#include varyings.glsl
void main(void)
{
// gl_Position = gcu_PMVMatrix01[0] * gcu_PMVMatrix01[1] * vec4(gca_FboVertices, 1);
gl_Position = gcu_PMVMatrix01[0] * gcu_PMVMatrix01[1] * gca_FboVertices;
gcv_FboTexCoord = gca_FboTexCoords;
}