From 021fe791e1dc0d6fc8720208b9fcd59e94e9aa5a Mon Sep 17 00:00:00 2001 From: James Ross-Gowan Date: Sun, 19 Nov 2017 21:17:31 +1100 Subject: vo_gpu: d3d11: mark the bgra8 format as unordered Whoops. I was confused by the double-negative here. --- video/out/d3d11/ra_d3d11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/out/d3d11/ra_d3d11.c b/video/out/d3d11/ra_d3d11.c index eaa04ba8e0..30cd75d199 100644 --- a/video/out/d3d11/ra_d3d11.c +++ b/video/out/d3d11/ra_d3d11.c @@ -179,7 +179,7 @@ static struct d3d_fmt formats[] = { { "rgba32f", 4, 16, {32, 32, 32, 32}, DXFMT(R32G32B32A32, FLOAT) }, { "rgb10_a2", 4, 4, {10, 10, 10, 2}, DXFMT(R10G10B10A2, UNORM) }, - { "bgra8", 4, 4, { 8, 8, 8, 8}, DXFMT(B8G8R8A8, UNORM), .unordered = false }, + { "bgra8", 4, 4, { 8, 8, 8, 8}, DXFMT(B8G8R8A8, UNORM), .unordered = true }, }; static bool dll_version_equal(struct dll_version a, struct dll_version b) -- cgit v1.2.3