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