This commit is contained in:
Kovid Goyal 2017-10-12 12:58:38 +05:30
parent 76a591e7d1
commit 30baf81858
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -6,5 +6,5 @@ in vec2 texcoord;
out vec4 color; out vec4 color;
void main() { void main() {
color = texture2D(image, texcoord); color = texture(image, texcoord);
} }