mirror of
https://github.com/bevyengine/bevy
synced 2025-01-25 19:35:19 +00:00
9 lines
131 B
GLSL
9 lines
131 B
GLSL
#version 450
|
|
|
|
#extension GL_EXT_device_group : enable
|
|
|
|
out vec4 color;
|
|
|
|
void main() {
|
|
color = vec4(gl_DeviceIndex, 0, 0, 0);
|
|
}
|