Home | History | Annotate | Download | only in internal

Lines Matching refs:texture

54 		tcu::TextureLevel texture;
55 tcu::ImageIO::loadImage(texture, m_testCtx.getArchive(), m_filename.c_str());
57 m_testCtx.getLog() << TestLog::Message << "Loaded " << texture.getWidth() << "x" << texture.getHeight() << "x" << texture.getDepth() << " image with format " << texture.getFormat() << TestLog::EndMessage;
60 TCU_CHECK(texture.getAccess().getRowPitch() == texture.getWidth()*texture.getFormat().getPixelSize());
61 TCU_CHECK(texture.getAccess().getSlicePitch() == texture.getAccess().getRowPitch()*texture.getAccess().getHeight());
63 const int imageSize = texture.getAccess().getSlicePitch()*texture.getDepth();
64 const deUint32 hash = deMemoryHash(texture.getAccess().getDataPtr(), imageSize);
69 m_testCtx.getLog() << TestLog::Image("Image", "Loaded image", texture.getAccess());