vo_gpu: d3d11: mark the bgra8 format as unordered

Whoops. I was confused by the double-negative here.
This commit is contained in:
James Ross-Gowan 2017-11-19 21:17:31 +11:00
parent 0bdbe2bc53
commit 021fe791e1
1 changed files with 1 additions and 1 deletions

View File

@ -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)