summaryrefslogtreecommitdiff
path: root/test/test-instancing.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2024-02-03 14:17:59 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2024-02-03 14:17:59 +0000
commit7bb4bfc23f3764770c7728d00dbe272a035db146 (patch)
tree679b48ea9e3cddeeed48e5668e609f026e2287c4 /test/test-instancing.cpp
parentMerge branch 'geo-shadows' (diff)
parentAllow specifying a target other than array buffer (diff)
downloadilt-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.cpp6
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());
}