From c89a633f59d0e393695c10f28c4ba8635eadffba Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 7 Mar 2026 11:42:46 +0000 Subject: Replace glContainer with glAllocator glContainer is no longer required, as we can use std::vector with a custom allocator which uses OpenGL buffers for storage. Minor irritation is that the mapped buffers aren't guaranteed to be flushed in the tests, so sometimes we're missing bits in a test render. --- test/Jamfile.jam | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/Jamfile.jam') diff --git a/test/Jamfile.jam b/test/Jamfile.jam index a96ca2a..da2a61a 100644 --- a/test/Jamfile.jam +++ b/test/Jamfile.jam @@ -61,9 +61,9 @@ run test-lib.cpp ; run [ glob test-geoData*.cpp ] : -- : [ sequence.insertion-sort [ glob-tree $(fixtures)/geoData : *.json ] fixtures/height/SD19.asc ] : test ; run test-network.cpp : : : test ; run test-persistence.cpp : -- : [ sequence.insertion-sort [ glob-tree $(fixtures)/json : *.json ] ] : test ; -run test-text.cpp : -- : test-glContainer : test ; +run test-text.cpp : -- : test-glAllocator : test ; run test-enumDetails.cpp ; -run test-render.cpp : -- : test-assetFactory : test ; +run test-render.cpp : -- : : test ; run test-glContextBhvr.cpp ; run test-assetFactory.cpp : -- : [ sequence.insertion-sort [ glob-tree $(res) : *.* ] fixtures/rgb.txt test-instancing ] : test ; perfrun perf-assetFactory.cpp : : test-assetFactory ; @@ -71,9 +71,9 @@ perfrun perf-geoData.cpp : : test-geoData ; perfrun perf-terrain.cpp : : test-geoData ; perfrun perf-persistence.cpp : : test-persistence ; run test-worker.cpp ; -run test-instancing.cpp : -- : test-glContainer : test ; +run test-instancing.cpp : -- : test-glAllocator : test ; perfrun perf-instancing.cpp : : test-instancing ; -run test-glContainer.cpp : : : test ; +run test-glAllocator.cpp : : : test ; run test-pack.cpp : : : test ; run test-environment.cpp : : : test ; run test-ui.cpp : : : test ; -- cgit v1.3