• Home
  • Raw
  • Download

Lines Matching refs:testSize

1105 bool TextureSizeCase::testTextureSize (const TestSize& testSize)  in testTextureSize()  argument
1123 const bool isSquare = testSize.textureSize.x() == testSize.textureSize.y(); in testTextureSize()
1124 …2DLodValid = (testSize.textureSize.x() >> (testSize.lod + testSize.lodBase)) != 0 || (testSize.tex… in testTextureSize()
1147 const int maxLevel = testSize.lod + testSize.lodBase; in testTextureSize()
1156 gl.texParameteri(textureTarget, GL_TEXTURE_BASE_LEVEL, testSize.lodBase); in testTextureSize()
1164 …:Message << "Testing image size " << testSize.textureSize.x() << "x" << testSize.textureSize.y() <… in testTextureSize()
1165 …tContext().getLog() << TestLog::Message << "Lod: " << testSize.lod << ", base level: " << testSize in testTextureSize()
1166 …estLog::Message << "Expecting: " << testSize.expectedSize.x() << "x" << testSize.expectedSize.y() … in testTextureSize()
1168 gl.uniform3iv(sizeLoc, 1, testSize.expectedSize.m_data); in testTextureSize()
1169 gl.uniform1iv(lodLoc, 1, &testSize.lod); in testTextureSize()
1171 …(textureTarget, levels, m_textureSpec.format, testSize.textureSize.x(), testSize.textureSize.y(), in testTextureSize()
1178 …tLog() << TestLog::Message << "Testing image size " << testSize.textureSize.x() << "x" << testSize in testTextureSize()
1179 …tContext().getLog() << TestLog::Message << "Lod: " << testSize.lod << ", base level: " << testSize in testTextureSize()
1180 …xt().getLog() << TestLog::Message << "Expecting: " << testSize.expectedSize.x() << "x" << testSize in testTextureSize()
1182 gl.uniform2iv(sizeLoc, 1, testSize.expectedSize.m_data); in testTextureSize()
1183 gl.uniform1iv(lodLoc, 1, &testSize.lod); in testTextureSize()
1185 …gl.texStorage2D(textureTarget, levels, m_textureSpec.format, testSize.textureSize.x(), testSize.te… in testTextureSize()
1191 …tcu::IVec3 expectedSize(testSize.expectedSize.x(), testSize.expectedSize.y(), testSize.textureSize… in testTextureSize()
1193 …essage << "Testing image size " << testSize.textureSize.x() << "x" << testSize.textureSize.y() << … in testTextureSize()
1194 …tContext().getLog() << TestLog::Message << "Lod: " << testSize.lod << ", base level: " << testSize in testTextureSize()
1195 …tLog::Message << "Expecting: " << testSize.expectedSize.x() << "x" << testSize.expectedSize.y() <<… in testTextureSize()
1198 gl.uniform1iv(lodLoc, 1, &testSize.lod); in testTextureSize()
1200 …(textureTarget, levels, m_textureSpec.format, testSize.textureSize.x(), testSize.textureSize.y(), in testTextureSize()