summaryrefslogtreecommitdiffstats
path: root/gfx/angle/checkout/src/libANGLE/validationGL1.cpp
blob: e1ff3289d4c3da6f2e65488b2da6f03a37cbbd19 (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
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
//
// Copyright 2019 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

// validationGL1.cpp: Validation functions for OpenGL 1.0 entry point parameters

#include "libANGLE/validationGL1_autogen.h"

namespace gl
{

bool ValidateAccum(Context *context, GLenum op, GLfloat value)
{
    return true;
}

bool ValidateBegin(Context *context, GLenum mode)
{
    return true;
}

bool ValidateBitmap(Context *context,
                    GLsizei width,
                    GLsizei height,
                    GLfloat xorig,
                    GLfloat yorig,
                    GLfloat xmove,
                    GLfloat ymove,
                    const GLubyte *bitmap)
{
    return true;
}

bool ValidateCallList(Context *context, GLuint list)
{
    return true;
}

bool ValidateCallLists(Context *context, GLsizei n, GLenum type, const void *lists)
{
    return true;
}

bool ValidateClearAccum(Context *context, GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
{
    return true;
}

bool ValidateClearDepth(Context *context, GLdouble depth)
{
    return true;
}

bool ValidateClearIndex(Context *context, GLfloat c)
{
    return true;
}

bool ValidateClipPlane(Context *context, GLenum plane, const GLdouble *equation)
{
    return true;
}

bool ValidateColor3b(Context *context, GLbyte red, GLbyte green, GLbyte blue)
{
    return true;
}

bool ValidateColor3bv(Context *context, const GLbyte *v)
{
    return true;
}

bool ValidateColor3d(Context *context, GLdouble red, GLdouble green, GLdouble blue)
{
    return true;
}

bool ValidateColor3dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateColor3f(Context *context, GLfloat red, GLfloat green, GLfloat blue)
{
    return true;
}

bool ValidateColor3fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateColor3i(Context *context, GLint red, GLint green, GLint blue)
{
    return true;
}

bool ValidateColor3iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateColor3s(Context *context, GLshort red, GLshort green, GLshort blue)
{
    return true;
}

bool ValidateColor3sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateColor3ub(Context *context, GLubyte red, GLubyte green, GLubyte blue)
{
    return true;
}

bool ValidateColor3ubv(Context *context, const GLubyte *v)
{
    return true;
}

bool ValidateColor3ui(Context *context, GLuint red, GLuint green, GLuint blue)
{
    return true;
}

bool ValidateColor3uiv(Context *context, const GLuint *v)
{
    return true;
}

bool ValidateColor3us(Context *context, GLushort red, GLushort green, GLushort blue)
{
    return true;
}

bool ValidateColor3usv(Context *context, const GLushort *v)
{
    return true;
}

bool ValidateColor4b(Context *context, GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha)
{
    return true;
}

bool ValidateColor4bv(Context *context, const GLbyte *v)
{
    return true;
}

bool ValidateColor4d(Context *context, GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha)
{
    return true;
}

bool ValidateColor4dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateColor4fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateColor4i(Context *context, GLint red, GLint green, GLint blue, GLint alpha)
{
    return true;
}

bool ValidateColor4iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateColor4s(Context *context, GLshort red, GLshort green, GLshort blue, GLshort alpha)
{
    return true;
}

bool ValidateColor4sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateColor4ubv(Context *context, const GLubyte *v)
{
    return true;
}

bool ValidateColor4ui(Context *context, GLuint red, GLuint green, GLuint blue, GLuint alpha)
{
    return true;
}

bool ValidateColor4uiv(Context *context, const GLuint *v)
{
    return true;
}

bool ValidateColor4us(Context *context, GLushort red, GLushort green, GLushort blue, GLushort alpha)
{
    return true;
}

bool ValidateColor4usv(Context *context, const GLushort *v)
{
    return true;
}

bool ValidateColorMaterial(Context *context, GLenum face, GLenum mode)
{
    return true;
}

bool ValidateCopyPixels(Context *context,
                        GLint x,
                        GLint y,
                        GLsizei width,
                        GLsizei height,
                        GLenum type)
{
    return true;
}

bool ValidateDeleteLists(Context *context, GLuint list, GLsizei range)
{
    return true;
}

bool ValidateDepthRange(Context *context, GLdouble n, GLdouble f)
{
    return true;
}

bool ValidateDrawBuffer(Context *context, GLenum buf)
{
    return true;
}

bool ValidateDrawPixels(Context *context,
                        GLsizei width,
                        GLsizei height,
                        GLenum format,
                        GLenum type,
                        const void *pixels)
{
    return true;
}

bool ValidateEdgeFlag(Context *context, GLboolean flag)
{
    return true;
}

bool ValidateEdgeFlagv(Context *context, const GLboolean *flag)
{
    return true;
}

bool ValidateEnd(Context *context)
{
    return true;
}

bool ValidateEndList(Context *context)
{
    return true;
}

bool ValidateEvalCoord1d(Context *context, GLdouble u)
{
    return true;
}

bool ValidateEvalCoord1dv(Context *context, const GLdouble *u)
{
    return true;
}

bool ValidateEvalCoord1f(Context *context, GLfloat u)
{
    return true;
}

bool ValidateEvalCoord1fv(Context *context, const GLfloat *u)
{
    return true;
}

bool ValidateEvalCoord2d(Context *context, GLdouble u, GLdouble v)
{
    return true;
}

bool ValidateEvalCoord2dv(Context *context, const GLdouble *u)
{
    return true;
}

bool ValidateEvalCoord2f(Context *context, GLfloat u, GLfloat v)
{
    return true;
}

bool ValidateEvalCoord2fv(Context *context, const GLfloat *u)
{
    return true;
}

bool ValidateEvalMesh1(Context *context, GLenum mode, GLint i1, GLint i2)
{
    return true;
}

bool ValidateEvalMesh2(Context *context, GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2)
{
    return true;
}

bool ValidateEvalPoint1(Context *context, GLint i)
{
    return true;
}

bool ValidateEvalPoint2(Context *context, GLint i, GLint j)
{
    return true;
}

bool ValidateFeedbackBuffer(Context *context, GLsizei size, GLenum type, GLfloat *buffer)
{
    return true;
}

bool ValidateFogi(Context *context, GLenum pname, GLint param)
{
    return true;
}

bool ValidateFogiv(Context *context, GLenum pname, const GLint *params)
{
    return true;
}

bool ValidateFrustum(Context *context,
                     GLdouble left,
                     GLdouble right,
                     GLdouble bottom,
                     GLdouble top,
                     GLdouble zNear,
                     GLdouble zFar)
{
    return true;
}

bool ValidateGenLists(Context *context, GLsizei range)
{
    return true;
}

bool ValidateGetClipPlane(Context *context, GLenum plane, GLdouble *equation)
{
    return true;
}

bool ValidateGetDoublev(Context *context, GLenum pname, GLdouble *data)
{
    return true;
}

bool ValidateGetLightiv(Context *context, GLenum light, GLenum pname, GLint *params)
{
    return true;
}

bool ValidateGetMapdv(Context *context, GLenum target, GLenum query, GLdouble *v)
{
    return true;
}

bool ValidateGetMapfv(Context *context, GLenum target, GLenum query, GLfloat *v)
{
    return true;
}

bool ValidateGetMapiv(Context *context, GLenum target, GLenum query, GLint *v)
{
    return true;
}

bool ValidateGetMaterialiv(Context *context, GLenum face, GLenum pname, GLint *params)
{
    return true;
}

bool ValidateGetPixelMapfv(Context *context, GLenum map, GLfloat *values)
{
    return true;
}

bool ValidateGetPixelMapuiv(Context *context, GLenum map, GLuint *values)
{
    return true;
}

bool ValidateGetPixelMapusv(Context *context, GLenum map, GLushort *values)
{
    return true;
}

bool ValidateGetPolygonStipple(Context *context, GLubyte *mask)
{
    return true;
}

bool ValidateGetTexGendv(Context *context, GLenum coord, GLenum pname, GLdouble *params)
{
    return true;
}

bool ValidateGetTexGenfv(Context *context, GLenum coord, GLenum pname, GLfloat *params)
{
    return true;
}

bool ValidateGetTexGeniv(Context *context, GLenum coord, GLenum pname, GLint *params)
{
    return true;
}

bool ValidateGetTexImage(Context *context,
                         GLenum target,
                         GLint level,
                         GLenum format,
                         GLenum type,
                         void *pixels)
{
    return true;
}

bool ValidateIndexMask(Context *context, GLuint mask)
{
    return true;
}

bool ValidateIndexd(Context *context, GLdouble c)
{
    return true;
}

bool ValidateIndexdv(Context *context, const GLdouble *c)
{
    return true;
}

bool ValidateIndexf(Context *context, GLfloat c)
{
    return true;
}

bool ValidateIndexfv(Context *context, const GLfloat *c)
{
    return true;
}

bool ValidateIndexi(Context *context, GLint c)
{
    return true;
}

bool ValidateIndexiv(Context *context, const GLint *c)
{
    return true;
}

bool ValidateIndexs(Context *context, GLshort c)
{
    return true;
}

bool ValidateIndexsv(Context *context, const GLshort *c)
{
    return true;
}

bool ValidateInitNames(Context *context)
{
    return true;
}

bool ValidateIsList(Context *context, GLuint list)
{
    return true;
}

bool ValidateLightModeli(Context *context, GLenum pname, GLint param)
{
    return true;
}

bool ValidateLightModeliv(Context *context, GLenum pname, const GLint *params)
{
    return true;
}

bool ValidateLighti(Context *context, GLenum light, GLenum pname, GLint param)
{
    return true;
}

bool ValidateLightiv(Context *context, GLenum light, GLenum pname, const GLint *params)
{
    return true;
}

bool ValidateLineStipple(Context *context, GLint factor, GLushort pattern)
{
    return true;
}

bool ValidateListBase(Context *context, GLuint base)
{
    return true;
}

bool ValidateLoadMatrixd(Context *context, const GLdouble *m)
{
    return true;
}

bool ValidateLoadName(Context *context, GLuint name)
{
    return true;
}

bool ValidateMap1d(Context *context,
                   GLenum target,
                   GLdouble u1,
                   GLdouble u2,
                   GLint stride,
                   GLint order,
                   const GLdouble *points)
{
    return true;
}

bool ValidateMap1f(Context *context,
                   GLenum target,
                   GLfloat u1,
                   GLfloat u2,
                   GLint stride,
                   GLint order,
                   const GLfloat *points)
{
    return true;
}

bool ValidateMap2d(Context *context,
                   GLenum target,
                   GLdouble u1,
                   GLdouble u2,
                   GLint ustride,
                   GLint uorder,
                   GLdouble v1,
                   GLdouble v2,
                   GLint vstride,
                   GLint vorder,
                   const GLdouble *points)
{
    return true;
}

bool ValidateMap2f(Context *context,
                   GLenum target,
                   GLfloat u1,
                   GLfloat u2,
                   GLint ustride,
                   GLint uorder,
                   GLfloat v1,
                   GLfloat v2,
                   GLint vstride,
                   GLint vorder,
                   const GLfloat *points)
{
    return true;
}

bool ValidateMapGrid1d(Context *context, GLint un, GLdouble u1, GLdouble u2)
{
    return true;
}

bool ValidateMapGrid1f(Context *context, GLint un, GLfloat u1, GLfloat u2)
{
    return true;
}

bool ValidateMapGrid2d(Context *context,
                       GLint un,
                       GLdouble u1,
                       GLdouble u2,
                       GLint vn,
                       GLdouble v1,
                       GLdouble v2)
{
    return true;
}

bool ValidateMapGrid2f(Context *context,
                       GLint un,
                       GLfloat u1,
                       GLfloat u2,
                       GLint vn,
                       GLfloat v1,
                       GLfloat v2)
{
    return true;
}

bool ValidateMateriali(Context *context, GLenum face, GLenum pname, GLint param)
{
    return true;
}

bool ValidateMaterialiv(Context *context, GLenum face, GLenum pname, const GLint *params)
{
    return true;
}

bool ValidateMultMatrixd(Context *context, const GLdouble *m)
{
    return true;
}

bool ValidateNewList(Context *context, GLuint list, GLenum mode)
{
    return true;
}

bool ValidateNormal3b(Context *context, GLbyte nx, GLbyte ny, GLbyte nz)
{
    return true;
}

bool ValidateNormal3bv(Context *context, const GLbyte *v)
{
    return true;
}

bool ValidateNormal3d(Context *context, GLdouble nx, GLdouble ny, GLdouble nz)
{
    return true;
}

bool ValidateNormal3dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateNormal3fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateNormal3i(Context *context, GLint nx, GLint ny, GLint nz)
{
    return true;
}

bool ValidateNormal3iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateNormal3s(Context *context, GLshort nx, GLshort ny, GLshort nz)
{
    return true;
}

bool ValidateNormal3sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateOrtho(Context *context,
                   GLdouble left,
                   GLdouble right,
                   GLdouble bottom,
                   GLdouble top,
                   GLdouble zNear,
                   GLdouble zFar)
{
    return true;
}

bool ValidatePassThrough(Context *context, GLfloat token)
{
    return true;
}

bool ValidatePixelMapfv(Context *context, GLenum map, GLsizei mapsize, const GLfloat *values)
{
    return true;
}

bool ValidatePixelMapuiv(Context *context, GLenum map, GLsizei mapsize, const GLuint *values)
{
    return true;
}

bool ValidatePixelMapusv(Context *context, GLenum map, GLsizei mapsize, const GLushort *values)
{
    return true;
}

bool ValidatePixelStoref(Context *context, GLenum pname, GLfloat param)
{
    return true;
}

bool ValidatePixelTransferf(Context *context, GLenum pname, GLfloat param)
{
    return true;
}

bool ValidatePixelTransferi(Context *context, GLenum pname, GLint param)
{
    return true;
}

bool ValidatePixelZoom(Context *context, GLfloat xfactor, GLfloat yfactor)
{
    return true;
}

bool ValidatePolygonMode(Context *context, GLenum face, GLenum mode)
{
    return true;
}

bool ValidatePolygonStipple(Context *context, const GLubyte *mask)
{
    return true;
}

bool ValidatePopAttrib(Context *context)
{
    return true;
}

bool ValidatePopName(Context *context)
{
    return true;
}

bool ValidatePushAttrib(Context *context, GLbitfield mask)
{
    return true;
}

bool ValidatePushName(Context *context, GLuint name)
{
    return true;
}

bool ValidateRasterPos2d(Context *context, GLdouble x, GLdouble y)
{
    return true;
}

bool ValidateRasterPos2dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateRasterPos2f(Context *context, GLfloat x, GLfloat y)
{
    return true;
}

bool ValidateRasterPos2fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateRasterPos2i(Context *context, GLint x, GLint y)
{
    return true;
}

bool ValidateRasterPos2iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateRasterPos2s(Context *context, GLshort x, GLshort y)
{
    return true;
}

bool ValidateRasterPos2sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateRasterPos3d(Context *context, GLdouble x, GLdouble y, GLdouble z)
{
    return true;
}

bool ValidateRasterPos3dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateRasterPos3f(Context *context, GLfloat x, GLfloat y, GLfloat z)
{
    return true;
}

bool ValidateRasterPos3fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateRasterPos3i(Context *context, GLint x, GLint y, GLint z)
{
    return true;
}

bool ValidateRasterPos3iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateRasterPos3s(Context *context, GLshort x, GLshort y, GLshort z)
{
    return true;
}

bool ValidateRasterPos3sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateRasterPos4d(Context *context, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
{
    return true;
}

bool ValidateRasterPos4dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateRasterPos4f(Context *context, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
{
    return true;
}

bool ValidateRasterPos4fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateRasterPos4i(Context *context, GLint x, GLint y, GLint z, GLint w)
{
    return true;
}

bool ValidateRasterPos4iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateRasterPos4s(Context *context, GLshort x, GLshort y, GLshort z, GLshort w)
{
    return true;
}

bool ValidateRasterPos4sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateRectd(Context *context, GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2)
{
    return true;
}

bool ValidateRectdv(Context *context, const GLdouble *v1, const GLdouble *v2)
{
    return true;
}

bool ValidateRectf(Context *context, GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2)
{
    return true;
}

bool ValidateRectfv(Context *context, const GLfloat *v1, const GLfloat *v2)
{
    return true;
}

bool ValidateRecti(Context *context, GLint x1, GLint y1, GLint x2, GLint y2)
{
    return true;
}

bool ValidateRectiv(Context *context, const GLint *v1, const GLint *v2)
{
    return true;
}

bool ValidateRects(Context *context, GLshort x1, GLshort y1, GLshort x2, GLshort y2)
{
    return true;
}

bool ValidateRectsv(Context *context, const GLshort *v1, const GLshort *v2)
{
    return true;
}

bool ValidateRenderMode(Context *context, GLenum mode)
{
    return true;
}

bool ValidateRotated(Context *context, GLdouble angle, GLdouble x, GLdouble y, GLdouble z)
{
    return true;
}

bool ValidateScaled(Context *context, GLdouble x, GLdouble y, GLdouble z)
{
    return true;
}

bool ValidateSelectBuffer(Context *context, GLsizei size, GLuint *buffer)
{
    return true;
}

bool ValidateTexCoord1d(Context *context, GLdouble s)
{
    return true;
}

bool ValidateTexCoord1dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateTexCoord1f(Context *context, GLfloat s)
{
    return true;
}

bool ValidateTexCoord1fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateTexCoord1i(Context *context, GLint s)
{
    return true;
}

bool ValidateTexCoord1iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateTexCoord1s(Context *context, GLshort s)
{
    return true;
}

bool ValidateTexCoord1sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateTexCoord2d(Context *context, GLdouble s, GLdouble t)
{
    return true;
}

bool ValidateTexCoord2dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateTexCoord2f(Context *context, GLfloat s, GLfloat t)
{
    return true;
}

bool ValidateTexCoord2fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateTexCoord2i(Context *context, GLint s, GLint t)
{
    return true;
}

bool ValidateTexCoord2iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateTexCoord2s(Context *context, GLshort s, GLshort t)
{
    return true;
}

bool ValidateTexCoord2sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateTexCoord3d(Context *context, GLdouble s, GLdouble t, GLdouble r)
{
    return true;
}

bool ValidateTexCoord3dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateTexCoord3f(Context *context, GLfloat s, GLfloat t, GLfloat r)
{
    return true;
}

bool ValidateTexCoord3fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateTexCoord3i(Context *context, GLint s, GLint t, GLint r)
{
    return true;
}

bool ValidateTexCoord3iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateTexCoord3s(Context *context, GLshort s, GLshort t, GLshort r)
{
    return true;
}

bool ValidateTexCoord3sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateTexCoord4d(Context *context, GLdouble s, GLdouble t, GLdouble r, GLdouble q)
{
    return true;
}

bool ValidateTexCoord4dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateTexCoord4f(Context *context, GLfloat s, GLfloat t, GLfloat r, GLfloat q)
{
    return true;
}

bool ValidateTexCoord4fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateTexCoord4i(Context *context, GLint s, GLint t, GLint r, GLint q)
{
    return true;
}

bool ValidateTexCoord4iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateTexCoord4s(Context *context, GLshort s, GLshort t, GLshort r, GLshort q)
{
    return true;
}

bool ValidateTexCoord4sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateTexGend(Context *context, GLenum coord, GLenum pname, GLdouble param)
{
    return true;
}

bool ValidateTexGendv(Context *context, GLenum coord, GLenum pname, const GLdouble *params)
{
    return true;
}

bool ValidateTexGenf(Context *context, GLenum coord, GLenum pname, GLfloat param)
{
    return true;
}
bool ValidateTexGenfv(Context *context, GLenum coord, GLenum pname, const GLfloat *params)
{
    return true;
}

bool ValidateTexGeni(Context *context, GLenum coord, GLenum pname, GLint param)
{
    return true;
}

bool ValidateTexGeniv(Context *context, GLenum coord, GLenum pname, const GLint *params)
{
    return true;
}

bool ValidateTexImage1D(Context *context,
                        GLenum target,
                        GLint level,
                        GLint internalformat,
                        GLsizei width,
                        GLint border,
                        GLenum format,
                        GLenum type,
                        const void *pixels)
{
    return true;
}

bool ValidateTranslated(Context *context, GLdouble x, GLdouble y, GLdouble z)
{
    return true;
}

bool ValidateVertex2d(Context *context, GLdouble x, GLdouble y)
{
    return true;
}

bool ValidateVertex2dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateVertex2f(Context *context, GLfloat x, GLfloat y)
{
    return true;
}

bool ValidateVertex2fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateVertex2i(Context *context, GLint x, GLint y)
{
    return true;
}

bool ValidateVertex2iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateVertex2s(Context *context, GLshort x, GLshort y)
{
    return true;
}

bool ValidateVertex2sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateVertex3d(Context *context, GLdouble x, GLdouble y, GLdouble z)
{
    return true;
}

bool ValidateVertex3dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateVertex3f(Context *context, GLfloat x, GLfloat y, GLfloat z)
{
    return true;
}

bool ValidateVertex3fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateVertex3i(Context *context, GLint x, GLint y, GLint z)
{
    return true;
}

bool ValidateVertex3iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateVertex3s(Context *context, GLshort x, GLshort y, GLshort z)
{
    return true;
}

bool ValidateVertex3sv(Context *context, const GLshort *v)
{
    return true;
}

bool ValidateVertex4d(Context *context, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
{
    return true;
}

bool ValidateVertex4dv(Context *context, const GLdouble *v)
{
    return true;
}

bool ValidateVertex4f(Context *context, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
{
    return true;
}

bool ValidateVertex4fv(Context *context, const GLfloat *v)
{
    return true;
}

bool ValidateVertex4i(Context *context, GLint x, GLint y, GLint z, GLint w)
{
    return true;
}

bool ValidateVertex4iv(Context *context, const GLint *v)
{
    return true;
}

bool ValidateVertex4s(Context *context, GLshort x, GLshort y, GLshort z, GLshort w)
{
    return true;
}

bool ValidateVertex4sv(Context *context, const GLshort *v)
{
    return true;
}

}  // namespace gl