mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-28 13:40:41 +00:00
10 lines
134 B
GLSL
10 lines
134 B
GLSL
|
#version 450
|
||
|
|
||
|
#extension GL_KHX_device_group : enable
|
||
|
|
||
|
out vec4 color;
|
||
|
|
||
|
void main() {
|
||
|
color = vec4(gl_DeviceIndexKHR, 0, 0, 0);
|
||
|
}
|