mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 10:30:00 +00:00
vk_rasterizer: Minor style change
This commit is contained in:
parent
c9238555f7
commit
526e47f148
1 changed files with 2 additions and 2 deletions
|
@ -604,8 +604,8 @@ void RasterizerVulkan::UpdateViewportsState(Tegra::Engines::Maxwell3D::Regs& reg
|
||||||
if (!state_tracker.TouchViewports()) {
|
if (!state_tracker.TouchViewports()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const float scale =
|
const bool is_rescaling{texture_cache.IsRescaling()};
|
||||||
texture_cache.IsRescaling() ? Settings::values.resolution_info.up_factor : 1.0f;
|
const float scale = is_rescaling ? Settings::values.resolution_info.up_factor : 1.0f;
|
||||||
const std::array viewports{
|
const std::array viewports{
|
||||||
GetViewportState(device, regs, 0, scale), GetViewportState(device, regs, 1, scale),
|
GetViewportState(device, regs, 0, scale), GetViewportState(device, regs, 1, scale),
|
||||||
GetViewportState(device, regs, 2, scale), GetViewportState(device, regs, 3, scale),
|
GetViewportState(device, regs, 2, scale), GetViewportState(device, regs, 3, scale),
|
||||||
|
|
Loading…
Reference in a new issue