summaryrefslogtreecommitdiffstats
path: root/opengl/java/android/opengl/GLES11Ext.java
blob: 04d1b5d4768863b81f645f87b86b1160d139d988 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
/*
**
** Copyright 2009, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
**     http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and 
** limitations under the License.
*/

// This source file is automatically generated

package android.opengl;

import java.nio.Buffer;

public class GLES11Ext {
    public static final int GL_BLEND_EQUATION_RGB_OES                               = 0x8009;
    public static final int GL_BLEND_EQUATION_ALPHA_OES                             = 0x883D;
    public static final int GL_BLEND_DST_RGB_OES                                    = 0x80C8;
    public static final int GL_BLEND_SRC_RGB_OES                                    = 0x80C9;
    public static final int GL_BLEND_DST_ALPHA_OES                                  = 0x80CA;
    public static final int GL_BLEND_SRC_ALPHA_OES                                  = 0x80CB;
    public static final int GL_BLEND_EQUATION_OES                                   = 0x8009;
    public static final int GL_FUNC_ADD_OES                                         = 0x8006;
    public static final int GL_FUNC_SUBTRACT_OES                                    = 0x800A;
    public static final int GL_FUNC_REVERSE_SUBTRACT_OES                            = 0x800B;
    public static final int GL_ETC1_RGB8_OES                                        = 0x8D64;
    public static final int GL_DEPTH_COMPONENT24_OES                                = 0x81A6;
    public static final int GL_DEPTH_COMPONENT32_OES                                = 0x81A7;
    public static final int GL_TEXTURE_CROP_RECT_OES                                = 0x8B9D;
    public static final int GL_FIXED_OES                                            = 0x140C;
    public static final int GL_NONE_OES                                             = 0;
    public static final int GL_FRAMEBUFFER_OES                                      = 0x8D40;
    public static final int GL_RENDERBUFFER_OES                                     = 0x8D41;
    public static final int GL_RGBA4_OES                                            = 0x8056;
    public static final int GL_RGB5_A1_OES                                          = 0x8057;
    public static final int GL_RGB565_OES                                           = 0x8D62;
    public static final int GL_DEPTH_COMPONENT16_OES                                = 0x81A5;
    public static final int GL_RENDERBUFFER_WIDTH_OES                               = 0x8D42;
    public static final int GL_RENDERBUFFER_HEIGHT_OES                              = 0x8D43;
    public static final int GL_RENDERBUFFER_INTERNAL_FORMAT_OES                     = 0x8D44;
    public static final int GL_RENDERBUFFER_RED_SIZE_OES                            = 0x8D50;
    public static final int GL_RENDERBUFFER_GREEN_SIZE_OES                          = 0x8D51;
    public static final int GL_RENDERBUFFER_BLUE_SIZE_OES                           = 0x8D52;
    public static final int GL_RENDERBUFFER_ALPHA_SIZE_OES                          = 0x8D53;
    public static final int GL_RENDERBUFFER_DEPTH_SIZE_OES                          = 0x8D54;
    public static final int GL_RENDERBUFFER_STENCIL_SIZE_OES                        = 0x8D55;
    public static final int GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES               = 0x8CD0;
    public static final int GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES               = 0x8CD1;
    public static final int GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES             = 0x8CD2;
    public static final int GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES     = 0x8CD3;
    public static final int GL_COLOR_ATTACHMENT0_OES                                = 0x8CE0;
    public static final int GL_DEPTH_ATTACHMENT_OES                                 = 0x8D00;
    public static final int GL_STENCIL_ATTACHMENT_OES                               = 0x8D20;
    public static final int GL_FRAMEBUFFER_COMPLETE_OES                             = 0x8CD5;
    public static final int GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES                = 0x8CD6;
    public static final int GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES        = 0x8CD7;
    public static final int GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES                = 0x8CD9;
    public static final int GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES                   = 0x8CDA;
    public static final int GL_FRAMEBUFFER_UNSUPPORTED_OES                          = 0x8CDD;
    public static final int GL_FRAMEBUFFER_BINDING_OES                              = 0x8CA6;
    public static final int GL_RENDERBUFFER_BINDING_OES                             = 0x8CA7;
    public static final int GL_MAX_RENDERBUFFER_SIZE_OES                            = 0x84E8;
    public static final int GL_INVALID_FRAMEBUFFER_OPERATION_OES                    = 0x0506;
    public static final int GL_WRITE_ONLY_OES                                       = 0x88B9;
    public static final int GL_BUFFER_ACCESS_OES                                    = 0x88BB;
    public static final int GL_BUFFER_MAPPED_OES                                    = 0x88BC;
    public static final int GL_BUFFER_MAP_POINTER_OES                               = 0x88BD;
    public static final int GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES               = 0x898D;
    public static final int GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES              = 0x898E;
    public static final int GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES                 = 0x898F;
    public static final int GL_MAX_VERTEX_UNITS_OES                                 = 0x86A4;
    public static final int GL_MAX_PALETTE_MATRICES_OES                             = 0x8842;
    public static final int GL_MATRIX_PALETTE_OES                                   = 0x8840;
    public static final int GL_MATRIX_INDEX_ARRAY_OES                               = 0x8844;
    public static final int GL_WEIGHT_ARRAY_OES                                     = 0x86AD;
    public static final int GL_CURRENT_PALETTE_MATRIX_OES                           = 0x8843;
    public static final int GL_MATRIX_INDEX_ARRAY_SIZE_OES                          = 0x8846;
    public static final int GL_MATRIX_INDEX_ARRAY_TYPE_OES                          = 0x8847;
    public static final int GL_MATRIX_INDEX_ARRAY_STRIDE_OES                        = 0x8848;
    public static final int GL_MATRIX_INDEX_ARRAY_POINTER_OES                       = 0x8849;
    public static final int GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES                = 0x8B9E;
    public static final int GL_WEIGHT_ARRAY_SIZE_OES                                = 0x86AB;
    public static final int GL_WEIGHT_ARRAY_TYPE_OES                                = 0x86A9;
    public static final int GL_WEIGHT_ARRAY_STRIDE_OES                              = 0x86AA;
    public static final int GL_WEIGHT_ARRAY_POINTER_OES                             = 0x86AC;
    public static final int GL_WEIGHT_ARRAY_BUFFER_BINDING_OES                      = 0x889E;
    public static final int GL_DEPTH_STENCIL_OES                                    = 0x84F9;
    public static final int GL_UNSIGNED_INT_24_8_OES                                = 0x84FA;
    public static final int GL_DEPTH24_STENCIL8_OES                                 = 0x88F0;
    public static final int GL_RGB8_OES                                             = 0x8051;
    public static final int GL_RGBA8_OES                                            = 0x8058;
    public static final int GL_STENCIL_INDEX1_OES                                   = 0x8D46;
    public static final int GL_STENCIL_INDEX4_OES                                   = 0x8D47;
    public static final int GL_STENCIL_INDEX8_OES                                   = 0x8D48;
    public static final int GL_INCR_WRAP_OES                                        = 0x8507;
    public static final int GL_DECR_WRAP_OES                                        = 0x8508;
    public static final int GL_NORMAL_MAP_OES                                       = 0x8511;
    public static final int GL_REFLECTION_MAP_OES                                   = 0x8512;
    public static final int GL_TEXTURE_CUBE_MAP_OES                                 = 0x8513;
    public static final int GL_TEXTURE_BINDING_CUBE_MAP_OES                         = 0x8514;
    public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES                      = 0x8515;
    public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES                      = 0x8516;
    public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES                      = 0x8517;
    public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES                      = 0x8518;
    public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES                      = 0x8519;
    public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES                      = 0x851A;
    public static final int GL_MAX_CUBE_MAP_TEXTURE_SIZE_OES                        = 0x851C;
    public static final int GL_TEXTURE_GEN_MODE_OES                                 = 0x2500;
    public static final int GL_TEXTURE_GEN_STR_OES                                  = 0x8D60;
    public static final int GL_MIRRORED_REPEAT_OES                                  = 0x8370;
    public static final int GL_3DC_X_AMD                                            = 0x87F9;
    public static final int GL_3DC_XY_AMD                                           = 0x87FA;
    public static final int GL_ATC_RGB_AMD                                          = 0x8C92;
    public static final int GL_ATC_RGBA_EXPLICIT_ALPHA_AMD                          = 0x8C93;
    public static final int GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD                      = 0x87EE;
    public static final int GL_TEXTURE_MAX_ANISOTROPY_EXT                           = 0x84FE;
    public static final int GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT                       = 0x84FF;
    public static final int GL_BGRA                                                 = 0x80E1;
    public static final int GL_TEXTURE_EXTERNAL_OES                                 = 0x8D65;
    public static final int GL_SAMPLER_EXTERNAL_OES                                 = 0x8D66;
    public static final int GL_TEXTURE_BINDING_EXTERNAL_OES                         = 0x8D67;
    public static final int GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES                     = 0x8D68;

