mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 09:00:10 +01:00
11 lines
186 B
GLSL
11 lines
186 B
GLSL
uniform int KernelSizeInt;
|
|
|
|
void main() {
|
|
int i;
|
|
vec4 sum = vec4(0.0);
|
|
for (i = 0; i < KernelSizeInt; ++i) {
|
|
sum.g += 0.25;
|
|
}
|
|
sum.a = 1.0;
|
|
gl_FragColor = sum;
|
|
}
|