From 85d0b7ad3f4f304dfd02e6c94260a5548ed0c657 Mon Sep 17 00:00:00 2001 From: Martijn Courteaux Date: Fri, 30 Jan 2026 19:58:02 +0100 Subject: [PATCH] Switch to BGRA8 as the default swapchain format. (#3569) --- src/bgfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bgfx.cpp b/src/bgfx.cpp index 0cde31ceb..44e7065d1 100644 --- a/src/bgfx.cpp +++ b/src/bgfx.cpp @@ -3606,7 +3606,7 @@ namespace bgfx } Resolution::Resolution() - : formatColor(TextureFormat::RGBA8) + : formatColor(TextureFormat::BGRA8) , formatDepthStencil(TextureFormat::D24S8) , width(1280) , height(720)