From 867555b1c9ef51fec23ce77c682cf7d5b5a23c5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Mon, 13 May 2019 17:13:31 -0700 Subject: [core] add gfx::UploadPass, split startRender into prepare and upload --- test/util/string.test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/util/string.test.cpp') diff --git a/test/util/string.test.cpp b/test/util/string.test.cpp index 91e1b93685..f694702e69 100644 --- a/test/util/string.test.cpp +++ b/test/util/string.test.cpp @@ -21,9 +21,9 @@ TEST(ToString, FloatingPoint) { TEST(ToHex, SIZE_T) { #if INTPTR_MAX == INT32_MAX - EXPECT_EQ("a715b247", util::toHex((size_t)0xa715b247)); + EXPECT_EQ("a715b247", util::toHex((uint32_t)0xa715b247)); #elif INTPTR_MAX == INT64_MAX - EXPECT_EQ("a715b247df38cc29", util::toHex((size_t)0xa715b247df38cc29)); + EXPECT_EQ("a715b247df38cc29", util::toHex((uint64_t)0xa715b247df38cc29)); #endif } -- cgit v1.2.1