generated from sigonasr2/JavaProjectTemplate
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.
17 lines
431 B
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;
|
|
}
|
|
|