Skip to content

Commit

Permalink
fix test. Now the default is false for instancing
Browse files Browse the repository at this point in the history
  • Loading branch information
saintentropy committed Apr 12, 2024
1 parent 656fc9c commit 634237e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/VisualizationTests/HelixWatch3DViewModelTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1251,7 +1251,10 @@ public void AggregateRenderPackagesDoesntMutateRenderPackage()

output.RenderPackagesUpdated += TestRenderPackageUpdate;

output.RequestVisualUpdateAsync(ViewModel.Model.Scheduler, ViewModel.Model.EngineController, new HelixRenderPackageFactory(), true);
var factory = new HelixRenderPackageFactory();
factory.TessellationParameters.UseRenderInstancing = true;

output.RequestVisualUpdateAsync(ViewModel.Model.Scheduler, ViewModel.Model.EngineController, factory, true);
}

private void TestRenderPackageUpdate(NodeModel nodeModel, RenderPackageCache renderPackages) {
Expand Down

0 comments on commit 634237e

Please sign in to comment.