X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=tst%2Fgraphics%2FGLTraitsTest.cpp;h=5f134462c6102cf08bddbd36da50a52402ff90c5;hb=dcd54cacda98c2c0f7cf0c7a9131fb858d8ee10a;hp=956733153eb12308534bfc0b55a9bfdbd0ef4344;hpb=5998b18978bd8e7a0c9deb516474634e1d3521c9;p=blank.git diff --git a/tst/graphics/GLTraitsTest.cpp b/tst/graphics/GLTraitsTest.cpp index 9567331..5f13446 100644 --- a/tst/graphics/GLTraitsTest.cpp +++ b/tst/graphics/GLTraitsTest.cpp @@ -66,15 +66,15 @@ void GLTraitsTest::testSize() { CPPUNIT_ASSERT_EQUAL_MESSAGE( "bad number of components for vec2i", - 2, gl_traits>::size + 2, gl_traits::size ); CPPUNIT_ASSERT_EQUAL_MESSAGE( "bad number of components for vec3i", - 3, gl_traits>::size + 3, gl_traits::size ); CPPUNIT_ASSERT_EQUAL_MESSAGE( "bad number of components for vec4i", - 4, gl_traits>::size + 4, gl_traits::size ); } @@ -127,15 +127,15 @@ void GLTraitsTest::testType() { CPPUNIT_ASSERT_EQUAL_MESSAGE( "bad component type for vec2i", - GLenum(GL_INT), gl_traits>::type + GLenum(GL_INT), gl_traits::type ); CPPUNIT_ASSERT_EQUAL_MESSAGE( "bad component type for vec3i", - GLenum(GL_INT), gl_traits>::type + GLenum(GL_INT), gl_traits::type ); CPPUNIT_ASSERT_EQUAL_MESSAGE( "bad component type for vec4i", - GLenum(GL_INT), gl_traits>::type + GLenum(GL_INT), gl_traits::type ); }