From 25f14294a84df1a2a840a92fd89ff4e1fd72f01e Mon Sep 17 00:00:00 2001 From: vaxerski Date: Mon, 17 Apr 2023 15:36:47 +0100 Subject: [PATCH] formats: fix endian ifdef --- src/protocols/ToplevelExportWlrFuncs.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocols/ToplevelExportWlrFuncs.hpp b/src/protocols/ToplevelExportWlrFuncs.hpp index 97bf96f8..c7f53341 100644 --- a/src/protocols/ToplevelExportWlrFuncs.hpp +++ b/src/protocols/ToplevelExportWlrFuncs.hpp @@ -226,7 +226,7 @@ static const struct wlr_gles2_pixel_format formats[] = { .gl_type = GL_UNSIGNED_BYTE, .has_alpha = false, }, -#if WLR_LITTLE_ENDIAN +#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ { .drm_format = DRM_FORMAT_RGBX4444, .gl_format = GL_RGBA,