mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-05 05:35:07 +01:00
Treat vertex buffers with base addr 0 as disabled
This commit is contained in:
parent
e71ca05f19
commit
abfa5929f1
@ -32,7 +32,7 @@ namespace skyline::gpu::interconnect::maxwell3d {
|
||||
void VertexBufferState::Flush(InterconnectContext &ctx, StateUpdateBuilder &builder) {
|
||||
size_t size{engine->vertexStreamLimit - engine->vertexStream.location + 1};
|
||||
|
||||
if (engine->vertexStream.format.enable && size) {
|
||||
if (engine->vertexStream.format.enable && engine->vertexStream.location != 0) {
|
||||
view.Update(ctx, engine->vertexStream.location, size);
|
||||
ctx.executor.AttachBuffer(*view);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user