diff options
Diffstat (limited to 'examples/resources/shaders/glsl330/swirl.fs')
| -rw-r--r-- | examples/resources/shaders/glsl330/swirl.fs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/resources/shaders/glsl330/swirl.fs b/examples/resources/shaders/glsl330/swirl.fs index b1dc82f0..da098754 100644 --- a/examples/resources/shaders/glsl330/swirl.fs +++ b/examples/resources/shaders/glsl330/swirl.fs @@ -40,7 +40,7 @@ void main (void) } tc += center; - vec3 color = texture2D(texture0, tc/texSize).rgb; + vec3 color = texture(texture0, tc/texSize).rgb; finalColor = vec4(color, 1.0);; }
\ No newline at end of file |
