mirror of
https://github.com/bevyengine/bevy
synced 2025-01-26 03:45:16 +00:00
8 lines
114 B
GLSL
8 lines
114 B
GLSL
#version 450
|
|
|
|
layout(constant_id = 11) const int a = 8;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(1.0) / a;
|
|
}
|