11 lines
232 B
GLSL
Executable file
11 lines
232 B
GLSL
Executable file
attribute vec4 position;
|
|
attribute vec2 tex_coord0;
|
|
|
|
varying lowp vec2 texCoordVarying;
|
|
varying highp vec4 positionVarying;
|
|
|
|
void main( void ) {
|
|
texCoordVarying = tex_coord0;
|
|
gl_Position = position;
|
|
positionVarying = position;
|
|
}
|