You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
183 B
13 lines
183 B
7 months ago
|
#version 330 compatibility
|
||
|
|
||
|
in vec4 inVar;
|
||
|
out vec4 outVar;
|
||
|
|
||
|
varying vec4 varyingVar;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = varyingVar;
|
||
|
gl_FragData[1] = inVar * gl_ModelViewMatrix;
|
||
|
}
|