diff options
author | Samuel Pitoiset <[email protected]> | 2018-05-11 16:36:52 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-05-14 12:38:01 +0200 |
commit | ece398277cf1de5ac4debfd9855909fd1bafb239 (patch) | |
tree | 8e45b9cc04154e001e2371b67238ed441db1dcd3 /src/amd/vulkan | |
parent | 8ade3e46845ed51b17bc0ff129f3e1eeea589a36 (diff) |
radv: remove useless check in radv_create_shaders()
radv_can_dump_shader() already handles if module is NULL.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/amd/vulkan')
-rw-r--r-- | src/amd/vulkan/radv_pipeline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index e6ac0721dce..3d242e05bfd 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -1984,7 +1984,7 @@ void radv_create_shaders(struct radv_pipeline *pipeline, radv_link_shaders(pipeline, nir); for (int i = 0; i < MESA_SHADER_STAGES; ++i) { - if (modules[i] && radv_can_dump_shader(device, modules[i], false)) + if (radv_can_dump_shader(device, modules[i], false)) nir_print_shader(nir[i], stderr); } |