8 lines
142 B
GLSL
8 lines
142 B
GLSL
#version 430 core
|
|
layout (location = 0) in vec4 params;
|
|
layout (location = 1) in vec2 texCoor;
|
|
void main()
|
|
{
|
|
gl_Position = vec4(0,0,0,0);
|
|
}
|