    native private static void _nativeClassInit();
    static {
        _nativeClassInit();
    }
    
    private static final int GL_BYTE = GLES10.GL_BYTE;
    private static final int GL_FIXED = GLES10.GL_FIXED;
    private static final int GL_FLOAT = GLES10.GL_FLOAT;
    private static final int GL_SHORT = GLES10.GL_SHORT;
    
    private static Buffer _matrixIndexPointerOES;
    // C function void glBlendEquationSeparateOES ( GLenum modeRGB, GLenum modeAlpha )

    public static native void glBlendEquationSeparateOES(
        int modeRGB,
        int modeAlpha
    );

    // C function void glBlendFuncSeparateOES ( GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha )

    public static native void glBlendFuncSeparateOES(
        int srcRGB,
        int dstRGB,
        int srcAlpha,
        int dstAlpha
    );

    // C function void glBlendEquationOES ( GLenum mode )

    public static native void glBlendEquationOES(
        int mode
    );

    // C function void glDrawTexsOES ( GLshort x, GLshort y, GLshort z, GLshort width, GLshort height )

    public static native void glDrawTexsOES(
        short x,
        short y,
        short z,
        short width,
        short height
    );

    // C function void glDrawTexiOES ( GLint x, GLint y, GLint z, GLint width, GLint height )

