Fix external shader

This commit is contained in:
nyorain 2017-08-12 14:48:24 +02:00
parent 2d6d2bcef9
commit f066ff6d02
1 changed files with 2 additions and 2 deletions

View File

@ -94,9 +94,9 @@ const GLchar fragment_src_rgbx[] =
const GLchar fragment_src_external[] =
"#extension GL_OES_EGL_image_external : require\n"
"precision mediump float;"
"varying vec2 v_texcoord;"
"uniform samplerExternalOES texture0;"
"varying vec2 v_uv;"
"void main() {"
" vec4 col = texture2D(texture0, v_uv);"
" vec4 col = texture2D(texture0, v_texcoord);"
" gl_FragColor = vec4(col.rgb, col.a);"
"}";