diff --git a/src/modules/graphics/vulkan/Graphics.cpp b/src/modules/graphics/vulkan/Graphics.cpp index d5694cf1a..ea8d23c88 100644 --- a/src/modules/graphics/vulkan/Graphics.cpp +++ b/src/modules/graphics/vulkan/Graphics.cpp @@ -1011,10 +1011,8 @@ void Graphics::setScissor() scissor.extent = swapChainExtent; else { - double dpiScale = getCurrentDPIScale(); - - scissor.extent.width = static_cast(renderPassState.width) * dpiScale; - scissor.extent.height = static_cast(renderPassState.height) * dpiScale; + scissor.extent.width = renderPassState.width; + scissor.extent.height = renderPassState.height; } vkCmdSetScissor(commandBuffers.at(currentFrame), 0, 1, &scissor);