Hash :
2ab08edc
Author :
Date :
2019-08-12T16:20:21
Use TextureID in place of GLuint handles. Bug: angleproject:3611 Change-Id: Ie6156e8732b3ca4dc6c4439c059a5481a4dfd250 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1738753 Reviewed-by: Tim Van Patten <timvp@google.com> Reviewed-by: Jamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
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
// GENERATED FILE - DO NOT EDIT.
// Generated by generate_entry_points.py using data from gl.xml and gl_angle_ext.xml.
//
// 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.
//
// capture_gles_3_0_autogen.h:
// Capture functions for the OpenGL ES 3.0 entry points.
#ifndef LIBANGLE_CAPTURE_GLES_3_0_AUTOGEN_H_
#define LIBANGLE_CAPTURE_GLES_3_0_AUTOGEN_H_
#include "common/PackedEnums.h"
#include "libANGLE/FrameCapture.h"
namespace gl
{
class Context;
// Method Captures
angle::CallCapture CaptureBeginQuery(const Context *context,
bool isCallValid,
QueryType targetPacked,
GLuint id);
angle::CallCapture CaptureBeginTransformFeedback(const Context *context,
bool isCallValid,
PrimitiveMode primitiveModePacked);
angle::CallCapture CaptureBindBufferBase(const Context *context,
bool isCallValid,
BufferBinding targetPacked,
GLuint index,
BufferID bufferPacked);
angle::CallCapture CaptureBindBufferRange(const Context *context,
bool isCallValid,
BufferBinding targetPacked,
GLuint index,
BufferID bufferPacked,
GLintptr offset,
GLsizeiptr size);
angle::CallCapture CaptureBindSampler(const Context *context,
bool isCallValid,
GLuint unit,
GLuint sampler);
angle::CallCapture CaptureBindTransformFeedback(const Context *context,
bool isCallValid,
GLenum target,
GLuint id);
angle::CallCapture CaptureBindVertexArray(const Context *context, bool isCallValid, GLuint array);
angle::CallCapture CaptureBlitFramebuffer(const Context *context,
bool isCallValid,
GLint srcX0,
GLint srcY0,
GLint srcX1,
GLint srcY1,
GLint dstX0,
GLint dstY0,
GLint dstX1,
GLint dstY1,
GLbitfield mask,
GLenum filter);
angle::CallCapture CaptureClearBufferfi(const Context *context,
bool isCallValid,
GLenum buffer,
GLint drawbuffer,
GLfloat depth,
GLint stencil);
angle::CallCapture CaptureClearBufferfv(const Context *context,
bool isCallValid,
GLenum buffer,
GLint drawbuffer,
const GLfloat *value);
angle::CallCapture CaptureClearBufferiv(const Context *context,
bool isCallValid,
GLenum buffer,
GLint drawbuffer,
const GLint *value);
angle::CallCapture CaptureClearBufferuiv(const Context *context,
bool isCallValid,
GLenum buffer,
GLint drawbuffer,
const GLuint *value);
angle::CallCapture CaptureClientWaitSync(const Context *context,
bool isCallValid,
GLsync sync,
GLbitfield flags,
GLuint64 timeout,
GLenum returnValue);
angle::CallCapture CaptureCompressedTexImage3D(const Context *context,
bool isCallValid,
TextureTarget targetPacked,
GLint level,
GLenum internalformat,
GLsizei width,
GLsizei height,
GLsizei depth,
GLint border,
GLsizei imageSize,
const void *data);
angle::CallCapture CaptureCompressedTexSubImage3D(const Context *context,
bool isCallValid,
TextureTarget targetPacked,
GLint level,
GLint xoffset,
GLint yoffset,
GLint zoffset,
GLsizei width,
GLsizei height,
GLsizei depth,
GLenum format,
GLsizei imageSize,
const void *data);
angle::CallCapture CaptureCopyBufferSubData(const Context *context,
bool isCallValid,
BufferBinding readTargetPacked,
BufferBinding writeTargetPacked,
GLintptr readOffset,
GLintptr writeOffset,
GLsizeiptr size);
angle::CallCapture CaptureCopyTexSubImage3D(const Context *context,
bool isCallValid,
TextureTarget targetPacked,
GLint level,
GLint xoffset,
GLint yoffset,
GLint zoffset,
GLint x,
GLint y,
GLsizei width,
GLsizei height);
angle::CallCapture CaptureDeleteQueries(const Context *context,
bool isCallValid,
GLsizei n,
const GLuint *ids);
angle::CallCapture CaptureDeleteSamplers(const Context *context,
bool isCallValid,
GLsizei count,
const GLuint *samplers);
angle::CallCapture CaptureDeleteSync(const Context *context, bool isCallValid, GLsync sync);
angle::CallCapture CaptureDeleteTransformFeedbacks(const Context *context,
bool isCallValid,
GLsizei n,
const GLuint *ids);
angle::CallCapture CaptureDeleteVertexArrays(const Context *context,
bool isCallValid,
GLsizei n,
const GLuint *arrays);
angle::CallCapture CaptureDrawArraysInstanced(const Context *context,
bool isCallValid,
PrimitiveMode modePacked,
GLint first,
GLsizei count,
GLsizei instancecount);
angle::CallCapture CaptureDrawBuffers(const Context *context,
bool isCallValid,
GLsizei n,
const GLenum *bufs);
angle::CallCapture CaptureDrawElementsInstanced(const Context *context,
bool isCallValid,
PrimitiveMode modePacked,
GLsizei count,
DrawElementsType typePacked,
const void *indices,
GLsizei instancecount);
angle::CallCapture CaptureDrawRangeElements(const Context *context,
bool isCallValid,
PrimitiveMode modePacked,
GLuint start,
GLuint end,
GLsizei count,
DrawElementsType typePacked,
const void *indices);
angle::CallCapture CaptureEndQuery(const Context *context,
bool isCallValid,
QueryType targetPacked);
angle::CallCapture CaptureEndTransformFeedback(const Context *context, bool isCallValid);
angle::CallCapture CaptureFenceSync(const Context *context,
bool isCallValid,
GLenum condition,
GLbitfield flags,
GLsync returnValue);
angle::CallCapture CaptureFlushMappedBufferRange(const Context *context,
bool isCallValid,
BufferBinding targetPacked,
GLintptr offset,
GLsizeiptr length);
angle::CallCapture CaptureFramebufferTextureLayer(const Context *context,
bool isCallValid,
GLenum target,
GLenum attachment,
TextureID texturePacked,
GLint level,
GLint layer);
angle::CallCapture CaptureGenQueries(const Context *context,
bool isCallValid,
GLsizei n,
GLuint *ids);
angle::CallCapture CaptureGenSamplers(const Context *context,
bool isCallValid,
GLsizei count,
GLuint *samplers);
angle::CallCapture CaptureGenTransformFeedbacks(const Context *context,
bool isCallValid,
GLsizei n,
GLuint *ids);
angle::CallCapture CaptureGenVertexArrays(const Context *context,
bool isCallValid,
GLsizei n,
GLuint *arrays);
angle::CallCapture CaptureGetActiveUniformBlockName(const Context *context,
bool isCallValid,
GLuint program,
GLuint uniformBlockIndex,
GLsizei bufSize,
GLsizei *length,
GLchar *uniformBlockName);
angle::CallCapture CaptureGetActiveUniformBlockiv(const Context *context,
bool isCallValid,
GLuint program,
GLuint uniformBlockIndex,
GLenum pname,
GLint *params);
angle::CallCapture CaptureGetActiveUniformsiv(const Context *context,
bool isCallValid,
GLuint program,
GLsizei uniformCount,
const GLuint *uniformIndices,
GLenum pname,
GLint *params);
angle::CallCapture CaptureGetBufferParameteri64v(const Context *context,
bool isCallValid,
BufferBinding targetPacked,
GLenum pname,
GLint64 *params);
angle::CallCapture CaptureGetBufferPointerv(const Context *context,
bool isCallValid,
BufferBinding targetPacked,
GLenum pname,
void **params);
angle::CallCapture CaptureGetFragDataLocation(const Context *context,
bool isCallValid,
GLuint program,
const GLchar *name,
GLint returnValue);
angle::CallCapture CaptureGetInteger64i_v(const Context *context,
bool isCallValid,
GLenum target,
GLuint index,
GLint64 *data);
angle::CallCapture CaptureGetInteger64v(const Context *context,
bool isCallValid,
GLenum pname,
GLint64 *data);
angle::CallCapture CaptureGetIntegeri_v(const Context *context,
bool isCallValid,
GLenum target,
GLuint index,
GLint *data);
angle::CallCapture CaptureGetInternalformativ(const Context *context,
bool isCallValid,
GLenum target,
GLenum internalformat,
GLenum pname,
GLsizei bufSize,
GLint *params);
angle::CallCapture CaptureGetProgramBinary(const Context *context,
bool isCallValid,
GLuint program,
GLsizei bufSize,
GLsizei *length,
GLenum *binaryFormat,
void *binary);
angle::CallCapture CaptureGetQueryObjectuiv(const Context *context,
bool isCallValid,
GLuint id,
GLenum pname,
GLuint *params);
angle::CallCapture CaptureGetQueryiv(const Context *context,
bool isCallValid,
QueryType targetPacked,
GLenum pname,
GLint *params);
angle::CallCapture CaptureGetSamplerParameterfv(const Context *context,
bool isCallValid,
GLuint sampler,
GLenum pname,
GLfloat *params);
angle::CallCapture CaptureGetSamplerParameteriv(const Context *context,
bool isCallValid,
GLuint sampler,
GLenum pname,
GLint *params);
angle::CallCapture CaptureGetStringi(const Context *context,
bool isCallValid,
GLenum name,
GLuint index,
const GLubyte *returnValue);
angle::CallCapture CaptureGetSynciv(const Context *context,
bool isCallValid,
GLsync sync,
GLenum pname,
GLsizei bufSize,
GLsizei *length,
GLint *values);
angle::CallCapture CaptureGetTransformFeedbackVarying(const Context *context,
bool isCallValid,
GLuint program,
GLuint index,
GLsizei bufSize,
GLsizei *length,
GLsizei *size,
GLenum *type,
GLchar *name);
angle::CallCapture CaptureGetUniformBlockIndex(const Context *context,
bool isCallValid,
GLuint program,
const GLchar *uniformBlockName,
GLuint returnValue);
angle::CallCapture CaptureGetUniformIndices(const Context *context,
bool isCallValid,
GLuint program,
GLsizei uniformCount,
const GLchar *const *uniformNames,
GLuint *uniformIndices);
angle::CallCapture CaptureGetUniformuiv(const Context *context,
bool isCallValid,
GLuint program,
GLint location,
GLuint *params);
angle::CallCapture CaptureGetVertexAttribIiv(const Context *context,
bool isCallValid,
GLuint index,
GLenum pname,
GLint *params);
angle::CallCapture CaptureGetVertexAttribIuiv(const Context *context,
bool isCallValid,
GLuint index,
GLenum pname,
GLuint *params);
angle::CallCapture CaptureInvalidateFramebuffer(const Context *context,
bool isCallValid,
GLenum target,
GLsizei numAttachments,
const GLenum *attachments);
angle::CallCapture CaptureInvalidateSubFramebuffer(const Context *context,
bool isCallValid,
GLenum target,
GLsizei numAttachments,
const GLenum *attachments,
GLint x,
GLint y,
GLsizei width,
GLsizei height);
angle::CallCapture CaptureIsQuery(const Context *context,
bool isCallValid,
GLuint id,
GLboolean returnValue);
angle::CallCapture CaptureIsSampler(const Context *context,
bool isCallValid,
GLuint sampler,
GLboolean returnValue);
angle::CallCapture CaptureIsSync(const Context *context,
bool isCallValid,
GLsync sync,
GLboolean returnValue);
angle::CallCapture CaptureIsTransformFeedback(const Context *context,
bool isCallValid,
GLuint id,
GLboolean returnValue);
angle::CallCapture CaptureIsVertexArray(const Context *context,
bool isCallValid,
GLuint array,
GLboolean returnValue);
angle::CallCapture CaptureMapBufferRange(const Context *context,
bool isCallValid,
BufferBinding targetPacked,
GLintptr offset,
GLsizeiptr length,
GLbitfield access,
void *returnValue);
angle::CallCapture CapturePauseTransformFeedback(const Context *context, bool isCallValid);
angle::CallCapture CaptureProgramBinary(const Context *context,
bool isCallValid,
GLuint program,
GLenum binaryFormat,
const void *binary,
GLsizei length);
angle::CallCapture CaptureProgramParameteri(const Context *context,
bool isCallValid,
GLuint program,
GLenum pname,
GLint value);
angle::CallCapture CaptureReadBuffer(const Context *context, bool isCallValid, GLenum src);
angle::CallCapture CaptureRenderbufferStorageMultisample(const Context *context,
bool isCallValid,
GLenum target,
GLsizei samples,
GLenum internalformat,
GLsizei width,
GLsizei height);
angle::CallCapture CaptureResumeTransformFeedback(const Context *context, bool isCallValid);
angle::CallCapture CaptureSamplerParameterf(const Context *context,
bool isCallValid,
GLuint sampler,
GLenum pname,
GLfloat param);
angle::CallCapture CaptureSamplerParameterfv(const Context *context,
bool isCallValid,
GLuint sampler,
GLenum pname,
const GLfloat *param);
angle::CallCapture CaptureSamplerParameteri(const Context *context,
bool isCallValid,
GLuint sampler,
GLenum pname,
GLint param);
angle::CallCapture CaptureSamplerParameteriv(const Context *context,
bool isCallValid,
GLuint sampler,
GLenum pname,
const GLint *param);
angle::CallCapture CaptureTexImage3D(const Context *context,
bool isCallValid,
TextureTarget targetPacked,
GLint level,
GLint internalformat,
GLsizei width,
GLsizei height,
GLsizei depth,
GLint border,
GLenum format,
GLenum type,
const void *pixels);
angle::CallCapture CaptureTexStorage2D(const Context *context,
bool isCallValid,
TextureType targetPacked,
GLsizei levels,
GLenum internalformat,
GLsizei width,
GLsizei height);
angle::CallCapture CaptureTexStorage3D(const Context *context,
bool isCallValid,
TextureType targetPacked,
GLsizei levels,
GLenum internalformat,
GLsizei width,
GLsizei height,
GLsizei depth);
angle::CallCapture CaptureTexSubImage3D(const Context *context,
bool isCallValid,
TextureTarget targetPacked,
GLint level,
GLint xoffset,
GLint yoffset,
GLint zoffset,
GLsizei width,
GLsizei height,
GLsizei depth,
GLenum format,
GLenum type,
const void *pixels);
angle::CallCapture CaptureTransformFeedbackVaryings(const Context *context,
bool isCallValid,
GLuint program,
GLsizei count,
const GLchar *const *varyings,
GLenum bufferMode);
angle::CallCapture CaptureUniform1ui(const Context *context,
bool isCallValid,
GLint location,
GLuint v0);
angle::CallCapture CaptureUniform1uiv(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
const GLuint *value);
angle::CallCapture CaptureUniform2ui(const Context *context,
bool isCallValid,
GLint location,
GLuint v0,
GLuint v1);
angle::CallCapture CaptureUniform2uiv(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
const GLuint *value);
angle::CallCapture CaptureUniform3ui(const Context *context,
bool isCallValid,
GLint location,
GLuint v0,
GLuint v1,
GLuint v2);
angle::CallCapture CaptureUniform3uiv(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
const GLuint *value);
angle::CallCapture CaptureUniform4ui(const Context *context,
bool isCallValid,
GLint location,
GLuint v0,
GLuint v1,
GLuint v2,
GLuint v3);
angle::CallCapture CaptureUniform4uiv(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
const GLuint *value);
angle::CallCapture CaptureUniformBlockBinding(const Context *context,
bool isCallValid,
GLuint program,
GLuint uniformBlockIndex,
GLuint uniformBlockBinding);
angle::CallCapture CaptureUniformMatrix2x3fv(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value);
angle::CallCapture CaptureUniformMatrix2x4fv(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value);
angle::CallCapture CaptureUniformMatrix3x2fv(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value);
angle::CallCapture CaptureUniformMatrix3x4fv(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value);
angle::CallCapture CaptureUniformMatrix4x2fv(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value);
angle::CallCapture CaptureUniformMatrix4x3fv(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value);
angle::CallCapture CaptureUnmapBuffer(const Context *context,
bool isCallValid,
BufferBinding targetPacked,
GLboolean returnValue);
angle::CallCapture CaptureVertexAttribDivisor(const Context *context,
bool isCallValid,
GLuint index,
GLuint divisor);
angle::CallCapture CaptureVertexAttribI4i(const Context *context,
bool isCallValid,
GLuint index,
GLint x,
GLint y,
GLint z,
GLint w);
angle::CallCapture CaptureVertexAttribI4iv(const Context *context,
bool isCallValid,
GLuint index,
const GLint *v);
angle::CallCapture CaptureVertexAttribI4ui(const Context *context,
bool isCallValid,
GLuint index,
GLuint x,
GLuint y,
GLuint z,
GLuint w);
angle::CallCapture CaptureVertexAttribI4uiv(const Context *context,
bool isCallValid,
GLuint index,
const GLuint *v);
angle::CallCapture CaptureVertexAttribIPointer(const Context *context,
bool isCallValid,
GLuint index,
GLint size,
VertexAttribType typePacked,
GLsizei stride,
const void *pointer);
angle::CallCapture CaptureWaitSync(const Context *context,
bool isCallValid,
GLsync sync,
GLbitfield flags,
GLuint64 timeout);
// Parameter Captures
void CaptureClearBufferfv_value(const Context *context,
bool isCallValid,
GLenum buffer,
GLint drawbuffer,
const GLfloat *value,
angle::ParamCapture *paramCapture);
void CaptureClearBufferiv_value(const Context *context,
bool isCallValid,
GLenum buffer,
GLint drawbuffer,
const GLint *value,
angle::ParamCapture *paramCapture);
void CaptureClearBufferuiv_value(const Context *context,
bool isCallValid,
GLenum buffer,
GLint drawbuffer,
const GLuint *value,
angle::ParamCapture *paramCapture);
void CaptureCompressedTexImage3D_data(const Context *context,
bool isCallValid,
TextureTarget targetPacked,
GLint level,
GLenum internalformat,
GLsizei width,
GLsizei height,
GLsizei depth,
GLint border,
GLsizei imageSize,
const void *data,
angle::ParamCapture *paramCapture);
void CaptureCompressedTexSubImage3D_data(const Context *context,
bool isCallValid,
TextureTarget targetPacked,
GLint level,
GLint xoffset,
GLint yoffset,
GLint zoffset,
GLsizei width,
GLsizei height,
GLsizei depth,
GLenum format,
GLsizei imageSize,
const void *data,
angle::ParamCapture *paramCapture);
void CaptureDeleteQueries_ids(const Context *context,
bool isCallValid,
GLsizei n,
const GLuint *ids,
angle::ParamCapture *paramCapture);
void CaptureDeleteSamplers_samplers(const Context *context,
bool isCallValid,
GLsizei count,
const GLuint *samplers,
angle::ParamCapture *paramCapture);
void CaptureDeleteTransformFeedbacks_ids(const Context *context,
bool isCallValid,
GLsizei n,
const GLuint *ids,
angle::ParamCapture *paramCapture);
void CaptureDeleteVertexArrays_arrays(const Context *context,
bool isCallValid,
GLsizei n,
const GLuint *arrays,
angle::ParamCapture *paramCapture);
void CaptureDrawBuffers_bufs(const Context *context,
bool isCallValid,
GLsizei n,
const GLenum *bufs,
angle::ParamCapture *paramCapture);
void CaptureDrawElementsInstanced_indices(const Context *context,
bool isCallValid,
PrimitiveMode modePacked,
GLsizei count,
DrawElementsType typePacked,
const void *indices,
GLsizei instancecount,
angle::ParamCapture *paramCapture);
void CaptureDrawRangeElements_indices(const Context *context,
bool isCallValid,
PrimitiveMode modePacked,
GLuint start,
GLuint end,
GLsizei count,
DrawElementsType typePacked,
const void *indices,
angle::ParamCapture *paramCapture);
void CaptureGenQueries_ids(const Context *context,
bool isCallValid,
GLsizei n,
GLuint *ids,
angle::ParamCapture *paramCapture);
void CaptureGenSamplers_samplers(const Context *context,
bool isCallValid,
GLsizei count,
GLuint *samplers,
angle::ParamCapture *paramCapture);
void CaptureGenTransformFeedbacks_ids(const Context *context,
bool isCallValid,
GLsizei n,
GLuint *ids,
angle::ParamCapture *paramCapture);
void CaptureGenVertexArrays_arrays(const Context *context,
bool isCallValid,
GLsizei n,
GLuint *arrays,
angle::ParamCapture *paramCapture);
void CaptureGetActiveUniformBlockName_length(const Context *context,
bool isCallValid,
GLuint program,
GLuint uniformBlockIndex,
GLsizei bufSize,
GLsizei *length,
GLchar *uniformBlockName,
angle::ParamCapture *paramCapture);
void CaptureGetActiveUniformBlockName_uniformBlockName(const Context *context,
bool isCallValid,
GLuint program,
GLuint uniformBlockIndex,
GLsizei bufSize,
GLsizei *length,
GLchar *uniformBlockName,
angle::ParamCapture *paramCapture);
void CaptureGetActiveUniformBlockiv_params(const Context *context,
bool isCallValid,
GLuint program,
GLuint uniformBlockIndex,
GLenum pname,
GLint *params,
angle::ParamCapture *paramCapture);
void CaptureGetActiveUniformsiv_uniformIndices(const Context *context,
bool isCallValid,
GLuint program,
GLsizei uniformCount,
const GLuint *uniformIndices,
GLenum pname,
GLint *params,
angle::ParamCapture *paramCapture);
void CaptureGetActiveUniformsiv_params(const Context *context,
bool isCallValid,
GLuint program,
GLsizei uniformCount,
const GLuint *uniformIndices,
GLenum pname,
GLint *params,
angle::ParamCapture *paramCapture);
void CaptureGetBufferParameteri64v_params(const Context *context,
bool isCallValid,
BufferBinding targetPacked,
GLenum pname,
GLint64 *params,
angle::ParamCapture *paramCapture);
void CaptureGetBufferPointerv_params(const Context *context,
bool isCallValid,
BufferBinding targetPacked,
GLenum pname,
void **params,
angle::ParamCapture *paramCapture);
void CaptureGetFragDataLocation_name(const Context *context,
bool isCallValid,
GLuint program,
const GLchar *name,
angle::ParamCapture *paramCapture);
void CaptureGetInteger64i_v_data(const Context *context,
bool isCallValid,
GLenum target,
GLuint index,
GLint64 *data,
angle::ParamCapture *paramCapture);
void CaptureGetInteger64v_data(const Context *context,
bool isCallValid,
GLenum pname,
GLint64 *data,
angle::ParamCapture *paramCapture);
void CaptureGetIntegeri_v_data(const Context *context,
bool isCallValid,
GLenum target,
GLuint index,
GLint *data,
angle::ParamCapture *paramCapture);
void CaptureGetInternalformativ_params(const Context *context,
bool isCallValid,
GLenum target,
GLenum internalformat,
GLenum pname,
GLsizei bufSize,
GLint *params,
angle::ParamCapture *paramCapture);
void CaptureGetProgramBinary_length(const Context *context,
bool isCallValid,
GLuint program,
GLsizei bufSize,
GLsizei *length,
GLenum *binaryFormat,
void *binary,
angle::ParamCapture *paramCapture);
void CaptureGetProgramBinary_binaryFormat(const Context *context,
bool isCallValid,
GLuint program,
GLsizei bufSize,
GLsizei *length,
GLenum *binaryFormat,
void *binary,
angle::ParamCapture *paramCapture);
void CaptureGetProgramBinary_binary(const Context *context,
bool isCallValid,
GLuint program,
GLsizei bufSize,
GLsizei *length,
GLenum *binaryFormat,
void *binary,
angle::ParamCapture *paramCapture);
void CaptureGetQueryObjectuiv_params(const Context *context,
bool isCallValid,
GLuint id,
GLenum pname,
GLuint *params,
angle::ParamCapture *paramCapture);
void CaptureGetQueryiv_params(const Context *context,
bool isCallValid,
QueryType targetPacked,
GLenum pname,
GLint *params,
angle::ParamCapture *paramCapture);
void CaptureGetSamplerParameterfv_params(const Context *context,
bool isCallValid,
GLuint sampler,
GLenum pname,
GLfloat *params,
angle::ParamCapture *paramCapture);
void CaptureGetSamplerParameteriv_params(const Context *context,
bool isCallValid,
GLuint sampler,
GLenum pname,
GLint *params,
angle::ParamCapture *paramCapture);
void CaptureGetSynciv_length(const Context *context,
bool isCallValid,
GLsync sync,
GLenum pname,
GLsizei bufSize,
GLsizei *length,
GLint *values,
angle::ParamCapture *paramCapture);
void CaptureGetSynciv_values(const Context *context,
bool isCallValid,
GLsync sync,
GLenum pname,
GLsizei bufSize,
GLsizei *length,
GLint *values,
angle::ParamCapture *paramCapture);
void CaptureGetTransformFeedbackVarying_length(const Context *context,
bool isCallValid,
GLuint program,
GLuint index,
GLsizei bufSize,
GLsizei *length,
GLsizei *size,
GLenum *type,
GLchar *name,
angle::ParamCapture *paramCapture);
void CaptureGetTransformFeedbackVarying_size(const Context *context,
bool isCallValid,
GLuint program,
GLuint index,
GLsizei bufSize,
GLsizei *length,
GLsizei *size,
GLenum *type,
GLchar *name,
angle::ParamCapture *paramCapture);
void CaptureGetTransformFeedbackVarying_type(const Context *context,
bool isCallValid,
GLuint program,
GLuint index,
GLsizei bufSize,
GLsizei *length,
GLsizei *size,
GLenum *type,
GLchar *name,
angle::ParamCapture *paramCapture);
void CaptureGetTransformFeedbackVarying_name(const Context *context,
bool isCallValid,
GLuint program,
GLuint index,
GLsizei bufSize,
GLsizei *length,
GLsizei *size,
GLenum *type,
GLchar *name,
angle::ParamCapture *paramCapture);
void CaptureGetUniformBlockIndex_uniformBlockName(const Context *context,
bool isCallValid,
GLuint program,
const GLchar *uniformBlockName,
angle::ParamCapture *paramCapture);
void CaptureGetUniformIndices_uniformNames(const Context *context,
bool isCallValid,
GLuint program,
GLsizei uniformCount,
const GLchar *const *uniformNames,
GLuint *uniformIndices,
angle::ParamCapture *paramCapture);
void CaptureGetUniformIndices_uniformIndices(const Context *context,
bool isCallValid,
GLuint program,
GLsizei uniformCount,
const GLchar *const *uniformNames,
GLuint *uniformIndices,
angle::ParamCapture *paramCapture);
void CaptureGetUniformuiv_params(const Context *context,
bool isCallValid,
GLuint program,
GLint location,
GLuint *params,
angle::ParamCapture *paramCapture);
void CaptureGetVertexAttribIiv_params(const Context *context,
bool isCallValid,
GLuint index,
GLenum pname,
GLint *params,
angle::ParamCapture *paramCapture);
void CaptureGetVertexAttribIuiv_params(const Context *context,
bool isCallValid,
GLuint index,
GLenum pname,
GLuint *params,
angle::ParamCapture *paramCapture);
void CaptureInvalidateFramebuffer_attachments(const Context *context,
bool isCallValid,
GLenum target,
GLsizei numAttachments,
const GLenum *attachments,
angle::ParamCapture *paramCapture);
void CaptureInvalidateSubFramebuffer_attachments(const Context *context,
bool isCallValid,
GLenum target,
GLsizei numAttachments,
const GLenum *attachments,
GLint x,
GLint y,
GLsizei width,
GLsizei height,
angle::ParamCapture *paramCapture);
void CaptureProgramBinary_binary(const Context *context,
bool isCallValid,
GLuint program,
GLenum binaryFormat,
const void *binary,
GLsizei length,
angle::ParamCapture *paramCapture);
void CaptureSamplerParameterfv_param(const Context *context,
bool isCallValid,
GLuint sampler,
GLenum pname,
const GLfloat *param,
angle::ParamCapture *paramCapture);
void CaptureSamplerParameteriv_param(const Context *context,
bool isCallValid,
GLuint sampler,
GLenum pname,
const GLint *param,
angle::ParamCapture *paramCapture);
void CaptureTexImage3D_pixels(const Context *context,
bool isCallValid,
TextureTarget targetPacked,
GLint level,
GLint internalformat,
GLsizei width,
GLsizei height,
GLsizei depth,
GLint border,
GLenum format,
GLenum type,
const void *pixels,
angle::ParamCapture *paramCapture);
void CaptureTexSubImage3D_pixels(const Context *context,
bool isCallValid,
TextureTarget targetPacked,
GLint level,
GLint xoffset,
GLint yoffset,
GLint zoffset,
GLsizei width,
GLsizei height,
GLsizei depth,
GLenum format,
GLenum type,
const void *pixels,
angle::ParamCapture *paramCapture);
void CaptureTransformFeedbackVaryings_varyings(const Context *context,
bool isCallValid,
GLuint program,
GLsizei count,
const GLchar *const *varyings,
GLenum bufferMode,
angle::ParamCapture *paramCapture);
void CaptureUniform1uiv_value(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
const GLuint *value,
angle::ParamCapture *paramCapture);
void CaptureUniform2uiv_value(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
const GLuint *value,
angle::ParamCapture *paramCapture);
void CaptureUniform3uiv_value(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
const GLuint *value,
angle::ParamCapture *paramCapture);
void CaptureUniform4uiv_value(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
const GLuint *value,
angle::ParamCapture *paramCapture);
void CaptureUniformMatrix2x3fv_value(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value,
angle::ParamCapture *paramCapture);
void CaptureUniformMatrix2x4fv_value(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value,
angle::ParamCapture *paramCapture);
void CaptureUniformMatrix3x2fv_value(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value,
angle::ParamCapture *paramCapture);
void CaptureUniformMatrix3x4fv_value(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value,
angle::ParamCapture *paramCapture);
void CaptureUniformMatrix4x2fv_value(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value,
angle::ParamCapture *paramCapture);
void CaptureUniformMatrix4x3fv_value(const Context *context,
bool isCallValid,
GLint location,
GLsizei count,
GLboolean transpose,
const GLfloat *value,
angle::ParamCapture *paramCapture);
void CaptureVertexAttribI4iv_v(const Context *context,
bool isCallValid,
GLuint index,
const GLint *v,
angle::ParamCapture *paramCapture);
void CaptureVertexAttribI4uiv_v(const Context *context,
bool isCallValid,
GLuint index,
const GLuint *v,
angle::ParamCapture *paramCapture);
void CaptureVertexAttribIPointer_pointer(const Context *context,
bool isCallValid,
GLuint index,
GLint size,
VertexAttribType typePacked,
GLsizei stride,
const void *pointer,
angle::ParamCapture *paramCapture);
} // namespace gl
#endif // LIBANGLE_CAPTURE_GLES_3_0_AUTOGEN_H_