mirror of
https://github.com/RPCS3/glslang.git
synced 2025-02-13 06:41:20 +00:00
![John Kessenich](/assets/img/avatar_default.png)
Also made all tests in testlist include linker tests. git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@24156 e7fa87d3-cd2b-0410-9028-fcbf551c1848
26 lines
413 B
GLSL
26 lines
413 B
GLSL
#version 330 compatibility
|
|
|
|
in vec4 inVar;
|
|
out vec4 outVar;
|
|
|
|
varying vec4 varyingVar;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = varyingVar; // link ERROR: user output was used
|
|
gl_FragData[1] = inVar; // link ERROR: user output was used
|
|
int buffer = 4;
|
|
}
|
|
|
|
#extension GL_ARB_separate_shader_objects : enable
|
|
|
|
in gl_PerFragment {
|
|
vec4 gl_Color;
|
|
};
|
|
|
|
void foo()
|
|
{
|
|
vec4 c = gl_Color;
|
|
outVar = inVar;
|
|
}
|