mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-20 06:49:19 +02:00
14 lines
169 B
GLSL
14 lines
169 B
GLSL
#version 330
|
|
|
|
in vec3 f_color;
|
|
|
|
#include <common>
|
|
|
|
void main()
|
|
{
|
|
gl_FragData[0] = vec4(f_color, 1.0f);
|
|
#ifdef MOTIONBLUR_ENABLED
|
|
gl_FragData[1] = vec4(0.0f);
|
|
#endif
|
|
}
|