    public static native void glDrawTexiOES(
        int x,
        int y,
        int z,
        int width,
        int height
    );

    // C function void glDrawTexxOES ( GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height )

    public static native void glDrawTexxOES(
        int x,
        int y,
        int z,
        int width,
        int height
    );

    // C function void glDrawTexsvOES ( const GLshort *coords )

    public static native void glDrawTexsvOES(
        short[] coords,
        int offset
    );

    // C function void glDrawTexsvOES ( const GLshort *coords )

    public static native void glDrawTexsvOES(
        java.nio.ShortBuffer coords
    );

    // C function void glDrawTexivOES ( const GLint *coords )

    public static native void glDrawTexivOES(
        int[] coords,
        int offset
    );

    // C function void glDrawTexivOES ( const GLint *coords )

    public static native void glDrawTexivOES(
        java.nio.IntBuffer coords
    );

    // C function void glDrawTexxvOES ( const GLfixed *coords )

    public static native void glDrawTexxvOES(
        int[] coords,
        int offset
    );

    // C function void glDrawTexxvOES ( const GLfixed *coords )

    public static native void glDrawTexxvOES(
        java.nio.IntBuffer coords
    );

    // C function void glDrawTexfOES ( GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height )

    public static native void glDrawTexfOES(
        float x,
        float y,
        float z,
        float width,
        float height
    );

    // C function void glDrawTexfvOES ( const GLfloat *coords )

    public static native void glDrawTexfvOES(
        float[] coords,
        int offset
    );

    // C function void glDrawTexfvOES ( const GLfloat *coords )

    public static native void glDrawTexfvOES(
        java.nio.FloatBuffer coords
    );

    // C function void glEGLImageTargetTexture2DOES ( GLenum target, GLeglImageOES image )

    public static native void glEGLImageTargetTexture2DOES(
        int target,
        java.nio.Buffer image
    );

    // C function void glEGLImageTargetRenderbufferStorageOES ( GLenum target, GLeglImageOES image )

    public static native void glEGLImageTargetRenderbufferStorageOES(
        int target,
        java.nio.Buffer image
    );

    // C function void glAlphaFuncxOES ( GLenum func, GLclampx ref )

    public static native void glAlphaFuncxOES(
        int func,
        int ref
    );

    // C function void glClearColorxOES ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha )

    public static native void glClearColorxOES(
        int red,
        int green,
        int blue,
        int alpha
    );

    // C function void glClearDepthxOES ( GLclampx depth )

    public static native void glClearDepthxOES(
        int depth
    );

    // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation )

    public static native void glClipPlanexOES(
        int plane,
        int[] equation,
        int offset
    );

    // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation )

    public static native void glClipPlanexOES(
        int plane,
        java.nio.IntBuffer equation
    );

