mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
16 lines
356 B
GLSL
16 lines
356 B
GLSL
|
#version 450
|
||
|
#extension GL_NV_fragment_shader_barycentric : require
|
||
|
|
||
|
layout(location = 0) pervertexNV in vertices {
|
||
|
float attrib;
|
||
|
} v[];
|
||
|
|
||
|
layout(location = 1) out float value;
|
||
|
|
||
|
void main () {
|
||
|
value = (gl_BaryCoordNV.x * v[0].attrib +
|
||
|
gl_BaryCoordNV.y * v[1].attrib +
|
||
|
gl_BaryCoordNV.z * v[2].attrib);
|
||
|
|
||
|
}
|