diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-02-03 14:17:59 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-02-03 14:17:59 +0000 |
commit | 7bb4bfc23f3764770c7728d00dbe272a035db146 (patch) | |
tree | 679b48ea9e3cddeeed48e5668e609f026e2287c4 /test/test-instancing.cpp | |
parent | Merge branch 'geo-shadows' (diff) | |
parent | Allow specifying a target other than array buffer (diff) | |
download | ilt-7bb4bfc23f3764770c7728d00dbe272a035db146.tar.bz2 ilt-7bb4bfc23f3764770c7728d00dbe272a035db146.tar.xz ilt-7bb4bfc23f3764770c7728d00dbe272a035db146.zip |
Merge branch 'glcontainer-fix'
Diffstat (limited to 'test/test-instancing.cpp')
-rw-r--r-- | test/test-instancing.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test-instancing.cpp b/test/test-instancing.cpp index 98133f3..c1860a4 100644 --- a/test/test-instancing.cpp +++ b/test/test-instancing.cpp @@ -56,11 +56,11 @@ BOOST_AUTO_TEST_CASE(autoMapUnmap) { { auto proxy = acquire(); - BOOST_CHECK(data_.data()); + BOOST_CHECK(data_); std::ignore = bufferName(); - BOOST_CHECK(data_.data()); + BOOST_CHECK(data_); BOOST_CHECK_EQUAL(1, size()); - BOOST_CHECK(!data_.data()); + BOOST_CHECK(!data_); } BOOST_CHECK_EQUAL(0, size()); } |