wgpu/tests/in/glsl/931-constant-emitting.vert
João Capucho a8a316da15 [glsl-in] API revamp
The new api allows for reuse while keeping some allocations and to
please the borrow checker in future work, it also splits the parser into
logical modules to make it easier to work on.
2021-08-09 10:51:15 -04:00

13 lines
148 B
GLSL

// AUTHOR: jakobhellermann
// ISSUE: #931
// FIX: #933
#version 450
const int constant = 10;
float function() {
return 0.0;
}
void main() {}