summaryrefslogtreecommitdiffhomepage
path: root/shaders/gl330/bloom.fs
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/gl330/bloom.fs')
-rw-r--r--shaders/gl330/bloom.fs12
1 files changed, 6 insertions, 6 deletions
diff --git a/shaders/gl330/bloom.fs b/shaders/gl330/bloom.fs
index 2833ce33..34b6295c 100644
--- a/shaders/gl330/bloom.fs
+++ b/shaders/gl330/bloom.fs
@@ -18,23 +18,23 @@ void main()
{
for (int j = -3; j < 3; j++)
{
- sum += texture2D(texture0, fragTexCoord + vec2(j, i)*0.004) * 0.25;
+ sum += texture(texture0, fragTexCoord + vec2(j, i)*0.004) * 0.25;
}
}
- if (texture2D(texture0, fragTexCoord).r < 0.3)
+ if (texture(texture0, fragTexCoord).r < 0.3)
{
- tc = sum*sum*0.012 + texture2D(texture0, fragTexCoord);
+ tc = sum*sum*0.012 + texture(texture0, fragTexCoord);
}
else
{
- if (texture2D(texture0, fragTexCoord).r < 0.5)
+ if (texture(texture0, fragTexCoord).r < 0.5)
{
- tc = sum*sum*0.009 + texture2D(texture0, fragTexCoord);
+ tc = sum*sum*0.009 + texture(texture0, fragTexCoord);
}
else
{
- tc = sum*sum*0.0075 + texture2D(texture0, fragTexCoord);
+ tc = sum*sum*0.0075 + texture(texture0, fragTexCoord);
}
}