mirror of
https://github.com/PabloMK7/citra
synced 2024-11-15 05:08:23 +00:00
renderer_vulkan: Use proper image view on LCD fills (#91)
This commit is contained in:
parent
a8e601ae7d
commit
b5126f979c
1 changed files with 1 additions and 0 deletions
|
@ -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