mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-24 06:59:45 -05:00
render/gles2: Fixup dropping has_alpha from pixel_format
Fixes: 71fb55f3 ("render/pixel-format: Move has_alpha into it's own array")
This commit is contained in:
parent
71fb55f3bf
commit
60af3b6b78
2 changed files with 2 additions and 4 deletions
|
|
@ -330,7 +330,7 @@ static struct wlr_texture *gles2_texture_from_pixels(
|
|||
return NULL;
|
||||
}
|
||||
texture->target = GL_TEXTURE_2D;
|
||||
texture->has_alpha = drm_fmt->has_alpha;
|
||||
texture->has_alpha = pixel_format_has_alpha(fmt->drm_format);
|
||||
texture->drm_format = fmt->drm_format;
|
||||
|
||||
GLint internal_format = fmt->gl_internalformat;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue