bgfx/3rdparty/glslang/Test/spv.deviceGroup.frag
Branimir Karadžić ed4c70631b Updated glslang.
2017-03-03 20:12:06 -08:00

10 lines
131 B
GLSL

#version 450
#extension GL_EXT_device_group : enable
out vec4 color;
void main() {
color = vec4(gl_DeviceIndex, 0, 0, 0);
}