diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-07 08:01:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-07 08:01:32 -0400 |
commit | ab063c3936ff8dd0ee34388cbd260dccc59661df (patch) | |
tree | d7ad82aa3e5b3dbdfa494a7b7751b4dbd7c7ad9c /backend/egl.c | |
parent | f95c02eebe54785a4f64332f7e574dddff7e3669 (diff) | |
parent | d09ca20a4dccd7696423fc9f17acc88b7b3a7986 (diff) |
Merge pull request #44 from ascent12/drm
DRM plane support, refactoring, and other changes
Diffstat (limited to 'backend/egl.c')
-rw-r--r-- | backend/egl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/egl.c b/backend/egl.c index 8bb05f6f..2ac1e77c 100644 --- a/backend/egl.c +++ b/backend/egl.c @@ -99,7 +99,7 @@ static bool egl_get_config(EGLDisplay disp, EGLConfig *out, EGLenum platform) { continue; } - if (gbm_format == GBM_FORMAT_XRGB8888) { + if (gbm_format == GBM_FORMAT_ARGB8888) { *out = configs[i]; return true; } |