[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: #151
Co-authored-by: Maufeat <sahyno1996@gmail.com>
Co-committed-by: Maufeat <sahyno1996@gmail.com>
This commit is contained in:
Maufeat 2025-07-31 16:47:21 +02:00 committed by crueter
parent 3f12ae1e6e
commit bd2061f44b
Signed by: crueter
GPG key ID: 425ACD2D4830EBC6

View file

@ -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));