[Mesa-dev] [PATCH 3/4] radv: add radv_dump_pipeline_state() helper

Samuel Pitoiset samuel.pitoiset at gmail.com
Thu May 24 11:09:13 UTC 2018


Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
---
 src/amd/vulkan/radv_debug.c | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/src/amd/vulkan/radv_debug.c b/src/amd/vulkan/radv_debug.c
index 5cdbf5bea9a..c84e3be25bb 100644
--- a/src/amd/vulkan/radv_debug.c
+++ b/src/amd/vulkan/radv_debug.c
@@ -525,6 +525,15 @@ radv_dump_shaders(struct radv_pipeline *pipeline,
 	}
 }
 
+static void
+radv_dump_pipeline_state(struct radv_pipeline *pipeline,
+			 VkShaderStageFlagBits active_stages, FILE *f)
+{
+	radv_dump_shaders(pipeline, active_stages, f);
+	radv_dump_annotated_shaders(pipeline, active_stages, f);
+	radv_dump_descriptors(pipeline, f);
+}
+
 static void
 radv_dump_graphics_state(struct radv_pipeline *graphics_pipeline,
 			 struct radv_pipeline *compute_pipeline, FILE *f)
@@ -536,9 +545,7 @@ radv_dump_graphics_state(struct radv_pipeline *graphics_pipeline,
 
 	active_stages = graphics_pipeline->active_stages;
 
-	radv_dump_shaders(graphics_pipeline, active_stages, f);
-	radv_dump_annotated_shaders(graphics_pipeline, active_stages, f);
-	radv_dump_descriptors(graphics_pipeline, f);
+	radv_dump_pipeline_state(graphics_pipeline, active_stages, f);
 }
 
 static void
@@ -549,9 +556,7 @@ radv_dump_compute_state(struct radv_pipeline *compute_pipeline, FILE *f)
 	if (!compute_pipeline)
 		return;
 
-	radv_dump_shaders(compute_pipeline, active_stages, f);
-	radv_dump_annotated_shaders(compute_pipeline, active_stages, f);
-	radv_dump_descriptors(compute_pipeline, f);
+	radv_dump_pipeline_state(compute_pipeline, active_stages, f);
 }
 
 static struct radv_pipeline *
-- 
2.17.0



More information about the mesa-dev mailing list