mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
ef8ae2e345
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@20714 e7fa87d3-cd2b-0410-9028-fcbf551c1848
13 lines
183 B
GLSL
13 lines
183 B
GLSL
#version 330 compatibility
|
|
|
|
in vec4 inVar;
|
|
out vec4 outVar;
|
|
|
|
varying vec4 varyingVar;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = varyingVar;
|
|
gl_FragData[1] = inVar * gl_ModelViewMatrix;
|
|
}
|