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>
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 @@
 
     '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'),
 }