GPU/HW: Move drawing offset to CPU-side

Saves updating the uniform buffer.
This commit is contained in:
Connor McLaughlin
2020-03-24 00:20:15 +10:00
parent 40481305c4
commit e2e2b573c0
7 changed files with 20 additions and 41 deletions

View File

@ -195,7 +195,6 @@ bool GPU::HandleSetDrawingOffsetCommand(const u32*& command_ptr, u32 command_siz
m_drawing_offset.x = x;
m_drawing_offset.y = y;
m_drawing_offset_changed = true;
}
EndCommand();