mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-12-04 20:53:57 +00:00
a8a316da15
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.
13 lines
148 B
GLSL
13 lines
148 B
GLSL
// AUTHOR: jakobhellermann
|
|
// ISSUE: #931
|
|
// FIX: #933
|
|
#version 450
|
|
|
|
const int constant = 10;
|
|
|
|
float function() {
|
|
return 0.0;
|
|
}
|
|
|
|
void main() {}
|