kopia lustrzana https://github.com/jameshball/osci-render
10 wiersze
150 B
Plaintext
10 wiersze
150 B
Plaintext
|
|
std::string simpleVertexShader = R"(
|
||
|
|
|
||
|
|
attribute vec2 vertexPosition;
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
gl_Position = vec4(vertexPosition, 0.0, 1.0);
|
||
|
|
}
|
||
|
|
|
||
|
|
)";
|