diff options
author | Rhys Perry <[email protected]> | 2019-11-15 12:42:46 +0000 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-01-24 13:35:07 +0000 |
commit | 72e9a2344346f4e2eff240e475463eeb046fe9be (patch) | |
tree | fd83ba9b576838cc4925c615bf5612d97925612d /src/amd/vulkan/radv_pipeline.c | |
parent | f8f7712666b738fc9ebd4a6390563e44db46b68f (diff) |
radv/aco: use ACO for GS copy shaders
Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Daniel Schürmann <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2421>
Diffstat (limited to 'src/amd/vulkan/radv_pipeline.c')
-rw-r--r-- | src/amd/vulkan/radv_pipeline.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index 71ffa1b47ec..62244902a47 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -2881,7 +2881,8 @@ void radv_create_shaders(struct radv_pipeline *pipeline, pipeline->gs_copy_shader = radv_create_gs_copy_shader( device, nir[MESA_SHADER_GEOMETRY], &info, &gs_copy_binary, keep_executable_info, - keys[MESA_SHADER_GEOMETRY].has_multiview_view_index); + keys[MESA_SHADER_GEOMETRY].has_multiview_view_index, + use_aco); } if (!keep_executable_info && pipeline->gs_copy_shader) { |