1 /* 2 * Copyright (C) 2010 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.gallery3d.ui; 18 19 import javax.microedition.khronos.opengles.GL; 20 import javax.microedition.khronos.opengles.GL10; 21 import javax.microedition.khronos.opengles.GL10Ext; 22 import javax.microedition.khronos.opengles.GL11; 23 import javax.microedition.khronos.opengles.GL11Ext; 24 25 public class GLStub implements GL, GL10, GL10Ext, GL11, GL11Ext { 26 @SuppressWarnings("unused") 27 private static final String TAG = "GLStub"; 28 glActiveTexture( int texture )29 public void glActiveTexture( 30 int texture 31 ){} 32 glAlphaFunc( int func, float ref )33 public void glAlphaFunc( 34 int func, 35 float ref 36 ){} 37 glAlphaFuncx( int func, int ref )38 public void glAlphaFuncx( 39 int func, 40 int ref 41 ){} 42 glBindTexture( int target, int texture )43 public void glBindTexture( 44 int target, 45 int texture 46 ){} 47 glBlendFunc( int sfactor, int dfactor )48 public void glBlendFunc( 49 int sfactor, 50 int dfactor 51 ){} 52 glClear( int mask )53 public void glClear( 54 int mask 55 ){} 56 glClearColor( float red, float green, float blue, float alpha )57 public void glClearColor( 58 float red, 59 float green, 60 float blue, 61 float alpha 62 ){} 63 glClearColorx( int red, int green, int blue, int alpha )64 public void glClearColorx( 65 int red, 66 int green, 67 int blue, 68 int alpha 69 ){} 70 glClearDepthf( float depth )71 public void glClearDepthf( 72 float depth 73 ){} 74 glClearDepthx( int depth )75 public void glClearDepthx( 76 int depth 77 ){} 78 glClearStencil( int s )79 public void glClearStencil( 80 int s 81 ){} 82 glClientActiveTexture( int texture )83 public void glClientActiveTexture( 84 int texture 85 ){} 86 glColor4f( float red, float green, float blue, float alpha )87 public void glColor4f( 88 float red, 89 float green, 90 float blue, 91 float alpha 92 ){} 93 glColor4x( int red, int green, int blue, int alpha )94 public void glColor4x( 95 int red, 96 int green, 97 int blue, 98 int alpha 99 ){} 100 glColorMask( boolean red, boolean green, boolean blue, boolean alpha )101 public void glColorMask( 102 boolean red, 103 boolean green, 104 boolean blue, 105 boolean alpha 106 ){} 107 glColorPointer( int size, int type, int stride, java.nio.Buffer pointer )108 public void glColorPointer( 109 int size, 110 int type, 111 int stride, 112 java.nio.Buffer pointer 113 ){} 114 glCompressedTexImage2D( int target, int level, int internalformat, int width, int height, int border, int imageSize, java.nio.Buffer data )115 public void glCompressedTexImage2D( 116 int target, 117 int level, 118 int internalformat, 119 int width, 120 int height, 121 int border, 122 int imageSize, 123 java.nio.Buffer data 124 ){} 125 glCompressedTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, java.nio.Buffer data )126 public void glCompressedTexSubImage2D( 127 int target, 128 int level, 129 int xoffset, 130 int yoffset, 131 int width, 132 int height, 133 int format, 134 int imageSize, 135 java.nio.Buffer data 136 ){} 137 glCopyTexImage2D( int target, int level, int internalformat, int x, int y, int width, int height, int border )138 public void glCopyTexImage2D( 139 int target, 140 int level, 141 int internalformat, 142 int x, 143 int y, 144 int width, 145 int height, 146 int border 147 ){} 148 glCopyTexSubImage2D( int target, int level, int xoffset, int yoffset, int x, int y, int width, int height )149 public void glCopyTexSubImage2D( 150 int target, 151 int level, 152 int xoffset, 153 int yoffset, 154 int x, 155 int y, 156 int width, 157 int height 158 ){} 159 glCullFace( int mode )160 public void glCullFace( 161 int mode 162 ){} 163 glDeleteTextures( int n, int[] textures, int offset )164 public void glDeleteTextures( 165 int n, 166 int[] textures, 167 int offset 168 ){} 169 glDeleteTextures( int n, java.nio.IntBuffer textures )170 public void glDeleteTextures( 171 int n, 172 java.nio.IntBuffer textures 173 ){} 174 glDepthFunc( int func )175 public void glDepthFunc( 176 int func 177 ){} 178 glDepthMask( boolean flag )179 public void glDepthMask( 180 boolean flag 181 ){} 182 glDepthRangef( float zNear, float zFar )183 public void glDepthRangef( 184 float zNear, 185 float zFar 186 ){} 187 glDepthRangex( int zNear, int zFar )188 public void glDepthRangex( 189 int zNear, 190 int zFar 191 ){} 192 glDisable( int cap )193 public void glDisable( 194 int cap 195 ){} 196 glDisableClientState( int array )197 public void glDisableClientState( 198 int array 199 ){} 200 glDrawArrays( int mode, int first, int count )201 public void glDrawArrays( 202 int mode, 203 int first, 204 int count 205 ){} 206 glDrawElements( int mode, int count, int type, java.nio.Buffer indices )207 public void glDrawElements( 208 int mode, 209 int count, 210 int type, 211 java.nio.Buffer indices 212 ){} 213 glEnable( int cap )214 public void glEnable( 215 int cap 216 ){} 217 glEnableClientState( int array )218 public void glEnableClientState( 219 int array 220 ){} 221 glFinish( )222 public void glFinish( 223 ){} 224 glFlush( )225 public void glFlush( 226 ){} 227 glFogf( int pname, float param )228 public void glFogf( 229 int pname, 230 float param 231 ){} 232 glFogfv( int pname, float[] params, int offset )233 public void glFogfv( 234 int pname, 235 float[] params, 236 int offset 237 ){} 238 glFogfv( int pname, java.nio.FloatBuffer params )239 public void glFogfv( 240 int pname, 241 java.nio.FloatBuffer params 242 ){} 243 glFogx( int pname, int param )244 public void glFogx( 245 int pname, 246 int param 247 ){} 248 glFogxv( int pname, int[] params, int offset )249 public void glFogxv( 250 int pname, 251 int[] params, 252 int offset 253 ){} 254 glFogxv( int pname, java.nio.IntBuffer params )255 public void glFogxv( 256 int pname, 257 java.nio.IntBuffer params 258 ){} 259 glFrontFace( int mode )260 public void glFrontFace( 261 int mode 262 ){} 263 glFrustumf( float left, float right, float bottom, float top, float zNear, float zFar )264 public void glFrustumf( 265 float left, 266 float right, 267 float bottom, 268 float top, 269 float zNear, 270 float zFar 271 ){} 272 glFrustumx( int left, int right, int bottom, int top, int zNear, int zFar )273 public void glFrustumx( 274 int left, 275 int right, 276 int bottom, 277 int top, 278 int zNear, 279 int zFar 280 ){} 281 glGenTextures( int n, int[] textures, int offset )282 public void glGenTextures( 283 int n, 284 int[] textures, 285 int offset 286 ){} 287 glGenTextures( int n, java.nio.IntBuffer textures )288 public void glGenTextures( 289 int n, 290 java.nio.IntBuffer textures 291 ){} 292 glGetError( )293 public int glGetError( 294 ){ throw new UnsupportedOperationException(); } 295 glGetIntegerv( int pname, int[] params, int offset )296 public void glGetIntegerv( 297 int pname, 298 int[] params, 299 int offset 300 ){} 301 glGetIntegerv( int pname, java.nio.IntBuffer params )302 public void glGetIntegerv( 303 int pname, 304 java.nio.IntBuffer params 305 ){} 306 glGetString( int name )307 public String glGetString( 308 int name 309 ){ throw new UnsupportedOperationException(); } 310 glHint( int target, int mode )311 public void glHint( 312 int target, 313 int mode 314 ){} 315 glLightModelf( int pname, float param )316 public void glLightModelf( 317 int pname, 318 float param 319 ){} 320 glLightModelfv( int pname, float[] params, int offset )321 public void glLightModelfv( 322 int pname, 323 float[] params, 324 int offset 325 ){} 326 glLightModelfv( int pname, java.nio.FloatBuffer params )327 public void glLightModelfv( 328 int pname, 329 java.nio.FloatBuffer params 330 ){} 331 glLightModelx( int pname, int param )332 public void glLightModelx( 333 int pname, 334 int param 335 ){} 336 glLightModelxv( int pname, int[] params, int offset )337 public void glLightModelxv( 338 int pname, 339 int[] params, 340 int offset 341 ){} 342 glLightModelxv( int pname, java.nio.IntBuffer params )343 public void glLightModelxv( 344 int pname, 345 java.nio.IntBuffer params 346 ){} 347 glLightf( int light, int pname, float param )348 public void glLightf( 349 int light, 350 int pname, 351 float param 352 ){} 353 glLightfv( int light, int pname, float[] params, int offset )354 public void glLightfv( 355 int light, 356 int pname, 357 float[] params, 358 int offset 359 ){} 360 glLightfv( int light, int pname, java.nio.FloatBuffer params )361 public void glLightfv( 362 int light, 363 int pname, 364 java.nio.FloatBuffer params 365 ){} 366 glLightx( int light, int pname, int param )367 public void glLightx( 368 int light, 369 int pname, 370 int param 371 ){} 372 glLightxv( int light, int pname, int[] params, int offset )373 public void glLightxv( 374 int light, 375 int pname, 376 int[] params, 377 int offset 378 ){} 379 glLightxv( int light, int pname, java.nio.IntBuffer params )380 public void glLightxv( 381 int light, 382 int pname, 383 java.nio.IntBuffer params 384 ){} 385 glLineWidth( float width )386 public void glLineWidth( 387 float width 388 ){} 389 glLineWidthx( int width )390 public void glLineWidthx( 391 int width 392 ){} 393 glLoadIdentity( )394 public void glLoadIdentity( 395 ){} 396 glLoadMatrixf( float[] m, int offset )397 public void glLoadMatrixf( 398 float[] m, 399 int offset 400 ){} 401 glLoadMatrixf( java.nio.FloatBuffer m )402 public void glLoadMatrixf( 403 java.nio.FloatBuffer m 404 ){} 405 glLoadMatrixx( int[] m, int offset )406 public void glLoadMatrixx( 407 int[] m, 408 int offset 409 ){} 410 glLoadMatrixx( java.nio.IntBuffer m )411 public void glLoadMatrixx( 412 java.nio.IntBuffer m 413 ){} 414 glLogicOp( int opcode )415 public void glLogicOp( 416 int opcode 417 ){} 418 glMaterialf( int face, int pname, float param )419 public void glMaterialf( 420 int face, 421 int pname, 422 float param 423 ){} 424 glMaterialfv( int face, int pname, float[] params, int offset )425 public void glMaterialfv( 426 int face, 427 int pname, 428 float[] params, 429 int offset 430 ){} 431 glMaterialfv( int face, int pname, java.nio.FloatBuffer params )432 public void glMaterialfv( 433 int face, 434 int pname, 435 java.nio.FloatBuffer params 436 ){} 437 glMaterialx( int face, int pname, int param )438 public void glMaterialx( 439 int face, 440 int pname, 441 int param 442 ){} 443 glMaterialxv( int face, int pname, int[] params, int offset )444 public void glMaterialxv( 445 int face, 446 int pname, 447 int[] params, 448 int offset 449 ){} 450 glMaterialxv( int face, int pname, java.nio.IntBuffer params )451 public void glMaterialxv( 452 int face, 453 int pname, 454 java.nio.IntBuffer params 455 ){} 456 glMatrixMode( int mode )457 public void glMatrixMode( 458 int mode 459 ){} 460 glMultMatrixf( float[] m, int offset )461 public void glMultMatrixf( 462 float[] m, 463 int offset 464 ){} 465 glMultMatrixf( java.nio.FloatBuffer m )466 public void glMultMatrixf( 467 java.nio.FloatBuffer m 468 ){} 469 glMultMatrixx( int[] m, int offset )470 public void glMultMatrixx( 471 int[] m, 472 int offset 473 ){} 474 glMultMatrixx( java.nio.IntBuffer m )475 public void glMultMatrixx( 476 java.nio.IntBuffer m 477 ){} 478 glMultiTexCoord4f( int target, float s, float t, float r, float q )479 public void glMultiTexCoord4f( 480 int target, 481 float s, 482 float t, 483 float r, 484 float q 485 ){} 486 glMultiTexCoord4x( int target, int s, int t, int r, int q )487 public void glMultiTexCoord4x( 488 int target, 489 int s, 490 int t, 491 int r, 492 int q 493 ){} 494 glNormal3f( float nx, float ny, float nz )495 public void glNormal3f( 496 float nx, 497 float ny, 498 float nz 499 ){} 500 glNormal3x( int nx, int ny, int nz )501 public void glNormal3x( 502 int nx, 503 int ny, 504 int nz 505 ){} 506 glNormalPointer( int type, int stride, java.nio.Buffer pointer )507 public void glNormalPointer( 508 int type, 509 int stride, 510 java.nio.Buffer pointer 511 ){} 512 glOrthof( float left, float right, float bottom, float top, float zNear, float zFar )513 public void glOrthof( 514 float left, 515 float right, 516 float bottom, 517 float top, 518 float zNear, 519 float zFar 520 ){} 521 glOrthox( int left, int right, int bottom, int top, int zNear, int zFar )522 public void glOrthox( 523 int left, 524 int right, 525 int bottom, 526 int top, 527 int zNear, 528 int zFar 529 ){} 530 glPixelStorei( int pname, int param )531 public void glPixelStorei( 532 int pname, 533 int param 534 ){} 535 glPointSize( float size )536 public void glPointSize( 537 float size 538 ){} 539 glPointSizex( int size )540 public void glPointSizex( 541 int size 542 ){} 543 glPolygonOffset( float factor, float units )544 public void glPolygonOffset( 545 float factor, 546 float units 547 ){} 548 glPolygonOffsetx( int factor, int units )549 public void glPolygonOffsetx( 550 int factor, 551 int units 552 ){} 553 glPopMatrix( )554 public void glPopMatrix( 555 ){} 556 glPushMatrix( )557 public void glPushMatrix( 558 ){} 559 glReadPixels( int x, int y, int width, int height, int format, int type, java.nio.Buffer pixels )560 public void glReadPixels( 561 int x, 562 int y, 563 int width, 564 int height, 565 int format, 566 int type, 567 java.nio.Buffer pixels 568 ){} 569 glRotatef( float angle, float x, float y, float z )570 public void glRotatef( 571 float angle, 572 float x, 573 float y, 574 float z 575 ){} 576 glRotatex( int angle, int x, int y, int z )577 public void glRotatex( 578 int angle, 579 int x, 580 int y, 581 int z 582 ){} 583 glSampleCoverage( float value, boolean invert )584 public void glSampleCoverage( 585 float value, 586 boolean invert 587 ){} 588 glSampleCoveragex( int value, boolean invert )589 public void glSampleCoveragex( 590 int value, 591 boolean invert 592 ){} 593 glScalef( float x, float y, float z )594 public void glScalef( 595 float x, 596 float y, 597 float z 598 ){} 599 glScalex( int x, int y, int z )600 public void glScalex( 601 int x, 602 int y, 603 int z 604 ){} 605 glScissor( int x, int y, int width, int height )606 public void glScissor( 607 int x, 608 int y, 609 int width, 610 int height 611 ){} 612 glShadeModel( int mode )613 public void glShadeModel( 614 int mode 615 ){} 616 glStencilFunc( int func, int ref, int mask )617 public void glStencilFunc( 618 int func, 619 int ref, 620 int mask 621 ){} 622 glStencilMask( int mask )623 public void glStencilMask( 624 int mask 625 ){} 626 glStencilOp( int fail, int zfail, int zpass )627 public void glStencilOp( 628 int fail, 629 int zfail, 630 int zpass 631 ){} 632 glTexCoordPointer( int size, int type, int stride, java.nio.Buffer pointer )633 public void glTexCoordPointer( 634 int size, 635 int type, 636 int stride, 637 java.nio.Buffer pointer 638 ){} 639 glTexEnvf( int target, int pname, float param )640 public void glTexEnvf( 641 int target, 642 int pname, 643 float param 644 ){} 645 glTexEnvfv( int target, int pname, float[] params, int offset )646 public void glTexEnvfv( 647 int target, 648 int pname, 649 float[] params, 650 int offset 651 ){} 652 glTexEnvfv( int target, int pname, java.nio.FloatBuffer params )653 public void glTexEnvfv( 654 int target, 655 int pname, 656 java.nio.FloatBuffer params 657 ){} 658 glTexEnvx( int target, int pname, int param )659 public void glTexEnvx( 660 int target, 661 int pname, 662 int param 663 ){} 664 glTexEnvxv( int target, int pname, int[] params, int offset )665 public void glTexEnvxv( 666 int target, 667 int pname, 668 int[] params, 669 int offset 670 ){} 671 glTexEnvxv( int target, int pname, java.nio.IntBuffer params )672 public void glTexEnvxv( 673 int target, 674 int pname, 675 java.nio.IntBuffer params 676 ){} 677 glTexImage2D( int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.Buffer pixels )678 public void glTexImage2D( 679 int target, 680 int level, 681 int internalformat, 682 int width, 683 int height, 684 int border, 685 int format, 686 int type, 687 java.nio.Buffer pixels 688 ){} 689 glTexParameterf( int target, int pname, float param )690 public void glTexParameterf( 691 int target, 692 int pname, 693 float param 694 ){} 695 glTexParameterx( int target, int pname, int param )696 public void glTexParameterx( 697 int target, 698 int pname, 699 int param 700 ){} 701 glTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.Buffer pixels )702 public void glTexSubImage2D( 703 int target, 704 int level, 705 int xoffset, 706 int yoffset, 707 int width, 708 int height, 709 int format, 710 int type, 711 java.nio.Buffer pixels 712 ){} 713 glTranslatef( float x, float y, float z )714 public void glTranslatef( 715 float x, 716 float y, 717 float z 718 ){} 719 glTranslatex( int x, int y, int z )720 public void glTranslatex( 721 int x, 722 int y, 723 int z 724 ){} 725 glVertexPointer( int size, int type, int stride, java.nio.Buffer pointer )726 public void glVertexPointer( 727 int size, 728 int type, 729 int stride, 730 java.nio.Buffer pointer 731 ){} 732 glViewport( int x, int y, int width, int height )733 public void glViewport( 734 int x, 735 int y, 736 int width, 737 int height 738 ){} 739 glQueryMatrixxOES( int[] mantissa, int mantissaOffset, int[] exponent, int exponentOffset )740 public int glQueryMatrixxOES( 741 int[] mantissa, 742 int mantissaOffset, 743 int[] exponent, 744 int exponentOffset 745 ){ throw new UnsupportedOperationException(); } 746 glQueryMatrixxOES( java.nio.IntBuffer mantissa, java.nio.IntBuffer exponent )747 public int glQueryMatrixxOES( 748 java.nio.IntBuffer mantissa, 749 java.nio.IntBuffer exponent 750 ){ throw new UnsupportedOperationException(); } 751 glGetPointerv(int pname, java.nio.Buffer[] params)752 public void glGetPointerv(int pname, java.nio.Buffer[] params){} glBindBuffer( int target, int buffer )753 public void glBindBuffer( 754 int target, 755 int buffer 756 ){} 757 glBufferData( int target, int size, java.nio.Buffer data, int usage )758 public void glBufferData( 759 int target, 760 int size, 761 java.nio.Buffer data, 762 int usage 763 ){} 764 glBufferSubData( int target, int offset, int size, java.nio.Buffer data )765 public void glBufferSubData( 766 int target, 767 int offset, 768 int size, 769 java.nio.Buffer data 770 ){} 771 glClipPlanef( int plane, float[] equation, int offset )772 public void glClipPlanef( 773 int plane, 774 float[] equation, 775 int offset 776 ){} 777 glClipPlanef( int plane, java.nio.FloatBuffer equation )778 public void glClipPlanef( 779 int plane, 780 java.nio.FloatBuffer equation 781 ){} 782 glClipPlanex( int plane, int[] equation, int offset )783 public void glClipPlanex( 784 int plane, 785 int[] equation, 786 int offset 787 ){} 788 glClipPlanex( int plane, java.nio.IntBuffer equation )789 public void glClipPlanex( 790 int plane, 791 java.nio.IntBuffer equation 792 ){} 793 glColor4ub( byte red, byte green, byte blue, byte alpha )794 public void glColor4ub( 795 byte red, 796 byte green, 797 byte blue, 798 byte alpha 799 ){} 800 glColorPointer( int size, int type, int stride, int offset )801 public void glColorPointer( 802 int size, 803 int type, 804 int stride, 805 int offset 806 ){} 807 glDeleteBuffers( int n, int[] buffers, int offset )808 public void glDeleteBuffers( 809 int n, 810 int[] buffers, 811 int offset 812 ){} 813 glDeleteBuffers( int n, java.nio.IntBuffer buffers )814 public void glDeleteBuffers( 815 int n, 816 java.nio.IntBuffer buffers 817 ){} 818 glDrawElements( int mode, int count, int type, int offset )819 public void glDrawElements( 820 int mode, 821 int count, 822 int type, 823 int offset 824 ){} 825 glGenBuffers( int n, int[] buffers, int offset )826 public void glGenBuffers( 827 int n, 828 int[] buffers, 829 int offset 830 ){} 831 glGenBuffers( int n, java.nio.IntBuffer buffers )832 public void glGenBuffers( 833 int n, 834 java.nio.IntBuffer buffers 835 ){} 836 glGetBooleanv( int pname, boolean[] params, int offset )837 public void glGetBooleanv( 838 int pname, 839 boolean[] params, 840 int offset 841 ){} 842 glGetBooleanv( int pname, java.nio.IntBuffer params )843 public void glGetBooleanv( 844 int pname, 845 java.nio.IntBuffer params 846 ){} 847 glGetBufferParameteriv( int target, int pname, int[] params, int offset )848 public void glGetBufferParameteriv( 849 int target, 850 int pname, 851 int[] params, 852 int offset 853 ){} 854 glGetBufferParameteriv( int target, int pname, java.nio.IntBuffer params )855 public void glGetBufferParameteriv( 856 int target, 857 int pname, 858 java.nio.IntBuffer params 859 ){} 860 glGetClipPlanef( int pname, float[] eqn, int offset )861 public void glGetClipPlanef( 862 int pname, 863 float[] eqn, 864 int offset 865 ){} 866 glGetClipPlanef( int pname, java.nio.FloatBuffer eqn )867 public void glGetClipPlanef( 868 int pname, 869 java.nio.FloatBuffer eqn 870 ){} 871 glGetClipPlanex( int pname, int[] eqn, int offset )872 public void glGetClipPlanex( 873 int pname, 874 int[] eqn, 875 int offset 876 ){} 877 glGetClipPlanex( int pname, java.nio.IntBuffer eqn )878 public void glGetClipPlanex( 879 int pname, 880 java.nio.IntBuffer eqn 881 ){} 882 glGetFixedv( int pname, int[] params, int offset )883 public void glGetFixedv( 884 int pname, 885 int[] params, 886 int offset 887 ){} 888 glGetFixedv( int pname, java.nio.IntBuffer params )889 public void glGetFixedv( 890 int pname, 891 java.nio.IntBuffer params 892 ){} 893 glGetFloatv( int pname, float[] params, int offset )894 public void glGetFloatv( 895 int pname, 896 float[] params, 897 int offset 898 ){} 899 glGetFloatv( int pname, java.nio.FloatBuffer params )900 public void glGetFloatv( 901 int pname, 902 java.nio.FloatBuffer params 903 ){} 904 glGetLightfv( int light, int pname, float[] params, int offset )905 public void glGetLightfv( 906 int light, 907 int pname, 908 float[] params, 909 int offset 910 ){} 911 glGetLightfv( int light, int pname, java.nio.FloatBuffer params )912 public void glGetLightfv( 913 int light, 914 int pname, 915 java.nio.FloatBuffer params 916 ){} 917 glGetLightxv( int light, int pname, int[] params, int offset )918 public void glGetLightxv( 919 int light, 920 int pname, 921 int[] params, 922 int offset 923 ){} 924 glGetLightxv( int light, int pname, java.nio.IntBuffer params )925 public void glGetLightxv( 926 int light, 927 int pname, 928 java.nio.IntBuffer params 929 ){} 930 glGetMaterialfv( int face, int pname, float[] params, int offset )931 public void glGetMaterialfv( 932 int face, 933 int pname, 934 float[] params, 935 int offset 936 ){} 937 glGetMaterialfv( int face, int pname, java.nio.FloatBuffer params )938 public void glGetMaterialfv( 939 int face, 940 int pname, 941 java.nio.FloatBuffer params 942 ){} 943 glGetMaterialxv( int face, int pname, int[] params, int offset )944 public void glGetMaterialxv( 945 int face, 946 int pname, 947 int[] params, 948 int offset 949 ){} 950 glGetMaterialxv( int face, int pname, java.nio.IntBuffer params )951 public void glGetMaterialxv( 952 int face, 953 int pname, 954 java.nio.IntBuffer params 955 ){} 956 glGetTexEnviv( int env, int pname, int[] params, int offset )957 public void glGetTexEnviv( 958 int env, 959 int pname, 960 int[] params, 961 int offset 962 ){} 963 glGetTexEnviv( int env, int pname, java.nio.IntBuffer params )964 public void glGetTexEnviv( 965 int env, 966 int pname, 967 java.nio.IntBuffer params 968 ){} 969 glGetTexEnvxv( int env, int pname, int[] params, int offset )970 public void glGetTexEnvxv( 971 int env, 972 int pname, 973 int[] params, 974 int offset 975 ){} 976 glGetTexEnvxv( int env, int pname, java.nio.IntBuffer params )977 public void glGetTexEnvxv( 978 int env, 979 int pname, 980 java.nio.IntBuffer params 981 ){} 982 glGetTexParameterfv( int target, int pname, float[] params, int offset )983 public void glGetTexParameterfv( 984 int target, 985 int pname, 986 float[] params, 987 int offset 988 ){} 989 glGetTexParameterfv( int target, int pname, java.nio.FloatBuffer params )990 public void glGetTexParameterfv( 991 int target, 992 int pname, 993 java.nio.FloatBuffer params 994 ){} 995 glGetTexParameteriv( int target, int pname, int[] params, int offset )996 public void glGetTexParameteriv( 997 int target, 998 int pname, 999 int[] params, 1000 int offset 1001 ){} 1002 glGetTexParameteriv( int target, int pname, java.nio.IntBuffer params )1003 public void glGetTexParameteriv( 1004 int target, 1005 int pname, 1006 java.nio.IntBuffer params 1007 ){} 1008 glGetTexParameterxv( int target, int pname, int[] params, int offset )1009 public void glGetTexParameterxv( 1010 int target, 1011 int pname, 1012 int[] params, 1013 int offset 1014 ){} 1015 glGetTexParameterxv( int target, int pname, java.nio.IntBuffer params )1016 public void glGetTexParameterxv( 1017 int target, 1018 int pname, 1019 java.nio.IntBuffer params 1020 ){} 1021 glIsBuffer( int buffer )1022 public boolean glIsBuffer( 1023 int buffer 1024 ){ throw new UnsupportedOperationException(); } 1025 glIsEnabled( int cap )1026 public boolean glIsEnabled( 1027 int cap 1028 ){ throw new UnsupportedOperationException(); } 1029 glIsTexture( int texture )1030 public boolean glIsTexture( 1031 int texture 1032 ){ throw new UnsupportedOperationException(); } 1033 glNormalPointer( int type, int stride, int offset )1034 public void glNormalPointer( 1035 int type, 1036 int stride, 1037 int offset 1038 ){} 1039 glPointParameterf( int pname, float param )1040 public void glPointParameterf( 1041 int pname, 1042 float param 1043 ){} 1044 glPointParameterfv( int pname, float[] params, int offset )1045 public void glPointParameterfv( 1046 int pname, 1047 float[] params, 1048 int offset 1049 ){} 1050 glPointParameterfv( int pname, java.nio.FloatBuffer params )1051 public void glPointParameterfv( 1052 int pname, 1053 java.nio.FloatBuffer params 1054 ){} 1055 glPointParameterx( int pname, int param )1056 public void glPointParameterx( 1057 int pname, 1058 int param 1059 ){} 1060 glPointParameterxv( int pname, int[] params, int offset )1061 public void glPointParameterxv( 1062 int pname, 1063 int[] params, 1064 int offset 1065 ){} 1066 glPointParameterxv( int pname, java.nio.IntBuffer params )1067 public void glPointParameterxv( 1068 int pname, 1069 java.nio.IntBuffer params 1070 ){} 1071 glPointSizePointerOES( int type, int stride, java.nio.Buffer pointer )1072 public void glPointSizePointerOES( 1073 int type, 1074 int stride, 1075 java.nio.Buffer pointer 1076 ){} 1077 glTexCoordPointer( int size, int type, int stride, int offset )1078 public void glTexCoordPointer( 1079 int size, 1080 int type, 1081 int stride, 1082 int offset 1083 ){} 1084 glTexEnvi( int target, int pname, int param )1085 public void glTexEnvi( 1086 int target, 1087 int pname, 1088 int param 1089 ){} 1090 glTexEnviv( int target, int pname, int[] params, int offset )1091 public void glTexEnviv( 1092 int target, 1093 int pname, 1094 int[] params, 1095 int offset 1096 ){} 1097 glTexEnviv( int target, int pname, java.nio.IntBuffer params )1098 public void glTexEnviv( 1099 int target, 1100 int pname, 1101 java.nio.IntBuffer params 1102 ){} 1103 glTexParameterfv( int target, int pname, float[] params, int offset )1104 public void glTexParameterfv( 1105 int target, 1106 int pname, 1107 float[] params, 1108 int offset 1109 ){} 1110 glTexParameterfv( int target, int pname, java.nio.FloatBuffer params )1111 public void glTexParameterfv( 1112 int target, 1113 int pname, 1114 java.nio.FloatBuffer params 1115 ){} 1116 glTexParameteri( int target, int pname, int param )1117 public void glTexParameteri( 1118 int target, 1119 int pname, 1120 int param 1121 ){} 1122 glTexParameteriv( int target, int pname, int[] params, int offset )1123 public void glTexParameteriv( 1124 int target, 1125 int pname, 1126 int[] params, 1127 int offset 1128 ){} 1129 glTexParameteriv( int target, int pname, java.nio.IntBuffer params )1130 public void glTexParameteriv( 1131 int target, 1132 int pname, 1133 java.nio.IntBuffer params 1134 ){} 1135 glTexParameterxv( int target, int pname, int[] params, int offset )1136 public void glTexParameterxv( 1137 int target, 1138 int pname, 1139 int[] params, 1140 int offset 1141 ){} 1142 glTexParameterxv( int target, int pname, java.nio.IntBuffer params )1143 public void glTexParameterxv( 1144 int target, 1145 int pname, 1146 java.nio.IntBuffer params 1147 ){} 1148 glVertexPointer( int size, int type, int stride, int offset )1149 public void glVertexPointer( 1150 int size, 1151 int type, 1152 int stride, 1153 int offset 1154 ){} 1155 glCurrentPaletteMatrixOES( int matrixpaletteindex )1156 public void glCurrentPaletteMatrixOES( 1157 int matrixpaletteindex 1158 ){} 1159 glDrawTexfOES( float x, float y, float z, float width, float height )1160 public void glDrawTexfOES( 1161 float x, 1162 float y, 1163 float z, 1164 float width, 1165 float height 1166 ){} 1167 glDrawTexfvOES( float[] coords, int offset )1168 public void glDrawTexfvOES( 1169 float[] coords, 1170 int offset 1171 ){} 1172 glDrawTexfvOES( java.nio.FloatBuffer coords )1173 public void glDrawTexfvOES( 1174 java.nio.FloatBuffer coords 1175 ){} 1176 glDrawTexiOES( int x, int y, int z, int width, int height )1177 public void glDrawTexiOES( 1178 int x, 1179 int y, 1180 int z, 1181 int width, 1182 int height 1183 ){} 1184 glDrawTexivOES( int[] coords, int offset )1185 public void glDrawTexivOES( 1186 int[] coords, 1187 int offset 1188 ){} 1189 glDrawTexivOES( java.nio.IntBuffer coords )1190 public void glDrawTexivOES( 1191 java.nio.IntBuffer coords 1192 ){} 1193 glDrawTexsOES( short x, short y, short z, short width, short height )1194 public void glDrawTexsOES( 1195 short x, 1196 short y, 1197 short z, 1198 short width, 1199 short height 1200 ){} 1201 glDrawTexsvOES( short[] coords, int offset )1202 public void glDrawTexsvOES( 1203 short[] coords, 1204 int offset 1205 ){} 1206 glDrawTexsvOES( java.nio.ShortBuffer coords )1207 public void glDrawTexsvOES( 1208 java.nio.ShortBuffer coords 1209 ){} 1210 glDrawTexxOES( int x, int y, int z, int width, int height )1211 public void glDrawTexxOES( 1212 int x, 1213 int y, 1214 int z, 1215 int width, 1216 int height 1217 ){} 1218 glDrawTexxvOES( int[] coords, int offset )1219 public void glDrawTexxvOES( 1220 int[] coords, 1221 int offset 1222 ){} 1223 glDrawTexxvOES( java.nio.IntBuffer coords )1224 public void glDrawTexxvOES( 1225 java.nio.IntBuffer coords 1226 ){} 1227 glLoadPaletteFromModelViewMatrixOES( )1228 public void glLoadPaletteFromModelViewMatrixOES( 1229 ){} 1230 glMatrixIndexPointerOES( int size, int type, int stride, java.nio.Buffer pointer )1231 public void glMatrixIndexPointerOES( 1232 int size, 1233 int type, 1234 int stride, 1235 java.nio.Buffer pointer 1236 ){} 1237 glMatrixIndexPointerOES( int size, int type, int stride, int offset )1238 public void glMatrixIndexPointerOES( 1239 int size, 1240 int type, 1241 int stride, 1242 int offset 1243 ){} 1244 glWeightPointerOES( int size, int type, int stride, java.nio.Buffer pointer )1245 public void glWeightPointerOES( 1246 int size, 1247 int type, 1248 int stride, 1249 java.nio.Buffer pointer 1250 ){} 1251 glWeightPointerOES( int size, int type, int stride, int offset )1252 public void glWeightPointerOES( 1253 int size, 1254 int type, 1255 int stride, 1256 int offset 1257 ){} 1258 glBindFramebufferOES( int target, int framebuffer )1259 public void glBindFramebufferOES( 1260 int target, 1261 int framebuffer 1262 ){} 1263 glBindRenderbufferOES( int target, int renderbuffer )1264 public void glBindRenderbufferOES( 1265 int target, 1266 int renderbuffer 1267 ){} 1268 glBlendEquation( int mode )1269 public void glBlendEquation( 1270 int mode 1271 ){} 1272 glBlendEquationSeparate( int modeRGB, int modeAlpha )1273 public void glBlendEquationSeparate( 1274 int modeRGB, 1275 int modeAlpha 1276 ){} 1277 glBlendFuncSeparate( int srcRGB, int dstRGB, int srcAlpha, int dstAlpha )1278 public void glBlendFuncSeparate( 1279 int srcRGB, 1280 int dstRGB, 1281 int srcAlpha, 1282 int dstAlpha 1283 ){} 1284 glCheckFramebufferStatusOES( int target )1285 public int glCheckFramebufferStatusOES( 1286 int target 1287 ){ throw new UnsupportedOperationException(); } 1288 glDeleteFramebuffersOES( int n, int[] framebuffers, int offset )1289 public void glDeleteFramebuffersOES( 1290 int n, 1291 int[] framebuffers, 1292 int offset 1293 ){} 1294 glDeleteFramebuffersOES( int n, java.nio.IntBuffer framebuffers )1295 public void glDeleteFramebuffersOES( 1296 int n, 1297 java.nio.IntBuffer framebuffers 1298 ){} 1299 glDeleteRenderbuffersOES( int n, int[] renderbuffers, int offset )1300 public void glDeleteRenderbuffersOES( 1301 int n, 1302 int[] renderbuffers, 1303 int offset 1304 ){} 1305 glDeleteRenderbuffersOES( int n, java.nio.IntBuffer renderbuffers )1306 public void glDeleteRenderbuffersOES( 1307 int n, 1308 java.nio.IntBuffer renderbuffers 1309 ){} 1310 glFramebufferRenderbufferOES( int target, int attachment, int renderbuffertarget, int renderbuffer )1311 public void glFramebufferRenderbufferOES( 1312 int target, 1313 int attachment, 1314 int renderbuffertarget, 1315 int renderbuffer 1316 ){} 1317 glFramebufferTexture2DOES( int target, int attachment, int textarget, int texture, int level )1318 public void glFramebufferTexture2DOES( 1319 int target, 1320 int attachment, 1321 int textarget, 1322 int texture, 1323 int level 1324 ){} 1325 glGenerateMipmapOES( int target )1326 public void glGenerateMipmapOES( 1327 int target 1328 ){} 1329 glGenFramebuffersOES( int n, int[] framebuffers, int offset )1330 public void glGenFramebuffersOES( 1331 int n, 1332 int[] framebuffers, 1333 int offset 1334 ){} 1335 glGenFramebuffersOES( int n, java.nio.IntBuffer framebuffers )1336 public void glGenFramebuffersOES( 1337 int n, 1338 java.nio.IntBuffer framebuffers 1339 ){} 1340 glGenRenderbuffersOES( int n, int[] renderbuffers, int offset )1341 public void glGenRenderbuffersOES( 1342 int n, 1343 int[] renderbuffers, 1344 int offset 1345 ){} 1346 glGenRenderbuffersOES( int n, java.nio.IntBuffer renderbuffers )1347 public void glGenRenderbuffersOES( 1348 int n, 1349 java.nio.IntBuffer renderbuffers 1350 ){} 1351 glGetFramebufferAttachmentParameterivOES( int target, int attachment, int pname, int[] params, int offset )1352 public void glGetFramebufferAttachmentParameterivOES( 1353 int target, 1354 int attachment, 1355 int pname, 1356 int[] params, 1357 int offset 1358 ){} 1359 glGetFramebufferAttachmentParameterivOES( int target, int attachment, int pname, java.nio.IntBuffer params )1360 public void glGetFramebufferAttachmentParameterivOES( 1361 int target, 1362 int attachment, 1363 int pname, 1364 java.nio.IntBuffer params 1365 ){} 1366 glGetRenderbufferParameterivOES( int target, int pname, int[] params, int offset )1367 public void glGetRenderbufferParameterivOES( 1368 int target, 1369 int pname, 1370 int[] params, 1371 int offset 1372 ){} 1373 glGetRenderbufferParameterivOES( int target, int pname, java.nio.IntBuffer params )1374 public void glGetRenderbufferParameterivOES( 1375 int target, 1376 int pname, 1377 java.nio.IntBuffer params 1378 ){} 1379 glGetTexGenfv( int coord, int pname, float[] params, int offset )1380 public void glGetTexGenfv( 1381 int coord, 1382 int pname, 1383 float[] params, 1384 int offset 1385 ){} 1386 glGetTexGenfv( int coord, int pname, java.nio.FloatBuffer params )1387 public void glGetTexGenfv( 1388 int coord, 1389 int pname, 1390 java.nio.FloatBuffer params 1391 ){} 1392 glGetTexGeniv( int coord, int pname, int[] params, int offset )1393 public void glGetTexGeniv( 1394 int coord, 1395 int pname, 1396 int[] params, 1397 int offset 1398 ){} 1399 glGetTexGeniv( int coord, int pname, java.nio.IntBuffer params )1400 public void glGetTexGeniv( 1401 int coord, 1402 int pname, 1403 java.nio.IntBuffer params 1404 ){} 1405 glGetTexGenxv( int coord, int pname, int[] params, int offset )1406 public void glGetTexGenxv( 1407 int coord, 1408 int pname, 1409 int[] params, 1410 int offset 1411 ){} 1412 glGetTexGenxv( int coord, int pname, java.nio.IntBuffer params )1413 public void glGetTexGenxv( 1414 int coord, 1415 int pname, 1416 java.nio.IntBuffer params 1417 ){} 1418 glIsFramebufferOES( int framebuffer )1419 public boolean glIsFramebufferOES( 1420 int framebuffer 1421 ){ throw new UnsupportedOperationException(); } 1422 glIsRenderbufferOES( int renderbuffer )1423 public boolean glIsRenderbufferOES( 1424 int renderbuffer 1425 ){ throw new UnsupportedOperationException(); } 1426 glRenderbufferStorageOES( int target, int internalformat, int width, int height )1427 public void glRenderbufferStorageOES( 1428 int target, 1429 int internalformat, 1430 int width, 1431 int height 1432 ){} 1433 glTexGenf( int coord, int pname, float param )1434 public void glTexGenf( 1435 int coord, 1436 int pname, 1437 float param 1438 ){} 1439 glTexGenfv( int coord, int pname, float[] params, int offset )1440 public void glTexGenfv( 1441 int coord, 1442 int pname, 1443 float[] params, 1444 int offset 1445 ){} 1446 glTexGenfv( int coord, int pname, java.nio.FloatBuffer params )1447 public void glTexGenfv( 1448 int coord, 1449 int pname, 1450 java.nio.FloatBuffer params 1451 ){} 1452 glTexGeni( int coord, int pname, int param )1453 public void glTexGeni( 1454 int coord, 1455 int pname, 1456 int param 1457 ){} 1458 glTexGeniv( int coord, int pname, int[] params, int offset )1459 public void glTexGeniv( 1460 int coord, 1461 int pname, 1462 int[] params, 1463 int offset 1464 ){} 1465 glTexGeniv( int coord, int pname, java.nio.IntBuffer params )1466 public void glTexGeniv( 1467 int coord, 1468 int pname, 1469 java.nio.IntBuffer params 1470 ){} 1471 glTexGenx( int coord, int pname, int param )1472 public void glTexGenx( 1473 int coord, 1474 int pname, 1475 int param 1476 ){} 1477 glTexGenxv( int coord, int pname, int[] params, int offset )1478 public void glTexGenxv( 1479 int coord, 1480 int pname, 1481 int[] params, 1482 int offset 1483 ){} 1484 glTexGenxv( int coord, int pname, java.nio.IntBuffer params )1485 public void glTexGenxv( 1486 int coord, 1487 int pname, 1488 java.nio.IntBuffer params 1489 ){} 1490 } 1491