mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
GPU: Temporarily skip draws if they're too big instead of panicking
This commit is contained in:
parent
2debced399
commit
471bdd6ab9
1 changed files with 4 additions and 1 deletions
|
@ -157,7 +157,10 @@ void GPU::drawArrays() {
|
||||||
// Configures the type of primitive and the number of vertex shader outputs
|
// Configures the type of primitive and the number of vertex shader outputs
|
||||||
const u32 primConfig = regs[PICA::InternalRegs::PrimitiveConfig];
|
const u32 primConfig = regs[PICA::InternalRegs::PrimitiveConfig];
|
||||||
const PICA::PrimType primType = static_cast<PICA::PrimType>(Helpers::getBits<8, 2>(primConfig));
|
const PICA::PrimType primType = static_cast<PICA::PrimType>(Helpers::getBits<8, 2>(primConfig));
|
||||||
if (vertexCount > Renderer::vertexBufferSize) Helpers::panic("[PICA] vertexCount > vertexBufferSize");
|
if (vertexCount > Renderer::vertexBufferSize) [[unlikely]] {
|
||||||
|
Helpers::warn("[PICA] vertexCount > vertexBufferSize");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if ((primType == PICA::PrimType::TriangleList && vertexCount % 3) || (primType == PICA::PrimType::TriangleStrip && vertexCount < 3) ||
|
if ((primType == PICA::PrimType::TriangleList && vertexCount % 3) || (primType == PICA::PrimType::TriangleStrip && vertexCount < 3) ||
|
||||||
(primType == PICA::PrimType::TriangleFan && vertexCount < 3)) {
|
(primType == PICA::PrimType::TriangleFan && vertexCount < 3)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue