Skip to content

Commit

Permalink
Merge branch 'shadps4-emu:main' into PRTBB
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolix29 authored Feb 2, 2025
2 parents 36ff841 + 1d8c607 commit 414f34e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/video_core/renderer_vulkan/vk_rasterizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,8 @@ void Rasterizer::UpdateViewportScissorState(const GraphicsPipeline& pipeline) {
const float reduce_z =
regs.clipper_control.clip_space == AmdGpu::Liverpool::ClipSpace::MinusWToW ? 1.0f : 0.0f;

if (regs.polygon_control.enable_window_offset) {
if (regs.polygon_control.enable_window_offset &&
(regs.window_offset.window_x_offset != 0 || regs.window_offset.window_y_offset != 0)) {
LOG_ERROR(Render_Vulkan,
"PA_SU_SC_MODE_CNTL.VTX_WINDOW_OFFSET_ENABLE support is not yet implemented.");
}
Expand Down

0 comments on commit 414f34e

Please sign in to comment.