softgpu: Remove unnecessary state param.

Oops, meant to remove this when refactoring imm prims.
This commit is contained in:
Unknown W. Brackets 2022-09-22 18:18:49 -07:00
parent c02ce03267
commit 84a3f6de71
3 changed files with 3 additions and 3 deletions

View file

@ -530,7 +530,7 @@ void TransformUnit::SubmitPrimitive(const void* vertices, const void* indices, G
// TODO: Do this in two passes - first process the vertices (before indexing/stripping),
// then resolve the indices. This lets us avoid transforming shared vertices twice.
binner_->UpdateState(vreader.isThrough());
binner_->UpdateState();
hasDraws_ = true;
static TransformState transformState;