From f26fa879b74d293b35bc22379f2dc7b674c56829 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Wed, 18 Jan 2017 13:50:16 +1000 Subject: [PATCH] radv: add small helper to denote when a geom shader is in the pipeline. Review-by: Bas Nieuwenhuizen Signed-off-by: Dave Airlie --- src/amd/vulkan/radv_private.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index fac5b97153d..68c161e0d85 100644 --- a/src/amd/vulkan/radv_private.h +++ b/src/amd/vulkan/radv_private.h @@ -941,6 +941,11 @@ struct radv_pipeline { unsigned scratch_bytes_per_wave; }; +static inline bool radv_pipeline_has_gs(struct radv_pipeline *pipeline) +{ + return pipeline->shaders[MESA_SHADER_GEOMETRY] ? true : false; +} + struct radv_graphics_pipeline_create_info { bool use_rectlist; bool db_depth_clear;