Lines Matching refs:testSize
1168 bool TextureSizeCase::testTextureSize (const TestSize& testSize) in testTextureSize() argument
1186 const bool isSquare = testSize.textureSize.x() == testSize.textureSize.y(); in testTextureSize()
1187 …2DLodValid = (testSize.textureSize.x() >> (testSize.lod + testSize.lodBase)) != 0 || (testSize.tex… in testTextureSize()
1210 const int maxLevel = testSize.lod + testSize.lodBase; in testTextureSize()
1219 gl.texParameteri(textureTarget, GL_TEXTURE_BASE_LEVEL, testSize.lodBase); in testTextureSize()
1227 …:Message << "Testing image size " << testSize.textureSize.x() << "x" << testSize.textureSize.y() <… in testTextureSize()
1228 …tContext().getLog() << TestLog::Message << "Lod: " << testSize.lod << ", base level: " << testSize… in testTextureSize()
1229 …estLog::Message << "Expecting: " << testSize.expectedSize.x() << "x" << testSize.expectedSize.y() … in testTextureSize()
1231 gl.uniform3iv(sizeLoc, 1, testSize.expectedSize.m_data); in testTextureSize()
1232 gl.uniform1iv(lodLoc, 1, &testSize.lod); in testTextureSize()
1234 …(textureTarget, levels, m_textureSpec.format, testSize.textureSize.x(), testSize.textureSize.y(), … in testTextureSize()
1241 …tLog() << TestLog::Message << "Testing image size " << testSize.textureSize.x() << "x" << testSize… in testTextureSize()
1242 …tContext().getLog() << TestLog::Message << "Lod: " << testSize.lod << ", base level: " << testSize… in testTextureSize()
1243 …xt().getLog() << TestLog::Message << "Expecting: " << testSize.expectedSize.x() << "x" << testSize… in testTextureSize()
1245 gl.uniform2iv(sizeLoc, 1, testSize.expectedSize.m_data); in testTextureSize()
1246 gl.uniform1iv(lodLoc, 1, &testSize.lod); in testTextureSize()
1248 …gl.texStorage2D(textureTarget, levels, m_textureSpec.format, testSize.textureSize.x(), testSize.te… in testTextureSize()
1254 …tcu::IVec3 expectedSize(testSize.expectedSize.x(), testSize.expectedSize.y(), testSize.textureSize… in testTextureSize()
1256 …essage << "Testing image size " << testSize.textureSize.x() << "x" << testSize.textureSize.y() << … in testTextureSize()
1257 …tContext().getLog() << TestLog::Message << "Lod: " << testSize.lod << ", base level: " << testSize… in testTextureSize()
1258 …tLog::Message << "Expecting: " << testSize.expectedSize.x() << "x" << testSize.expectedSize.y() <<… in testTextureSize()
1261 gl.uniform1iv(lodLoc, 1, &testSize.lod); in testTextureSize()
1263 …(textureTarget, levels, m_textureSpec.format, testSize.textureSize.x(), testSize.textureSize.y(), … in testTextureSize()