[Mesa-dev] [PATCH] r600g: add support for B5G6R5 PBO uploads via texture buffers

Marek Olšák maraeo at gmail.com
Tue Jul 12 09:59:54 UTC 2016


From: Marek Olšák <marek.olsak at amd.com>

untested
---
 src/gallium/drivers/r600/r600_asm.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c
index 2141cf2..1cfb36a 100644
--- a/src/gallium/drivers/r600/r600_asm.c
+++ b/src/gallium/drivers/r600/r600_asm.c
@@ -2343,6 +2343,12 @@ void r600_vertex_data_type(enum pipe_format pformat,
 		return;
 	}
 
+	if (pformat == PIPE_FORMAT_B5G6R5_UNORM) {
+		*format = FMT_5_6_5;
+		*endian = r600_endian_swap(32);
+		return;
+	}
+
 	desc = util_format_description(pformat);
 	if (desc->layout != UTIL_FORMAT_LAYOUT_PLAIN) {
 		goto out_unknown;
-- 
2.7.4



More information about the mesa-dev mailing list