Mark vertex buffers as dirty on limit changes

This commit is contained in:
Billy Laws 2022-12-03 21:59:28 +00:00
parent df19810c6c
commit 7c802aea46
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
namespace skyline::gpu::interconnect::maxwell3d {
/* Vertex Buffer */
void VertexBufferState::EngineRegisters::DirtyBind(DirtyManager &manager, dirty::Handle handle) const {
manager.Bind(handle, vertexStream.format, vertexStream.location);
manager.Bind(handle, vertexStream.format, vertexStream.location, vertexStreamLimit);
}
VertexBufferState::VertexBufferState(dirty::Handle dirtyHandle, DirtyManager &manager, const EngineRegisters &engine, u32 index) : engine{manager, dirtyHandle, engine}, index{index} {}