summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRhys Perry <pendingchaos02@gmail.com>2020-10-20 11:45:13 +0100
committerMarge Bot <eric+marge@anholt.net>2020-11-09 18:28:59 +0000
commit8570de72f513a3e20016c75b8647704c2f14b011 (patch)
tree63f9ed46d2d441578f59eaa7ac53f927ae92dbbc
parentcff195087f539264ef24b4b459d554401261179f (diff)
amd/common: add PIPE_FORMAT_R64_{UINT,SINT} to GFX10 format table
Signed-off-by: Rhys Perry <pendingchaos02@gmail.com> Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7234>
-rw-r--r--src/amd/common/gfx10_format_table.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/amd/common/gfx10_format_table.py b/src/amd/common/gfx10_format_table.py
index a81e9600141..f24b0e3652a 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'),
}