Rename KHX to EXT to match the released specs
GL_KHX_multiview and GL_KHX_device_group don't exist, they were released as GL_EXT_multiview and GL_EXT_device_group.
This commit is contained in:
parent
c18cae2145
commit
efc972799d
7 changed files with 26 additions and 26 deletions
|
|
@ -1,9 +1,9 @@
|
|||
#version 450
|
||||
|
||||
#extension GL_KHX_multiview : enable
|
||||
#extension GL_EXT_multiview : enable
|
||||
|
||||
out vec4 color;
|
||||
|
||||
void main() {
|
||||
color = vec4(gl_ViewIndexKHR, 0, 0, 0);
|
||||
color = vec4(gl_ViewIndex, 0, 0, 0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue