diff options
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/radv_private.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index e8f14dcfe02..33f35245792 100644 --- a/src/amd/vulkan/radv_private.h +++ b/src/amd/vulkan/radv_private.h @@ -982,6 +982,11 @@ static inline bool radv_pipeline_has_gs(struct radv_pipeline *pipeline) return pipeline->shaders[MESA_SHADER_GEOMETRY] ? true : false; } +static inline bool radv_pipeline_has_tess(struct radv_pipeline *pipeline) +{ + return pipeline->shaders[MESA_SHADER_TESS_EVAL] ? true : false; +} + struct radv_graphics_pipeline_create_info { bool use_rectlist; bool db_depth_clear; |