mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
559a5f1d82
This bug got introduced as part of EXT_mesh_shader changes 228c672
Also updated barycentric test cases to add coverage for multiple pervertexEXT array inputs
22 lines
609 B
GLSL
22 lines
609 B
GLSL
#version 320 es
|
|
#extension GL_NV_fragment_shader_barycentric : require
|
|
|
|
precision highp float;
|
|
|
|
layout(location = 0) pervertexNV in float vertexIDs[3];
|
|
layout(location = 1) pervertexNV in float vertexIDs2[3];
|
|
|
|
|
|
layout(location = 1) out float value;
|
|
|
|
void main () {
|
|
value = (gl_BaryCoordNoPerspNV.x * vertexIDs[0] +
|
|
gl_BaryCoordNoPerspNV.y * vertexIDs[1] +
|
|
gl_BaryCoordNoPerspNV.z * vertexIDs[2]);
|
|
|
|
value += (gl_BaryCoordNoPerspNV.x * vertexIDs2[0] +
|
|
gl_BaryCoordNoPerspNV.y * vertexIDs2[1] +
|
|
gl_BaryCoordNoPerspNV.z * vertexIDs2[2]);
|
|
|
|
}
|