Minor optimizations and fixes

- FIFO: avoid multiline spam
- VK: Fix program setup counter
- FS: Precalculate fragment constants buffer size during analysis step
This commit is contained in:
kd-11 2018-07-22 13:29:54 +03:00 committed by kd-11
parent 9f0fada17a
commit 0267221586
5 changed files with 8 additions and 5 deletions

View file

@ -43,7 +43,7 @@ namespace rsx
{
//Don't throw, gather information and ignore broken/garbage commands
//TODO: Investigate why these commands are executed at all. (Heap corruption? Alignment padding?)
LOG_ERROR(RSX, "Invalid RSX method 0x%x (arg=0x%x)" HERE, _reg << 2, arg);
LOG_ERROR(RSX, "Invalid RSX method 0x%x (arg=0x%x)", _reg << 2, arg);
rsx->invalid_command_interrupt_raised = true;
}