osci-render/Source/visualiser/SimpleVertexShader.glsl

10 wiersze
150 B
GLSL

std::string simpleVertexShader = R"(
attribute vec2 vertexPosition;
void main() {
gl_Position = vec4(vertexPosition, 0.0, 1.0);
}
)";