mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
glshaderstrings: fixup the external-oes fragment shader
The wrong sampler type was used s/sampler2DExternalOES/samplerExternalOES/
This commit is contained in:
parent
87137e3353
commit
21bd8ee536
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ const gchar *gst_gl_shader_string_fragment_external_oes_default =
|
|||
"precision mediump float;\n"
|
||||
"#endif\n"
|
||||
"varying vec2 v_texcoord;\n"
|
||||
"uniform sampler2DExternalOES tex;\n"
|
||||
"uniform samplerExternalOES tex;\n"
|
||||
"void main()\n"
|
||||
"{\n"
|
||||
" gl_FragColor = texture2D(tex, v_texcoord);\n"
|
||||
|
|
Loading…
Reference in a new issue