Browse Source

[vk] remove config check return (#151)

This is for testing some bugs, the return acually shouldn't happen and misses the rest of ConfigureImpl

Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/151
Co-authored-by: Maufeat <sahyno1996@gmail.com>
Co-committed-by: Maufeat <sahyno1996@gmail.com>
pull/164/head
Maufeat 5 months ago
committed by crueter
parent
commit
bd2061f44b
No known key found for this signature in database GPG Key ID: 425ACD2D4830EBC6
  1. 3
      src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp

3
src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp

@ -401,8 +401,7 @@ bool GraphicsPipeline::ConfigureImpl(bool is_indexed) {
config_stage(3);
}
if constexpr (Spec::enabled_stages[4]) {
if (!config_stage(4))
return false;
config_stage(4);
}
texture_cache.FillGraphicsImageViews<Spec::has_images>(std::span(views.data(), view_index));

Loading…
Cancel
Save