    // C function void glColor4xOES ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha )

    public static native void glColor4xOES(
        int red,
        int green,
        int blue,
        int alpha
    );

    // C function void glDepthRangexOES ( GLclampx zNear, GLclampx zFar )

    public static native void glDepthRangexOES(
        int zNear,
        int zFar
    );

    // C function void glFogxOES ( GLenum pname, GLfixed param )

    public static native void glFogxOES(
        int pname,
        int param
    );

    // C function void glFogxvOES ( GLenum pname, const GLfixed *params )

    public static native void glFogxvOES(
        int pname,
        int[] params,
        int offset
    );

    // C function void glFogxvOES ( GLenum pname, const GLfixed *params )

    public static native void glFogxvOES(
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )

    public static native void glFrustumxOES(
        int left,
        int right,
        int bottom,
        int top,
        int zNear,
        int zFar
    );

    // C function void glGetClipPlanexOES ( GLenum pname, GLfixed *eqn )

    public static native void glGetClipPlanexOES(
        int pname,
        int[] eqn,
        int offset
    );

    // C function void glGetClipPlanexOES ( GLenum pname, GLfixed *eqn )

    public static native void glGetClipPlanexOES(
        int pname,
        java.nio.IntBuffer eqn
    );

    // C function void glGetFixedvOES ( GLenum pname, GLfixed *params )

