From: Dave Airlie Date: Wed, 18 Jan 2017 03:50:16 +0000 (+1000) Subject: radv: add small helper to denote when a geom shader is in the pipeline. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f26fa879b74d293b35bc22379f2dc7b674c56829;p=mesa.git radv: add small helper to denote when a geom shader is in the pipeline. Review-by: Bas Nieuwenhuizen Signed-off-by: Dave Airlie --- 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;