Lines Matching full:getwidth
97 gl.texImage1D(GL_TEXTURE_1D, levelNdx, m_format, access.getWidth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
133 , m_refTexture (levels[0].getUncompressedFormat(), levels[0].getWidth(), levels[0].getHeight())
180 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth());
181 gl.texImage2D(GL_TEXTURE_2D, levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
202 TCU_CHECK(level.getWidth() == refLevelAccess.getWidth() &&
208 level.getWidth(), level.getHeight(), 0 /* border */, level.getDataSize(), level.getData());
233 Texture2D* texture = new Texture2D(context, isRGBA ? GL_RGBA : GL_RGB, GL_UNSIGNED_BYTE, level.getWidth(), level.getHeight());
292 , m_refTexture (levels[0].getUncompressedFormat(), levels[0].getWidth())
297 TCU_CHECK_INTERNAL(levels[0].getWidth() == levels[0].getHeight());
383 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth());
384 gl.texImage2D(cubeFaceToGLFace((tcu::CubeFace)face), levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
408 TCU_CHECK(level.getWidth() == refLevelAccess.getWidth() &&
414 level.getWidth(), level.getHeight(), 0 /* border */, level.getDataSize(), level.getData());
502 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth());
503 gl.texImage2D(GL_TEXTURE_1D_ARRAY, levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
561 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth());
562 DE_ASSERT(access.getSlicePitch() == access.getFormat().getPixelSize()*access.getWidth()*access.getHeight());
563 gl.texImage3D(GL_TEXTURE_2D_ARRAY, levelNdx, m_format, access.getWidth(), access.getHeight(), access.getDepth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
621 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth());
622 DE_ASSERT(access.getSlicePitch() == access.getFormat().getPixelSize()*access.getWidth()*access.getHeight());
623 gl.texImage3D(GL_TEXTURE_3D, levelNdx, m_format, access.getWidth(), access.getHeight(), access.getDepth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
681 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth());
682 DE_ASSERT(access.getSlicePitch() == access.getFormat().getPixelSize()*access.getWidth()*access.getHeight());
683 gl.texImage3D(GL_TEXTURE_CUBE_MAP_ARRAY, levelNdx, m_format, access.getWidth(), access.getHeight(), access.getDepth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());