mirror of
https://git.h3cjp.net/H3cJP/citra.git
synced 2024-11-21 17:33:05 +00:00
renderer_vulkan: Use proper image view on LCD fills (#91)
This commit is contained in:
parent
a8e601ae7d
commit
b5126f979c
|
@ -105,6 +105,7 @@ void RendererVulkan::PrepareRendertarget() {
|
||||||
|
|
||||||
const auto color_fill = fb_id == 0 ? regs_lcd.color_fill_top : regs_lcd.color_fill_bottom;
|
const auto color_fill = fb_id == 0 ? regs_lcd.color_fill_top : regs_lcd.color_fill_bottom;
|
||||||
if (color_fill.is_enabled) {
|
if (color_fill.is_enabled) {
|
||||||
|
screen_infos[i].image_view = texture.image_view;
|
||||||
FillScreen(color_fill.AsVector(), texture);
|
FillScreen(color_fill.AsVector(), texture);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue