summaryrefslogtreecommitdiff
path: root/report-fossil.py
diff options
context:
space:
mode:
authorKonstantin Seurer <konstantin.seurer@gmail.com>2023-06-17 12:57:50 +0200
committerSamuel Pitoiset <samuel.pitoiset@gmail.com>2023-06-19 15:51:50 +0000
commitb494a43b0092a5bb9e9abc5d02f925e9ec9de983 (patch)
treedd3089fb392de5782318bad47ef0b06689a4c699 /report-fossil.py
parent6bfce461647c141392ec1c293561a2c3ef678886 (diff)
report-fossil: Use common stage names for RADV
Aligns RADV stage names to the common ones, including combined stages. Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Diffstat (limited to 'report-fossil.py')
-rwxr-xr-xreport-fossil.py14
1 files changed, 4 insertions, 10 deletions
diff --git a/report-fossil.py b/report-fossil.py
index 8144468..8d8a186 100755
--- a/report-fossil.py
+++ b/report-fossil.py
@@ -161,16 +161,10 @@ executables = {
'kernel': 'ks',
# RADV executable names
- 'Vertex Shader' : 'vs',
- 'Vertex + Tessellation Control Shaders' : 'vs_tcs',
- 'Tessellation Control Shader' : 'tcs',
- 'Tessellation Evaluation Shader' : 'tes',
- 'Tessellation Evaluation + Geometry Shaders' : 'tes_gs',
- 'Vertex + Geometry Shader' : 'vs_gs',
- 'Geometry Shader' : 'gs',
- 'Fragment Shader' : 'fs',
- 'Compute Shader' : 'cs',
- 'GS Copy Shader' : 'gs_copy',
+ 'vertex + tessellation control' : 'vs_tcs',
+ 'tessellation evaluation + geometry' : 'tes_gs',
+ 'vertex + geometry' : 'vs_gs',
+ 'geometry copy' : 'gs_copy',
# Turnip executable names
'VS': 'vs',