gles2: Honor alpha in fragment_src_external

By using the same vertex shader and adding alpha to the fragment shader
for external textures we can:

  - use alpha blending
  - have wlr_gles2_render_texture_with_matrix work with
    the GL_TEXTURE_EXTERNAL_OES. So far this failed
    since we passed in alpha which was unknown by fragment_src_external
This commit is contained in:
Guido Günther 2018-03-19 15:45:34 +01:00
parent 13e4ba4867
commit 2d01663b25
2 changed files with 3 additions and 2 deletions

View file

@ -90,7 +90,7 @@ static void init_default_shaders() {
goto error;
}
if (glEGLImageTargetTexture2DOES) {
if (!compile_program(quad_vertex_src, fragment_src_external,
if (!compile_program(vertex_src, fragment_src_external,
&shaders.external)) {
goto error;
}