mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-23 07:14:01 +00:00
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() {}
|