mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
efc972799d
GL_KHX_multiview and GL_KHX_device_group don't exist, they were released as GL_EXT_multiview and GL_EXT_device_group.
10 lines
131 B
GLSL
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);
|
|
}
|