From 8570de72f513a3e20016c75b8647704c2f14b011 Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Tue, 20 Oct 2020 11:45:13 +0100 Subject: [PATCH] amd/common: add PIPE_FORMAT_R64_{UINT,SINT} to GFX10 format table Signed-off-by: Rhys Perry Reviewed-by: Samuel Pitoiset Part-of: --- src/amd/common/gfx10_format_table.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/amd/common/gfx10_format_table.py b/src/amd/common/gfx10_format_table.py index a81e960..f24b0e3 100644 --- a/src/amd/common/gfx10_format_table.py +++ b/src/amd/common/gfx10_format_table.py @@ -96,6 +96,9 @@ HARDCODED = { 'PIPE_FORMAT_BPTC_RGBA_UNORM': hardcoded_format('BC7_UNORM'), 'PIPE_FORMAT_BPTC_SRGBA': hardcoded_format('BC7_SRGB'), + + 'PIPE_FORMAT_R64_UINT': hardcoded_format('32_32_UINT'), + 'PIPE_FORMAT_R64_SINT': hardcoded_format('32_32_SINT'), } -- 2.7.4