Lines Matching defs:width
1071 int width = access.getWidth();
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());
1097 int width = access.getWidth();
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());
1122 int width = access.getWidth();
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());
1148 int width = access.getWidth();
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());