mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
GPU: Handle invalid floating point uniform writes
This commit is contained in:
parent
6a424a7a66
commit
70f733ffb8
1 changed files with 4 additions and 2 deletions
|
@ -256,8 +256,10 @@ class PICAShader {
|
|||
|
||||
void uploadFloatUniform(u32 word) {
|
||||
floatUniformBuffer[floatUniformWordCount++] = word;
|
||||
if (floatUniformIndex >= 96) {
|
||||
Helpers::panic("[PICA] Tried to write float uniform %d", floatUniformIndex);
|
||||
// Check if the program tries to upload to a non-existent uniform, and empty the queue without writing in that case
|
||||
if (floatUniformIndex >= 96) [[unlikely]] {
|
||||
floatUniformWordCount = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
if ((f32UniformTransfer && floatUniformWordCount >= 4) || (!f32UniformTransfer && floatUniformWordCount >= 3)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue