mirror of https://github.com/mosra/magnum.git
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.
15 lines
231 B
15 lines
231 B
|
14 years ago
|
#ifndef NEW_GLSL
|
||
|
|
#define in varying
|
||
|
|
#define fragmentColor gl_FragColor
|
||
|
|
#endif
|
||
|
|
|
||
|
|
in lowp vec3 interpolatedColor;
|
||
|
|
|
||
|
|
#ifdef NEW_GLSL
|
||
|
|
out lowp vec4 fragmentColor;
|
||
|
|
#endif
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
fragmentColor = vec4(interpolatedColor, 1.0);
|
||
|
|
}
|