Hash :
2aa5286d
Author :
Date :
2021-10-12T17:05:48
Add Entry Point name to validation errors Add gl/gles entry point names to validation error messages some special cases: 1. Debug::insertPerfWarning() is invoked from multiple places, such as TextureVK, ContextVK, adding an extra entryPoint function parameter in these files will need extra investigations. I am passing the entryPoint name GLInvalid as a temp workaround. 2.ErrorSet::hangleError() is invoked from multiple Context*.cpp files, adding an extra entryPoint function parameter in these files will need extra investigations. I am passing the entryPoint name GLInvalid as a temp workaround. 3. Debug::insertMessage(), Debug::popGroup(), Debug::pushGroup() can be invoked from more than one GL entry points, e.g. Debug::pushGroup() can be invoked from either GL_APIENTRY GL_PushDebugGroup() or GL_APIENTRY GL_PushDebugGroupKHR() through context->pushDebugGroup() call. Right now the same entry point name glPushDebugGroup will be printed out in the error message for both cases. However, we should be able to tell the actual entry point by checking which version: KHR version or core version the application uses, and this helps avoid the confusion. For now we will let the same entry point name getting printed for both cases. Bug: angleproject:6523 Change-Id: I64a5463d9168d8444d376d1f428c3b3d894f2ea9 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3215063 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org> Commit-Queue: Yuxin Hu <yuxinhu@google.com>
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
// GENERATED FILE - DO NOT EDIT.
// Generated by generate_entry_points.py using data from gl.xml.
//
// Copyright 2020 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_autogen.h:
// Validation functions for the OpenGL Desktop GL 1.x entry points.
#ifndef LIBANGLE_VALIDATION_GL1_AUTOGEN_H_
#define LIBANGLE_VALIDATION_GL1_AUTOGEN_H_
#include "common/PackedEnums.h"
#include "common/entry_points_enum_autogen.h"
namespace gl
{
class Context;
// GL 1.0
bool ValidateAccum(const Context *context, angle::EntryPoint entryPoint, GLenum op, GLfloat value);
bool ValidateBegin(const Context *context, angle::EntryPoint entryPoint, GLenum mode);
bool ValidateBitmap(const Context *context,
angle::EntryPoint entryPoint,
GLsizei width,
GLsizei height,
GLfloat xorig,
GLfloat yorig,
GLfloat xmove,
GLfloat ymove,
const GLubyte *bitmap);
bool ValidateCallList(const Context *context, angle::EntryPoint entryPoint, GLuint list);
bool ValidateCallLists(const Context *context,
angle::EntryPoint entryPoint,
GLsizei n,
GLenum type,
const void *lists);
bool ValidateClearAccum(const Context *context,
angle::EntryPoint entryPoint,
GLfloat red,
GLfloat green,
GLfloat blue,
GLfloat alpha);
bool ValidateClearDepth(const Context *context, angle::EntryPoint entryPoint, GLdouble depth);
bool ValidateClearIndex(const Context *context, angle::EntryPoint entryPoint, GLfloat c);
bool ValidateClipPlane(const Context *context,
angle::EntryPoint entryPoint,
GLenum plane,
const GLdouble *equation);
bool ValidateColor3b(const Context *context,
angle::EntryPoint entryPoint,
GLbyte red,
GLbyte green,
GLbyte blue);
bool ValidateColor3bv(const Context *context, angle::EntryPoint entryPoint, const GLbyte *v);
bool ValidateColor3d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble red,
GLdouble green,
GLdouble blue);
bool ValidateColor3dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateColor3f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat red,
GLfloat green,
GLfloat blue);
bool ValidateColor3fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateColor3i(const Context *context,
angle::EntryPoint entryPoint,
GLint red,
GLint green,
GLint blue);
bool ValidateColor3iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateColor3s(const Context *context,
angle::EntryPoint entryPoint,
GLshort red,
GLshort green,
GLshort blue);
bool ValidateColor3sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateColor3ub(const Context *context,
angle::EntryPoint entryPoint,
GLubyte red,
GLubyte green,
GLubyte blue);
bool ValidateColor3ubv(const Context *context, angle::EntryPoint entryPoint, const GLubyte *v);
bool ValidateColor3ui(const Context *context,
angle::EntryPoint entryPoint,
GLuint red,
GLuint green,
GLuint blue);
bool ValidateColor3uiv(const Context *context, angle::EntryPoint entryPoint, const GLuint *v);
bool ValidateColor3us(const Context *context,
angle::EntryPoint entryPoint,
GLushort red,
GLushort green,
GLushort blue);
bool ValidateColor3usv(const Context *context, angle::EntryPoint entryPoint, const GLushort *v);
bool ValidateColor4b(const Context *context,
angle::EntryPoint entryPoint,
GLbyte red,
GLbyte green,
GLbyte blue,
GLbyte alpha);
bool ValidateColor4bv(const Context *context, angle::EntryPoint entryPoint, const GLbyte *v);
bool ValidateColor4d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble red,
GLdouble green,
GLdouble blue,
GLdouble alpha);
bool ValidateColor4dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateColor4fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateColor4i(const Context *context,
angle::EntryPoint entryPoint,
GLint red,
GLint green,
GLint blue,
GLint alpha);
bool ValidateColor4iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateColor4s(const Context *context,
angle::EntryPoint entryPoint,
GLshort red,
GLshort green,
GLshort blue,
GLshort alpha);
bool ValidateColor4sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateColor4ubv(const Context *context, angle::EntryPoint entryPoint, const GLubyte *v);
bool ValidateColor4ui(const Context *context,
angle::EntryPoint entryPoint,
GLuint red,
GLuint green,
GLuint blue,
GLuint alpha);
bool ValidateColor4uiv(const Context *context, angle::EntryPoint entryPoint, const GLuint *v);
bool ValidateColor4us(const Context *context,
angle::EntryPoint entryPoint,
GLushort red,
GLushort green,
GLushort blue,
GLushort alpha);
bool ValidateColor4usv(const Context *context, angle::EntryPoint entryPoint, const GLushort *v);
bool ValidateColorMaterial(const Context *context,
angle::EntryPoint entryPoint,
GLenum face,
GLenum mode);
bool ValidateCopyPixels(const Context *context,
angle::EntryPoint entryPoint,
GLint x,
GLint y,
GLsizei width,
GLsizei height,
GLenum type);
bool ValidateDeleteLists(const Context *context,
angle::EntryPoint entryPoint,
GLuint list,
GLsizei range);
bool ValidateDepthRange(const Context *context,
angle::EntryPoint entryPoint,
GLdouble n,
GLdouble f);
bool ValidateDrawBuffer(const Context *context, angle::EntryPoint entryPoint, GLenum buf);
bool ValidateDrawPixels(const Context *context,
angle::EntryPoint entryPoint,
GLsizei width,
GLsizei height,
GLenum format,
GLenum type,
const void *pixels);
bool ValidateEdgeFlag(const Context *context, angle::EntryPoint entryPoint, GLboolean flag);
bool ValidateEdgeFlagv(const Context *context, angle::EntryPoint entryPoint, const GLboolean *flag);
bool ValidateEnd(const Context *context, angle::EntryPoint entryPoint);
bool ValidateEndList(const Context *context, angle::EntryPoint entryPoint);
bool ValidateEvalCoord1d(const Context *context, angle::EntryPoint entryPoint, GLdouble u);
bool ValidateEvalCoord1dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *u);
bool ValidateEvalCoord1f(const Context *context, angle::EntryPoint entryPoint, GLfloat u);
bool ValidateEvalCoord1fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *u);
bool ValidateEvalCoord2d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble u,
GLdouble v);
bool ValidateEvalCoord2dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *u);
bool ValidateEvalCoord2f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat u,
GLfloat v);
bool ValidateEvalCoord2fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *u);
bool ValidateEvalMesh1(const Context *context,
angle::EntryPoint entryPoint,
GLenum mode,
GLint i1,
GLint i2);
bool ValidateEvalMesh2(const Context *context,
angle::EntryPoint entryPoint,
GLenum mode,
GLint i1,
GLint i2,
GLint j1,
GLint j2);
bool ValidateEvalPoint1(const Context *context, angle::EntryPoint entryPoint, GLint i);
bool ValidateEvalPoint2(const Context *context, angle::EntryPoint entryPoint, GLint i, GLint j);
bool ValidateFeedbackBuffer(const Context *context,
angle::EntryPoint entryPoint,
GLsizei size,
GLenum type,
const GLfloat *buffer);
bool ValidateFogi(const Context *context, angle::EntryPoint entryPoint, GLenum pname, GLint param);
bool ValidateFogiv(const Context *context,
angle::EntryPoint entryPoint,
GLenum pname,
const GLint *params);
bool ValidateFrustum(const Context *context,
angle::EntryPoint entryPoint,
GLdouble left,
GLdouble right,
GLdouble bottom,
GLdouble top,
GLdouble zNear,
GLdouble zFar);
bool ValidateGenLists(const Context *context, angle::EntryPoint entryPoint, GLsizei range);
bool ValidateGetClipPlane(const Context *context,
angle::EntryPoint entryPoint,
GLenum plane,
const GLdouble *equation);
bool ValidateGetDoublev(const Context *context,
angle::EntryPoint entryPoint,
GLenum pname,
const GLdouble *data);
bool ValidateGetLightiv(const Context *context,
angle::EntryPoint entryPoint,
GLenum light,
GLenum pname,
const GLint *params);
bool ValidateGetMapdv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLenum query,
const GLdouble *v);
bool ValidateGetMapfv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLenum query,
const GLfloat *v);
bool ValidateGetMapiv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLenum query,
const GLint *v);
bool ValidateGetMaterialiv(const Context *context,
angle::EntryPoint entryPoint,
GLenum face,
GLenum pname,
const GLint *params);
bool ValidateGetPixelMapfv(const Context *context,
angle::EntryPoint entryPoint,
GLenum map,
const GLfloat *values);
bool ValidateGetPixelMapuiv(const Context *context,
angle::EntryPoint entryPoint,
GLenum map,
const GLuint *values);
bool ValidateGetPixelMapusv(const Context *context,
angle::EntryPoint entryPoint,
GLenum map,
const GLushort *values);
bool ValidateGetPolygonStipple(const Context *context,
angle::EntryPoint entryPoint,
const GLubyte *mask);
bool ValidateGetTexGendv(const Context *context,
angle::EntryPoint entryPoint,
GLenum coord,
GLenum pname,
const GLdouble *params);
bool ValidateGetTexGenfv(const Context *context,
angle::EntryPoint entryPoint,
GLenum coord,
GLenum pname,
const GLfloat *params);
bool ValidateGetTexGeniv(const Context *context,
angle::EntryPoint entryPoint,
GLenum coord,
GLenum pname,
const GLint *params);
bool ValidateGetTexImage(const Context *context,
angle::EntryPoint entryPoint,
TextureTarget targetPacked,
GLint level,
GLenum format,
GLenum type,
const void *pixels);
bool ValidateIndexMask(const Context *context, angle::EntryPoint entryPoint, GLuint mask);
bool ValidateIndexd(const Context *context, angle::EntryPoint entryPoint, GLdouble c);
bool ValidateIndexdv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *c);
bool ValidateIndexf(const Context *context, angle::EntryPoint entryPoint, GLfloat c);
bool ValidateIndexfv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *c);
bool ValidateIndexi(const Context *context, angle::EntryPoint entryPoint, GLint c);
bool ValidateIndexiv(const Context *context, angle::EntryPoint entryPoint, const GLint *c);
bool ValidateIndexs(const Context *context, angle::EntryPoint entryPoint, GLshort c);
bool ValidateIndexsv(const Context *context, angle::EntryPoint entryPoint, const GLshort *c);
bool ValidateInitNames(const Context *context, angle::EntryPoint entryPoint);
bool ValidateIsList(const Context *context, angle::EntryPoint entryPoint, GLuint list);
bool ValidateLightModeli(const Context *context,
angle::EntryPoint entryPoint,
GLenum pname,
GLint param);
bool ValidateLightModeliv(const Context *context,
angle::EntryPoint entryPoint,
GLenum pname,
const GLint *params);
bool ValidateLighti(const Context *context,
angle::EntryPoint entryPoint,
GLenum light,
GLenum pname,
GLint param);
bool ValidateLightiv(const Context *context,
angle::EntryPoint entryPoint,
GLenum light,
GLenum pname,
const GLint *params);
bool ValidateLineStipple(const Context *context,
angle::EntryPoint entryPoint,
GLint factor,
GLushort pattern);
bool ValidateListBase(const Context *context, angle::EntryPoint entryPoint, GLuint base);
bool ValidateLoadMatrixd(const Context *context, angle::EntryPoint entryPoint, const GLdouble *m);
bool ValidateLoadName(const Context *context, angle::EntryPoint entryPoint, GLuint name);
bool ValidateMap1d(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLdouble u1,
GLdouble u2,
GLint stride,
GLint order,
const GLdouble *points);
bool ValidateMap1f(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLfloat u1,
GLfloat u2,
GLint stride,
GLint order,
const GLfloat *points);
bool ValidateMap2d(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLdouble u1,
GLdouble u2,
GLint ustride,
GLint uorder,
GLdouble v1,
GLdouble v2,
GLint vstride,
GLint vorder,
const GLdouble *points);
bool ValidateMap2f(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLfloat u1,
GLfloat u2,
GLint ustride,
GLint uorder,
GLfloat v1,
GLfloat v2,
GLint vstride,
GLint vorder,
const GLfloat *points);
bool ValidateMapGrid1d(const Context *context,
angle::EntryPoint entryPoint,
GLint un,
GLdouble u1,
GLdouble u2);
bool ValidateMapGrid1f(const Context *context,
angle::EntryPoint entryPoint,
GLint un,
GLfloat u1,
GLfloat u2);
bool ValidateMapGrid2d(const Context *context,
angle::EntryPoint entryPoint,
GLint un,
GLdouble u1,
GLdouble u2,
GLint vn,
GLdouble v1,
GLdouble v2);
bool ValidateMapGrid2f(const Context *context,
angle::EntryPoint entryPoint,
GLint un,
GLfloat u1,
GLfloat u2,
GLint vn,
GLfloat v1,
GLfloat v2);
bool ValidateMateriali(const Context *context,
angle::EntryPoint entryPoint,
GLenum face,
GLenum pname,
GLint param);
bool ValidateMaterialiv(const Context *context,
angle::EntryPoint entryPoint,
GLenum face,
GLenum pname,
const GLint *params);
bool ValidateMultMatrixd(const Context *context, angle::EntryPoint entryPoint, const GLdouble *m);
bool ValidateNewList(const Context *context,
angle::EntryPoint entryPoint,
GLuint list,
GLenum mode);
bool ValidateNormal3b(const Context *context,
angle::EntryPoint entryPoint,
GLbyte nx,
GLbyte ny,
GLbyte nz);
bool ValidateNormal3bv(const Context *context, angle::EntryPoint entryPoint, const GLbyte *v);
bool ValidateNormal3d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble nx,
GLdouble ny,
GLdouble nz);
bool ValidateNormal3dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateNormal3fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateNormal3i(const Context *context,
angle::EntryPoint entryPoint,
GLint nx,
GLint ny,
GLint nz);
bool ValidateNormal3iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateNormal3s(const Context *context,
angle::EntryPoint entryPoint,
GLshort nx,
GLshort ny,
GLshort nz);
bool ValidateNormal3sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateOrtho(const Context *context,
angle::EntryPoint entryPoint,
GLdouble left,
GLdouble right,
GLdouble bottom,
GLdouble top,
GLdouble zNear,
GLdouble zFar);
bool ValidatePassThrough(const Context *context, angle::EntryPoint entryPoint, GLfloat token);
bool ValidatePixelMapfv(const Context *context,
angle::EntryPoint entryPoint,
GLenum map,
GLsizei mapsize,
const GLfloat *values);
bool ValidatePixelMapuiv(const Context *context,
angle::EntryPoint entryPoint,
GLenum map,
GLsizei mapsize,
const GLuint *values);
bool ValidatePixelMapusv(const Context *context,
angle::EntryPoint entryPoint,
GLenum map,
GLsizei mapsize,
const GLushort *values);
bool ValidatePixelStoref(const Context *context,
angle::EntryPoint entryPoint,
GLenum pname,
GLfloat param);
bool ValidatePixelTransferf(const Context *context,
angle::EntryPoint entryPoint,
GLenum pname,
GLfloat param);
bool ValidatePixelTransferi(const Context *context,
angle::EntryPoint entryPoint,
GLenum pname,
GLint param);
bool ValidatePixelZoom(const Context *context,
angle::EntryPoint entryPoint,
GLfloat xfactor,
GLfloat yfactor);
bool ValidatePolygonMode(const Context *context,
angle::EntryPoint entryPoint,
GLenum face,
GLenum mode);
bool ValidatePolygonStipple(const Context *context,
angle::EntryPoint entryPoint,
const GLubyte *mask);
bool ValidatePopAttrib(const Context *context, angle::EntryPoint entryPoint);
bool ValidatePopName(const Context *context, angle::EntryPoint entryPoint);
bool ValidatePushAttrib(const Context *context, angle::EntryPoint entryPoint, GLbitfield mask);
bool ValidatePushName(const Context *context, angle::EntryPoint entryPoint, GLuint name);
bool ValidateRasterPos2d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble x,
GLdouble y);
bool ValidateRasterPos2dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateRasterPos2f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat x,
GLfloat y);
bool ValidateRasterPos2fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateRasterPos2i(const Context *context, angle::EntryPoint entryPoint, GLint x, GLint y);
bool ValidateRasterPos2iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateRasterPos2s(const Context *context,
angle::EntryPoint entryPoint,
GLshort x,
GLshort y);
bool ValidateRasterPos2sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateRasterPos3d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble x,
GLdouble y,
GLdouble z);
bool ValidateRasterPos3dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateRasterPos3f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat x,
GLfloat y,
GLfloat z);
bool ValidateRasterPos3fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateRasterPos3i(const Context *context,
angle::EntryPoint entryPoint,
GLint x,
GLint y,
GLint z);
bool ValidateRasterPos3iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateRasterPos3s(const Context *context,
angle::EntryPoint entryPoint,
GLshort x,
GLshort y,
GLshort z);
bool ValidateRasterPos3sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateRasterPos4d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble x,
GLdouble y,
GLdouble z,
GLdouble w);
bool ValidateRasterPos4dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateRasterPos4f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat x,
GLfloat y,
GLfloat z,
GLfloat w);
bool ValidateRasterPos4fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateRasterPos4i(const Context *context,
angle::EntryPoint entryPoint,
GLint x,
GLint y,
GLint z,
GLint w);
bool ValidateRasterPos4iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateRasterPos4s(const Context *context,
angle::EntryPoint entryPoint,
GLshort x,
GLshort y,
GLshort z,
GLshort w);
bool ValidateRasterPos4sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateRectd(const Context *context,
angle::EntryPoint entryPoint,
GLdouble x1,
GLdouble y1,
GLdouble x2,
GLdouble y2);
bool ValidateRectdv(const Context *context,
angle::EntryPoint entryPoint,
const GLdouble *v1,
const GLdouble *v2);
bool ValidateRectf(const Context *context,
angle::EntryPoint entryPoint,
GLfloat x1,
GLfloat y1,
GLfloat x2,
GLfloat y2);
bool ValidateRectfv(const Context *context,
angle::EntryPoint entryPoint,
const GLfloat *v1,
const GLfloat *v2);
bool ValidateRecti(const Context *context,
angle::EntryPoint entryPoint,
GLint x1,
GLint y1,
GLint x2,
GLint y2);
bool ValidateRectiv(const Context *context,
angle::EntryPoint entryPoint,
const GLint *v1,
const GLint *v2);
bool ValidateRects(const Context *context,
angle::EntryPoint entryPoint,
GLshort x1,
GLshort y1,
GLshort x2,
GLshort y2);
bool ValidateRectsv(const Context *context,
angle::EntryPoint entryPoint,
const GLshort *v1,
const GLshort *v2);
bool ValidateRenderMode(const Context *context, angle::EntryPoint entryPoint, GLenum mode);
bool ValidateRotated(const Context *context,
angle::EntryPoint entryPoint,
GLdouble angle,
GLdouble x,
GLdouble y,
GLdouble z);
bool ValidateScaled(const Context *context,
angle::EntryPoint entryPoint,
GLdouble x,
GLdouble y,
GLdouble z);
bool ValidateSelectBuffer(const Context *context,
angle::EntryPoint entryPoint,
GLsizei size,
const GLuint *buffer);
bool ValidateTexCoord1d(const Context *context, angle::EntryPoint entryPoint, GLdouble s);
bool ValidateTexCoord1dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateTexCoord1f(const Context *context, angle::EntryPoint entryPoint, GLfloat s);
bool ValidateTexCoord1fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateTexCoord1i(const Context *context, angle::EntryPoint entryPoint, GLint s);
bool ValidateTexCoord1iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateTexCoord1s(const Context *context, angle::EntryPoint entryPoint, GLshort s);
bool ValidateTexCoord1sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateTexCoord2d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble s,
GLdouble t);
bool ValidateTexCoord2dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateTexCoord2f(const Context *context, angle::EntryPoint entryPoint, GLfloat s, GLfloat t);
bool ValidateTexCoord2fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateTexCoord2i(const Context *context, angle::EntryPoint entryPoint, GLint s, GLint t);
bool ValidateTexCoord2iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateTexCoord2s(const Context *context, angle::EntryPoint entryPoint, GLshort s, GLshort t);
bool ValidateTexCoord2sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateTexCoord3d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble s,
GLdouble t,
GLdouble r);
bool ValidateTexCoord3dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateTexCoord3f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat s,
GLfloat t,
GLfloat r);
bool ValidateTexCoord3fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateTexCoord3i(const Context *context,
angle::EntryPoint entryPoint,
GLint s,
GLint t,
GLint r);
bool ValidateTexCoord3iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateTexCoord3s(const Context *context,
angle::EntryPoint entryPoint,
GLshort s,
GLshort t,
GLshort r);
bool ValidateTexCoord3sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateTexCoord4d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble s,
GLdouble t,
GLdouble r,
GLdouble q);
bool ValidateTexCoord4dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateTexCoord4f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat s,
GLfloat t,
GLfloat r,
GLfloat q);
bool ValidateTexCoord4fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateTexCoord4i(const Context *context,
angle::EntryPoint entryPoint,
GLint s,
GLint t,
GLint r,
GLint q);
bool ValidateTexCoord4iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateTexCoord4s(const Context *context,
angle::EntryPoint entryPoint,
GLshort s,
GLshort t,
GLshort r,
GLshort q);
bool ValidateTexCoord4sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateTexGend(const Context *context,
angle::EntryPoint entryPoint,
GLenum coord,
GLenum pname,
GLdouble param);
bool ValidateTexGendv(const Context *context,
angle::EntryPoint entryPoint,
GLenum coord,
GLenum pname,
const GLdouble *params);
bool ValidateTexGenf(const Context *context,
angle::EntryPoint entryPoint,
GLenum coord,
GLenum pname,
GLfloat param);
bool ValidateTexGenfv(const Context *context,
angle::EntryPoint entryPoint,
GLenum coord,
GLenum pname,
const GLfloat *params);
bool ValidateTexGeni(const Context *context,
angle::EntryPoint entryPoint,
GLenum coord,
GLenum pname,
GLint param);
bool ValidateTexGeniv(const Context *context,
angle::EntryPoint entryPoint,
GLenum coord,
GLenum pname,
const GLint *params);
bool ValidateTexImage1D(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLint level,
GLint internalformat,
GLsizei width,
GLint border,
GLenum format,
GLenum type,
const void *pixels);
bool ValidateTranslated(const Context *context,
angle::EntryPoint entryPoint,
GLdouble x,
GLdouble y,
GLdouble z);
bool ValidateVertex2d(const Context *context, angle::EntryPoint entryPoint, GLdouble x, GLdouble y);
bool ValidateVertex2dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateVertex2f(const Context *context, angle::EntryPoint entryPoint, GLfloat x, GLfloat y);
bool ValidateVertex2fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateVertex2i(const Context *context, angle::EntryPoint entryPoint, GLint x, GLint y);
bool ValidateVertex2iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateVertex2s(const Context *context, angle::EntryPoint entryPoint, GLshort x, GLshort y);
bool ValidateVertex2sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateVertex3d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble x,
GLdouble y,
GLdouble z);
bool ValidateVertex3dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateVertex3f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat x,
GLfloat y,
GLfloat z);
bool ValidateVertex3fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateVertex3i(const Context *context,
angle::EntryPoint entryPoint,
GLint x,
GLint y,
GLint z);
bool ValidateVertex3iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateVertex3s(const Context *context,
angle::EntryPoint entryPoint,
GLshort x,
GLshort y,
GLshort z);
bool ValidateVertex3sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateVertex4d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble x,
GLdouble y,
GLdouble z,
GLdouble w);
bool ValidateVertex4dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateVertex4f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat x,
GLfloat y,
GLfloat z,
GLfloat w);
bool ValidateVertex4fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateVertex4i(const Context *context,
angle::EntryPoint entryPoint,
GLint x,
GLint y,
GLint z,
GLint w);
bool ValidateVertex4iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateVertex4s(const Context *context,
angle::EntryPoint entryPoint,
GLshort x,
GLshort y,
GLshort z,
GLshort w);
bool ValidateVertex4sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
// GL 1.1
bool ValidateAreTexturesResident(const Context *context,
angle::EntryPoint entryPoint,
GLsizei n,
const GLuint *textures,
const GLboolean *residences);
bool ValidateArrayElement(const Context *context, angle::EntryPoint entryPoint, GLint i);
bool ValidateCopyTexImage1D(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLint level,
GLenum internalformat,
GLint x,
GLint y,
GLsizei width,
GLint border);
bool ValidateCopyTexSubImage1D(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLint level,
GLint xoffset,
GLint x,
GLint y,
GLsizei width);
bool ValidateEdgeFlagPointer(const Context *context,
angle::EntryPoint entryPoint,
GLsizei stride,
const void *pointer);
bool ValidateIndexPointer(const Context *context,
angle::EntryPoint entryPoint,
GLenum type,
GLsizei stride,
const void *pointer);
bool ValidateIndexub(const Context *context, angle::EntryPoint entryPoint, GLubyte c);
bool ValidateIndexubv(const Context *context, angle::EntryPoint entryPoint, const GLubyte *c);
bool ValidateInterleavedArrays(const Context *context,
angle::EntryPoint entryPoint,
GLenum format,
GLsizei stride,
const void *pointer);
bool ValidatePopClientAttrib(const Context *context, angle::EntryPoint entryPoint);
bool ValidatePrioritizeTextures(const Context *context,
angle::EntryPoint entryPoint,
GLsizei n,
const GLuint *textures,
const GLfloat *priorities);
bool ValidatePushClientAttrib(const Context *context,
angle::EntryPoint entryPoint,
GLbitfield mask);
bool ValidateTexSubImage1D(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLint level,
GLint xoffset,
GLsizei width,
GLenum format,
GLenum type,
const void *pixels);
// GL 1.2
// GL 1.3
bool ValidateCompressedTexImage1D(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLint level,
GLenum internalformat,
GLsizei width,
GLint border,
GLsizei imageSize,
const void *data);
bool ValidateCompressedTexSubImage1D(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLint level,
GLint xoffset,
GLsizei width,
GLenum format,
GLsizei imageSize,
const void *data);
bool ValidateGetCompressedTexImage(const Context *context,
angle::EntryPoint entryPoint,
TextureTarget targetPacked,
GLint level,
const void *img);
bool ValidateLoadTransposeMatrixd(const Context *context,
angle::EntryPoint entryPoint,
const GLdouble *m);
bool ValidateLoadTransposeMatrixf(const Context *context,
angle::EntryPoint entryPoint,
const GLfloat *m);
bool ValidateMultTransposeMatrixd(const Context *context,
angle::EntryPoint entryPoint,
const GLdouble *m);
bool ValidateMultTransposeMatrixf(const Context *context,
angle::EntryPoint entryPoint,
const GLfloat *m);
bool ValidateMultiTexCoord1d(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLdouble s);
bool ValidateMultiTexCoord1dv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLdouble *v);
bool ValidateMultiTexCoord1f(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLfloat s);
bool ValidateMultiTexCoord1fv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLfloat *v);
bool ValidateMultiTexCoord1i(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLint s);
bool ValidateMultiTexCoord1iv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLint *v);
bool ValidateMultiTexCoord1s(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLshort s);
bool ValidateMultiTexCoord1sv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLshort *v);
bool ValidateMultiTexCoord2d(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLdouble s,
GLdouble t);
bool ValidateMultiTexCoord2dv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLdouble *v);
bool ValidateMultiTexCoord2f(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLfloat s,
GLfloat t);
bool ValidateMultiTexCoord2fv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLfloat *v);
bool ValidateMultiTexCoord2i(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLint s,
GLint t);
bool ValidateMultiTexCoord2iv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLint *v);
bool ValidateMultiTexCoord2s(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLshort s,
GLshort t);
bool ValidateMultiTexCoord2sv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLshort *v);
bool ValidateMultiTexCoord3d(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLdouble s,
GLdouble t,
GLdouble r);
bool ValidateMultiTexCoord3dv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLdouble *v);
bool ValidateMultiTexCoord3f(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLfloat s,
GLfloat t,
GLfloat r);
bool ValidateMultiTexCoord3fv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLfloat *v);
bool ValidateMultiTexCoord3i(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLint s,
GLint t,
GLint r);
bool ValidateMultiTexCoord3iv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLint *v);
bool ValidateMultiTexCoord3s(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLshort s,
GLshort t,
GLshort r);
bool ValidateMultiTexCoord3sv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLshort *v);
bool ValidateMultiTexCoord4d(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLdouble s,
GLdouble t,
GLdouble r,
GLdouble q);
bool ValidateMultiTexCoord4dv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLdouble *v);
bool ValidateMultiTexCoord4fv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLfloat *v);
bool ValidateMultiTexCoord4i(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLint s,
GLint t,
GLint r,
GLint q);
bool ValidateMultiTexCoord4iv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLint *v);
bool ValidateMultiTexCoord4s(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLshort s,
GLshort t,
GLshort r,
GLshort q);
bool ValidateMultiTexCoord4sv(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
const GLshort *v);
// GL 1.4
bool ValidateFogCoordPointer(const Context *context,
angle::EntryPoint entryPoint,
GLenum type,
GLsizei stride,
const void *pointer);
bool ValidateFogCoordd(const Context *context, angle::EntryPoint entryPoint, GLdouble coord);
bool ValidateFogCoorddv(const Context *context,
angle::EntryPoint entryPoint,
const GLdouble *coord);
bool ValidateFogCoordf(const Context *context, angle::EntryPoint entryPoint, GLfloat coord);
bool ValidateFogCoordfv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *coord);
bool ValidateMultiDrawArrays(const Context *context,
angle::EntryPoint entryPoint,
PrimitiveMode modePacked,
const GLint *first,
const GLsizei *count,
GLsizei drawcount);
bool ValidateMultiDrawElements(const Context *context,
angle::EntryPoint entryPoint,
PrimitiveMode modePacked,
const GLsizei *count,
DrawElementsType typePacked,
const void *const *indices,
GLsizei drawcount);
bool ValidatePointParameteri(const Context *context,
angle::EntryPoint entryPoint,
GLenum pname,
GLint param);
bool ValidatePointParameteriv(const Context *context,
angle::EntryPoint entryPoint,
GLenum pname,
const GLint *params);
bool ValidateSecondaryColor3b(const Context *context,
angle::EntryPoint entryPoint,
GLbyte red,
GLbyte green,
GLbyte blue);
bool ValidateSecondaryColor3bv(const Context *context,
angle::EntryPoint entryPoint,
const GLbyte *v);
bool ValidateSecondaryColor3d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble red,
GLdouble green,
GLdouble blue);
bool ValidateSecondaryColor3dv(const Context *context,
angle::EntryPoint entryPoint,
const GLdouble *v);
bool ValidateSecondaryColor3f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat red,
GLfloat green,
GLfloat blue);
bool ValidateSecondaryColor3fv(const Context *context,
angle::EntryPoint entryPoint,
const GLfloat *v);
bool ValidateSecondaryColor3i(const Context *context,
angle::EntryPoint entryPoint,
GLint red,
GLint green,
GLint blue);
bool ValidateSecondaryColor3iv(const Context *context,
angle::EntryPoint entryPoint,
const GLint *v);
bool ValidateSecondaryColor3s(const Context *context,
angle::EntryPoint entryPoint,
GLshort red,
GLshort green,
GLshort blue);
bool ValidateSecondaryColor3sv(const Context *context,
angle::EntryPoint entryPoint,
const GLshort *v);
bool ValidateSecondaryColor3ub(const Context *context,
angle::EntryPoint entryPoint,
GLubyte red,
GLubyte green,
GLubyte blue);
bool ValidateSecondaryColor3ubv(const Context *context,
angle::EntryPoint entryPoint,
const GLubyte *v);
bool ValidateSecondaryColor3ui(const Context *context,
angle::EntryPoint entryPoint,
GLuint red,
GLuint green,
GLuint blue);
bool ValidateSecondaryColor3uiv(const Context *context,
angle::EntryPoint entryPoint,
const GLuint *v);
bool ValidateSecondaryColor3us(const Context *context,
angle::EntryPoint entryPoint,
GLushort red,
GLushort green,
GLushort blue);
bool ValidateSecondaryColor3usv(const Context *context,
angle::EntryPoint entryPoint,
const GLushort *v);
bool ValidateSecondaryColorPointer(const Context *context,
angle::EntryPoint entryPoint,
GLint size,
GLenum type,
GLsizei stride,
const void *pointer);
bool ValidateWindowPos2d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble x,
GLdouble y);
bool ValidateWindowPos2dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateWindowPos2f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat x,
GLfloat y);
bool ValidateWindowPos2fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateWindowPos2i(const Context *context, angle::EntryPoint entryPoint, GLint x, GLint y);
bool ValidateWindowPos2iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateWindowPos2s(const Context *context,
angle::EntryPoint entryPoint,
GLshort x,
GLshort y);
bool ValidateWindowPos2sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
bool ValidateWindowPos3d(const Context *context,
angle::EntryPoint entryPoint,
GLdouble x,
GLdouble y,
GLdouble z);
bool ValidateWindowPos3dv(const Context *context, angle::EntryPoint entryPoint, const GLdouble *v);
bool ValidateWindowPos3f(const Context *context,
angle::EntryPoint entryPoint,
GLfloat x,
GLfloat y,
GLfloat z);
bool ValidateWindowPos3fv(const Context *context, angle::EntryPoint entryPoint, const GLfloat *v);
bool ValidateWindowPos3i(const Context *context,
angle::EntryPoint entryPoint,
GLint x,
GLint y,
GLint z);
bool ValidateWindowPos3iv(const Context *context, angle::EntryPoint entryPoint, const GLint *v);
bool ValidateWindowPos3s(const Context *context,
angle::EntryPoint entryPoint,
GLshort x,
GLshort y,
GLshort z);
bool ValidateWindowPos3sv(const Context *context, angle::EntryPoint entryPoint, const GLshort *v);
// GL 1.5
bool ValidateGetBufferSubData(const Context *context,
angle::EntryPoint entryPoint,
GLenum target,
GLintptr offset,
GLsizeiptr size,
const void *data);
bool ValidateGetQueryObjectiv(const Context *context,
angle::EntryPoint entryPoint,
QueryID idPacked,
GLenum pname,
const GLint *params);
bool ValidateMapBuffer(const Context *context,
angle::EntryPoint entryPoint,
BufferBinding targetPacked,
GLenum access);
} // namespace gl
#endif // LIBANGLE_VALIDATION_GL1_AUTOGEN_H_