Lines Matching defs:width

168             int internalformat, int width, int height, int border,
171 mgl.glCompressedTexImage2D(target, level, internalformat, width,
177 int yoffset, int width, int height, int format, int imageSize,
180 mgl.glCompressedTexSubImage2D(target, level, xoffset, yoffset, width,
186 int x, int y, int width, int height, int border) {
188 mgl.glCopyTexImage2D(target, level, internalformat, x, y, width,
194 int yoffset, int x, int y, int width, int height) {
196 mgl.glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width,
462 public void glLineWidth(float width) {
464 mgl.glLineWidth(width);
468 public void glLineWidthx(int width) {
470 mgl.glLineWidthx(width);
663 public void glReadPixels(int x, int y, int width, int height, int format,
666 mgl.glReadPixels(x, y, width, height, format, type, pixels);
706 public void glScissor(int x, int y, int width, int height) {
708 mgl.glScissor(x, y, width, height);
780 int width, int height, int border, int format, int type,
783 mgl.glTexImage2D(target, level, internalformat, width, height, border,
813 int yoffset, int width, int height, int format, int type,
816 mgl.glTexSubImage2D(target, level, xoffset, yoffset, width, height,
840 public void glViewport(int x, int y, int width, int height) {
842 mgl.glViewport(x, y, width, height);
873 float width, float height) {
875 mgl11Ext.glDrawTexfOES(x, y, z, width, height);
891 public void glDrawTexiOES(int x, int y, int z, int width, int height) {
893 mgl11Ext.glDrawTexiOES(x, y, z, width, height);
910 short width, short height) {
912 mgl11Ext.glDrawTexsOES(x, y, z, width, height);
928 public void glDrawTexxOES(int x, int y, int z, int width, int height) {
930 mgl11Ext.glDrawTexxOES(x, y, z, width, height);
1595 int width, int height) {
1597 mgl11ExtensionPack.glRenderbufferStorageOES(target, internalformat, width, height);