projects
/
platform
/
upstream
/
glslang.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #2976 from jeremy-lunarg/hayes-fix-2975
[platform/upstream/glslang.git]
/
Test
/
330comp.frag
1
#version 330 compatibility
2
3
in vec4 inVar;
4
out vec4 outVar;
5
6
varying vec4 varyingVar;
7
8
void main()
9
{
10
gl_FragColor = varyingVar;
11
gl_FragData[1] = inVar * gl_ModelViewMatrix;
12
}