egl_helpers: request at least 8 alpha bits if necessary

Previously on wayland, it would result in an egl config with only 2 alpha
bits, which technically matches what was requested, but is not very useful.
Fixes #9862
This commit is contained in:
Olivier Perret 2022-04-02 12:21:45 +02:00 committed by Dudemanguy
parent 4930667784
commit 86dfdf083b
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ static bool create_context(struct ra_ctx *ctx, EGLDisplay display,
EGL_RED_SIZE, 8,
EGL_GREEN_SIZE, 8,
EGL_BLUE_SIZE, 8,
EGL_ALPHA_SIZE, ctx->opts.want_alpha ? 1 : 0,
EGL_ALPHA_SIZE, ctx->opts.want_alpha ? 8 : 0,
EGL_RENDERABLE_TYPE, rend,
EGL_NONE
};