From 183ed86aa6f4cb09345543e398e7153305465077 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Sat, 14 Nov 2020 16:03:04 -0700 Subject: [PATCH] nv2a: Fix color swizzle for SZ_G8B8 and SZ_R8B8 --- hw/xbox/nv2a/pgraph.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/xbox/nv2a/pgraph.c b/hw/xbox/nv2a/pgraph.c index 134169706d..ba9578d01d 100644 --- a/hw/xbox/nv2a/pgraph.c +++ b/hw/xbox/nv2a/pgraph.c @@ -247,10 +247,10 @@ static const ColorFormatInfo kelvin_color_format_map[66] = { {2, false, GL_RGB8_SNORM, GL_RGB, GL_BYTE}, /* FIXME: This might be signed */ [NV097_SET_TEXTURE_FORMAT_COLOR_SZ_G8B8] = {2, false, GL_RG8_SNORM, GL_RG, GL_BYTE, /* FIXME: This might be signed */ - {GL_ZERO, GL_RED, GL_GREEN, GL_ONE}}, + {GL_ONE, GL_GREEN, GL_RED, GL_ONE}}, [NV097_SET_TEXTURE_FORMAT_COLOR_SZ_R8B8] = {2, false, GL_RG8_SNORM, GL_RG, GL_BYTE, /* FIXME: This might be signed */ - {GL_RED, GL_ZERO, GL_GREEN, GL_ONE}}, + {GL_GREEN, GL_ONE, GL_RED, GL_ONE}}, /* TODO: format conversion */