Lines Matching defs:access

909 					tcu::PixelBufferAccess access = is2dTex			? m_textures2d.back()->getLevel(levelNdx)
914 tcu::fillWithGrid(access, curCellSize, tcu::RGBA(colorA).toVec()*cScale + cBias, tcu::RGBA(colorB).toVec()*cScale + cBias);
1070 tcu::ConstPixelBufferAccess access = texture->getLevel(levelNdx);
1071 int width = access.getWidth();
1072 int height = access.getHeight();
1074 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*width);
1076 context.texImage2D(GL_TEXTURE_2D, levelNdx, m_textureParams[texNdx].internalFormat, width, height, 0 /* border */, formatGl.format, formatGl.dataType, access.getDataPtr());
1096 tcu::ConstPixelBufferAccess access = texture->getLevelFace(levelNdx, (tcu::CubeFace)face);
1097 int width = access.getWidth();
1098 int height = access.getHeight();
1100 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*width);
1102 context.texImage2D(s_cubeFaceTargets[face], levelNdx, m_textureParams[texNdx].internalFormat, width, height, 0 /* border */, formatGl.format, formatGl.dataType, access.getDataPtr());
1121 tcu::ConstPixelBufferAccess access = texture->getLevel(levelNdx);
1122 int width = access.getWidth();
1123 int height = access.getHeight();
1124 int layers = access.getDepth();
1126 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*width);
1127 DE_ASSERT(access.getSlicePitch() == access.getFormat().getPixelSize()*width*height);
1129 context.texImage3D(GL_TEXTURE_2D_ARRAY, levelNdx, m_textureParams[texNdx].internalFormat, width, height, layers, 0 /* border */, formatGl.format, formatGl.dataType, access.getDataPtr());
1147 tcu::ConstPixelBufferAccess access = texture->getLevel(levelNdx);
1148 int width = access.getWidth();
1149 int height = access.getHeight();
1150 int depth = access.getDepth();
1152 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*width);
1153 DE_ASSERT(access.getSlicePitch() == access.getFormat().getPixelSize()*width*height);
1155 context.texImage3D(GL_TEXTURE_3D, levelNdx, m_textureParams[texNdx].internalFormat, width, height, depth, 0 /* border */, formatGl.format, formatGl.dataType, access.getDataPtr());