    public static native void glGetFixedvOES(
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetFixedvOES ( GLenum pname, GLfixed *params )

    public static native void glGetFixedvOES(
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGetLightxvOES ( GLenum light, GLenum pname, GLfixed *params )

    public static native void glGetLightxvOES(
        int light,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetLightxvOES ( GLenum light, GLenum pname, GLfixed *params )

    public static native void glGetLightxvOES(
        int light,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGetMaterialxvOES ( GLenum face, GLenum pname, GLfixed *params )

    public static native void glGetMaterialxvOES(
        int face,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetMaterialxvOES ( GLenum face, GLenum pname, GLfixed *params )

    public static native void glGetMaterialxvOES(
        int face,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGetTexEnvxvOES ( GLenum env, GLenum pname, GLfixed *params )

    public static native void glGetTexEnvxvOES(
        int env,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetTexEnvxvOES ( GLenum env, GLenum pname, GLfixed *params )

    public static native void glGetTexEnvxvOES(
        int env,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGetTexParameterxvOES ( GLenum target, GLenum pname, GLfixed *params )

    public static native void glGetTexParameterxvOES(
        int target,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetTexParameterxvOES ( GLenum target, GLenum pname, GLfixed *params )

    public static native void glGetTexParameterxvOES(
        int target,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glLightModelxOES ( GLenum pname, GLfixed param )

    public static native void glLightModelxOES(
        int pname,
        int param
    );

    // C function void glLightModelxvOES ( GLenum pname, const GLfixed *params )

    public static native void glLightModelxvOES(
        int pname,
        int[] params,
        int offset
    );

    // C function void glLightModelxvOES ( GLenum pname, const GLfixed *params )

    public static native void glLightModelxvOES(
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glLightxOES ( GLenum light, GLenum pname, GLfixed param )

    public static native void glLightxOES(
        int light,
        int pname,
        int param
    );

    // C function void glLightxvOES ( GLenum light, GLenum pname, const GLfixed *params )

    public static native void glLightxvOES(
        int light,
        int pname,
        int[] params,
        int offset
    );

    // C function void glLightxvOES ( GLenum light, GLenum pname, const GLfixed *params )

    public static native void glLightxvOES(
        int light,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glLineWidthxOES ( GLfixed width )

    public static native void glLineWidthxOES(
        int width
    );

    // C function void glLoadMatrixxOES ( const GLfixed *m )

    public static native void glLoadMatrixxOES(
        int[] m,
        int offset
    );

    // C function void glLoadMatrixxOES ( const GLfixed *m )

    public static native void glLoadMatrixxOES(
        java.nio.IntBuffer m
    );

    // C function void glMaterialxOES ( GLenum face, GLenum pname, GLfixed param )

    public static native void glMaterialxOES(
        int face,
        int pname,
        int param
    );

    // C function void glMaterialxvOES ( GLenum face, GLenum pname, const GLfixed *params )

    public static native void glMaterialxvOES(
        int face,
        int pname,
        int[] params,
        int offset
    );

    // C function void glMaterialxvOES ( GLenum face, GLenum pname, const GLfixed *params )

    public static native void glMaterialxvOES(
        int face,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glMultMatrixxOES ( const GLfixed *m )

    public static native void glMultMatrixxOES(
        int[] m,
        int offset
    );

    // C function void glMultMatrixxOES ( const GLfixed *m )

    public static native void glMultMatrixxOES(
        java.nio.IntBuffer m
    );

    // C function void glMultiTexCoord4xOES ( GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q )

    public static native void glMultiTexCoord4xOES(
        int target,
        int s,
        int t,
        int r,
        int q
    );

    // C function void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )

    public static native void glNormal3xOES(
        int nx,
        int ny,
        int nz
    );

    // C function void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )

    public static native void glOrthoxOES(
        int left,
        int right,
        int bottom,
        int top,
        int zNear,
        int zFar
    );

    // C function void glPointParameterxOES ( GLenum pname, GLfixed param )

    public static native void glPointParameterxOES(
        int pname,
        int param
    );

    // C function void glPointParameterxvOES ( GLenum pname, const GLfixed *params )

    public static native void glPointParameterxvOES(
        int pname,
        int[] params,
        int offset
    );

    // C function void glPointParameterxvOES ( GLenum pname, const GLfixed *params )

    public static native void glPointParameterxvOES(
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glPointSizexOES ( GLfixed size )

    public static native void glPointSizexOES(
        int size
    );

    // C function void glPolygonOffsetxOES ( GLfixed factor, GLfixed units )

    public static native void glPolygonOffsetxOES(
        int factor,
        int units
    );

    // C function void glRotatexOES ( GLfixed angle, GLfixed x, GLfixed y, GLfixed z )

    public static native void glRotatexOES(
        int angle,
        int x,
        int y,
        int z
    );

    // C function void glSampleCoveragexOES ( GLclampx value, GLboolean invert )

    public static native void glSampleCoveragexOES(
        int value,
        boolean invert
    );

    // C function void glScalexOES ( GLfixed x, GLfixed y, GLfixed z )

    public static native void glScalexOES(
        int x,
        int y,
        int z
    );

    // C function void glTexEnvxOES ( GLenum target, GLenum pname, GLfixed param )

    public static native void glTexEnvxOES(
        int target,
        int pname,
        int param
    );

    // C function void glTexEnvxvOES ( GLenum target, GLenum pname, const GLfixed *params )

    public static native void glTexEnvxvOES(
        int target,
        int pname,
        int[] params,
        int offset
    );

    // C function void glTexEnvxvOES ( GLenum target, GLenum pname, const GLfixed *params )

    public static native void glTexEnvxvOES(
        int target,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glTexParameterxOES ( GLenum target, GLenum pname, GLfixed param )

    public static native void glTexParameterxOES(
        int target,
        int pname,
        int param
    );

    // C function void glTexParameterxvOES ( GLenum target, GLenum pname, const GLfixed *params )

    public static native void glTexParameterxvOES(
        int target,
        int pname,
        int[] params,
        int offset
    );

    // C function void glTexParameterxvOES ( GLenum target, GLenum pname, const GLfixed *params )

    public static native void glTexParameterxvOES(
        int target,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glTranslatexOES ( GLfixed x, GLfixed y, GLfixed z )

    public static native void glTranslatexOES(
        int x,
        int y,
        int z
    );

    // C function GLboolean glIsRenderbufferOES ( GLuint renderbuffer )

    public static native boolean glIsRenderbufferOES(
        int renderbuffer
    );

    // C function void glBindRenderbufferOES ( GLenum target, GLuint renderbuffer )

    public static native void glBindRenderbufferOES(
        int target,
        int renderbuffer
    );

    // C function void glDeleteRenderbuffersOES ( GLsizei n, const GLuint *renderbuffers )

    public static native void glDeleteRenderbuffersOES(
        int n,
        int[] renderbuffers,
        int offset
    );

    // C function void glDeleteRenderbuffersOES ( GLsizei n, const GLuint *renderbuffers )

    public static native void glDeleteRenderbuffersOES(
        int n,
        java.nio.IntBuffer renderbuffers
    );

    // C function void glGenRenderbuffersOES ( GLsizei n, GLuint *renderbuffers )

    public static native void glGenRenderbuffersOES(
        int n,
        int[] renderbuffers,
        int offset
    );

    // C function void glGenRenderbuffersOES ( GLsizei n, GLuint *renderbuffers )

    public static native void glGenRenderbuffersOES(
        int n,
        java.nio.IntBuffer renderbuffers
    );

    // C function void glRenderbufferStorageOES ( GLenum target, GLenum internalformat, GLsizei width, GLsizei height )

    public static native void glRenderbufferStorageOES(
        int target,
        int internalformat,
        int width,
        int height
    );

    // C function void glGetRenderbufferParameterivOES ( GLenum target, GLenum pname, GLint *params )

    public static native void glGetRenderbufferParameterivOES(
        int target,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetRenderbufferParameterivOES ( GLenum target, GLenum pname, GLint *params )

    public static native void glGetRenderbufferParameterivOES(
        int target,
        int pname,
        java.nio.IntBuffer params
    );

    // C function GLboolean glIsFramebufferOES ( GLuint framebuffer )

    public static native boolean glIsFramebufferOES(
        int framebuffer
    );

    // C function void glBindFramebufferOES ( GLenum target, GLuint framebuffer )

    public static native void glBindFramebufferOES(
        int target,
        int framebuffer
    );

    // C function void glDeleteFramebuffersOES ( GLsizei n, const GLuint *framebuffers )

    public static native void glDeleteFramebuffersOES(
        int n,
        int[] framebuffers,
        int offset
    );

    // C function void glDeleteFramebuffersOES ( GLsizei n, const GLuint *framebuffers )

    public static native void glDeleteFramebuffersOES(
        int n,
        java.nio.IntBuffer framebuffers
    );

    // C function void glGenFramebuffersOES ( GLsizei n, GLuint *framebuffers )

    public static native void glGenFramebuffersOES(
        int n,
        int[] framebuffers,
        int offset
    );

    // C function void glGenFramebuffersOES ( GLsizei n, GLuint *framebuffers )

    public static native void glGenFramebuffersOES(
        int n,
        java.nio.IntBuffer framebuffers
    );

    // C function GLenum glCheckFramebufferStatusOES ( GLenum target )

    public static native int glCheckFramebufferStatusOES(
        int target
    );

    // C function void glFramebufferRenderbufferOES ( GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer )

    public static native void glFramebufferRenderbufferOES(
        int target,
        int attachment,
        int renderbuffertarget,
        int renderbuffer
    );

    // C function void glFramebufferTexture2DOES ( GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level )

    public static native void glFramebufferTexture2DOES(
        int target,
        int attachment,
        int textarget,
        int texture,
        int level
    );

    // C function void glGetFramebufferAttachmentParameterivOES ( GLenum target, GLenum attachment, GLenum pname, GLint *params )

    public static native void glGetFramebufferAttachmentParameterivOES(
        int target,
        int attachment,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetFramebufferAttachmentParameterivOES ( GLenum target, GLenum attachment, GLenum pname, GLint *params )

    public static native void glGetFramebufferAttachmentParameterivOES(
        int target,
        int attachment,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGenerateMipmapOES ( GLenum target )

    public static native void glGenerateMipmapOES(
        int target
    );

    // C function void glCurrentPaletteMatrixOES ( GLuint matrixpaletteindex )

    public static native void glCurrentPaletteMatrixOES(
        int matrixpaletteindex
    );

    // C function void glLoadPaletteFromModelViewMatrixOES ( void )

    public static native void glLoadPaletteFromModelViewMatrixOES(
    );

    // C function void glMatrixIndexPointerOES ( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )

    private static native void glMatrixIndexPointerOESBounds(
        int size,
        int type,
        int stride,
        java.nio.Buffer pointer,
        int remaining
    );

    public static void glMatrixIndexPointerOES(
        int size,
        int type,
        int stride,
        java.nio.Buffer pointer
    ) {
        glMatrixIndexPointerOESBounds(
            size,
            type,
            stride,
            pointer,
            pointer.remaining()
        );
        if (((size == 2) ||
             (size == 3) ||
             (size == 4)) &&
            ((type == GL_FLOAT) ||
             (type == GL_BYTE) ||
             (type == GL_SHORT) ||
             (type == GL_FIXED)) &&
            (stride >= 0)) {
            _matrixIndexPointerOES = pointer;
        }
    }

    // C function void glWeightPointerOES ( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )

    private static native void glWeightPointerOESBounds(
        int size,
        int type,
        int stride,
        java.nio.Buffer pointer,
        int remaining
    );

    public static void glWeightPointerOES(
        int size,
        int type,
        int stride,
        java.nio.Buffer pointer
    ) {
        glWeightPointerOESBounds(
            size,
            type,
            stride,
            pointer,
            pointer.remaining()
        );
    }

    // C function void glDepthRangefOES ( GLclampf zNear, GLclampf zFar )

    public static native void glDepthRangefOES(
        float zNear,
        float zFar
    );

    // C function void glFrustumfOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )

    public static native void glFrustumfOES(
        float left,
        float right,
        float bottom,
        float top,
        float zNear,
        float zFar
    );

    // C function void glOrthofOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )

    public static native void glOrthofOES(
        float left,
        float right,
        float bottom,
        float top,
        float zNear,
        float zFar
    );

    // C function void glClipPlanefOES ( GLenum plane, const GLfloat *equation )

    public static native void glClipPlanefOES(
        int plane,
        float[] equation,
        int offset
    );

    // C function void glClipPlanefOES ( GLenum plane, const GLfloat *equation )

    public static native void glClipPlanefOES(
        int plane,
        java.nio.FloatBuffer equation
    );

    // C function void glGetClipPlanefOES ( GLenum pname, GLfloat *eqn )

    public static native void glGetClipPlanefOES(
        int pname,
        float[] eqn,
        int offset
    );

    // C function void glGetClipPlanefOES ( GLenum pname, GLfloat *eqn )

    public static native void glGetClipPlanefOES(
        int pname,
        java.nio.FloatBuffer eqn
    );

    // C function void glClearDepthfOES ( GLclampf depth )

    public static native void glClearDepthfOES(
        float depth
    );

    // C function void glTexGenfOES ( GLenum coord, GLenum pname, GLfloat param )

    public static native void glTexGenfOES(
        int coord,
        int pname,
        float param
    );

    // C function void glTexGenfvOES ( GLenum coord, GLenum pname, const GLfloat *params )

    public static native void glTexGenfvOES(
        int coord,
        int pname,
        float[] params,
        int offset
    );

    // C function void glTexGenfvOES ( GLenum coord, GLenum pname, const GLfloat *params )

    public static native void glTexGenfvOES(
        int coord,
        int pname,
        java.nio.FloatBuffer params
    );

    // C function void glTexGeniOES ( GLenum coord, GLenum pname, GLint param )

    public static native void glTexGeniOES(
        int coord,
        int pname,
        int param
    );

    // C function void glTexGenivOES ( GLenum coord, GLenum pname, const GLint *params )

    public static native void glTexGenivOES(
        int coord,
        int pname,
        int[] params,
        int offset
    );

    // C function void glTexGenivOES ( GLenum coord, GLenum pname, const GLint *params )

    public static native void glTexGenivOES(
        int coord,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glTexGenxOES ( GLenum coord, GLenum pname, GLfixed param )

    public static native void glTexGenxOES(
        int coord,
        int pname,
        int param
    );

    // C function void glTexGenxvOES ( GLenum coord, GLenum pname, const GLfixed *params )

    public static native void glTexGenxvOES(
        int coord,
        int pname,
        int[] params,
        int offset
    );

    // C function void glTexGenxvOES ( GLenum coord, GLenum pname, const GLfixed *params )

    public static native void glTexGenxvOES(
        int coord,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGetTexGenfvOES ( GLenum coord, GLenum pname, GLfloat *params )

    public static native void glGetTexGenfvOES(
        int coord,
        int pname,
        float[] params,
        int offset
    );

    // C function void glGetTexGenfvOES ( GLenum coord, GLenum pname, GLfloat *params )

    public static native void glGetTexGenfvOES(
        int coord,
        int pname,
        java.nio.FloatBuffer params
    );

    // C function void glGetTexGenivOES ( GLenum coord, GLenum pname, GLint *params )

    public static native void glGetTexGenivOES(
        int coord,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetTexGenivOES ( GLenum coord, GLenum pname, GLint *params )

    public static native void glGetTexGenivOES(
        int coord,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGetTexGenxvOES ( GLenum coord, GLenum pname, GLfixed *params )

    public static native void glGetTexGenxvOES(
        int coord,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetTexGenxvOES ( GLenum coord, GLenum pname, GLfixed *params )

    public static native void glGetTexGenxvOES(
        int coord,
        int pname,
        java.nio.IntBuffer params
    );

}