Lines Matching defs:width
56 int width = dst.getWidth();
61 gl.readPixels(x, y, width, height, format.format, format.dataType, dst.getDataPtr());
75 int width = src.getWidth();
80 gl.texImage2D(target, level, internalFormat, width, height, 0, format.format, format.dataType, src.getDataPtr());
94 int width = src.getWidth();
100 gl.texImage3D(target, level, internalFormat, width, height, depth, 0, format.format, format.dataType, src.getDataPtr());
114 int width = src.getWidth();
119 gl.texSubImage2D(target, level, x, y, width, height, format.format, format.dataType, src.getDataPtr());
133 int width = src.getWidth();
139 gl.texSubImage3D(target, level, x, y, z, width, height, depth, format.format, format.dataType, src.getDataPtr());