Add tests for GL_NV_shader_noperspective_interpolation

This commit is contained in:
Ben Clayton
2018-03-16 13:15:48 +00:00
parent 017a567be1
commit f648083365
4 changed files with 78 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
#version 300 es
precision mediump float;
noperspective in vec4 bad; // ERROR
#extension GL_NV_shader_noperspective_interpolation : enable
noperspective in vec4 color;
out vec4 fragColor;
void main() {
fragColor = color;
}