From ab095af39f8d157e9673909842e3e773c9e68e39 Mon Sep 17 00:00:00 2001 From: 06wj <06wj@163.com> Date: Mon, 19 Dec 2022 14:23:05 +0800 Subject: [PATCH] docs: update jsdoc comments --- src/constants/webgl2.js | 530 ++++++++++++++++++++-------------------- 1 file changed, 265 insertions(+), 265 deletions(-) diff --git a/src/constants/webgl2.js b/src/constants/webgl2.js index a9f5ff2..c6f6a2a 100644 --- a/src/constants/webgl2.js +++ b/src/constants/webgl2.js @@ -2,1326 +2,1326 @@ /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const READ_BUFFER = 0x0C02; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNPACK_ROW_LENGTH = 0x0CF2; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNPACK_SKIP_ROWS = 0x0CF3; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNPACK_SKIP_PIXELS = 0x0CF4; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const PACK_ROW_LENGTH = 0x0D02; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const PACK_SKIP_ROWS = 0x0D03; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const PACK_SKIP_PIXELS = 0x0D04; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_BINDING_3D = 0x806A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNPACK_SKIP_IMAGES = 0x806D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNPACK_IMAGE_HEIGHT = 0x806E; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_3D_TEXTURE_SIZE = 0x8073; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_ELEMENTS_VERTICES = 0x80E8; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_ELEMENTS_INDICES = 0x80E9; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_TEXTURE_LOD_BIAS = 0x84FD; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_FRAGMENT_UNIFORM_COMPONENTS = 0x8B49; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_VERTEX_UNIFORM_COMPONENTS = 0x8B4A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_ARRAY_TEXTURE_LAYERS = 0x88FF; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MIN_PROGRAM_TEXEL_OFFSET = 0x8904; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_PROGRAM_TEXEL_OFFSET = 0x8905; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_VARYING_COMPONENTS = 0x8B4B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAGMENT_SHADER_DERIVATIVE_HINT = 0x8B8B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RASTERIZER_DISCARD = 0x8C89; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const VERTEX_ARRAY_BINDING = 0x85B5; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_VERTEX_OUTPUT_COMPONENTS = 0x9122; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_FRAGMENT_INPUT_COMPONENTS = 0x9125; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_SERVER_WAIT_TIMEOUT = 0x9111; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_ELEMENT_INDEX = 0x8D6; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RED = 0x1903; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB8 = 0x8051; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGBA8 = 0x8058; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB10_A2 = 0x8059; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_3D = 0x806F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_WRAP_R = 0x8072; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_MIN_LOD = 0x813A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_MAX_LOD = 0x813B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_BASE_LEVEL = 0x813C; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_MAX_LEVEL = 0x813D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_COMPARE_MODE = 0x884C; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_COMPARE_FUNC = 0x884D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SRGB = 0x8C40; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SRGB8 = 0x8C41; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SRGB8_ALPHA8 = 0x8C43; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COMPARE_REF_TO_TEXTURE = 0x884E; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGBA32F = 0x8814; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB32F = 0x8815; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGBA16F = 0x881A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB16F = 0x881B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_2D_ARRAY = 0x8C1A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_BINDING_2D_ARRAY = 0x8C1D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const R11F_G11F_B10F = 0x8C3A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB9_E5 = 0x8C3D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGBA32UI = 0x8D70; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB32UI = 0x8D71; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGBA16UI = 0x8D76; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB16UI = 0x8D77; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGBA8UI = 0x8D7C; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB8UI = 0x8D7D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGBA32I = 0x8D82; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB32I = 0x8D83; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGBA16I = 0x8D88; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB16I = 0x8D89; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGBA8I = 0x8D8E; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB8I = 0x8D8F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RED_INTEGER = 0x8D94; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB_INTEGER = 0x8D98; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGBA_INTEGER = 0x8D99; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const R8 = 0x8229; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG8 = 0x822B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const R16F = 0x822D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const R32F = 0x822E; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG16F = 0x822F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG32F = 0x8230; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const R8I = 0x8231; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const R8UI = 0x8232; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const R16I = 0x8233; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const R16UI = 0x8234; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const R32I = 0x8235; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const R32UI = 0x8236; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG8I = 0x8237; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG8UI = 0x8238; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG16I = 0x8239; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG16UI = 0x823A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG32I = 0x823B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG32UI = 0x823C; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const R8_SNORM = 0x8F94; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG8_SNORM = 0x8F95; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB8_SNORM = 0x8F96; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGBA8_SNORM = 0x8F97; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RGB10_A2UI = 0x906F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_IMMUTABLE_FORMAT = 0x912F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TEXTURE_IMMUTABLE_LEVELS = 0x82D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_INT_2_10_10_10_REV = 0x8368; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_INT_10F_11F_11F_REV = 0x8C3B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_INT_5_9_9_9_REV = 0x8C3E; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FLOAT_32_UNSIGNED_INT_24_8_REV = 0x8DAD; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_INT_24_8 = 0x84FA; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const HALF_FLOAT = 0x140B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG = 0x8227; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RG_INTEGER = 0x8228; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const INT_2_10_10_10_REV = 0x8D9; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const URRENT_QUERY = 0x8865; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const QUERY_RESULT = 0x8866; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const QUERY_RESULT_AVAILABLE = 0x8867; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const ANY_SAMPLES_PASSED = 0x8C2F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const ANY_SAMPLES_PASSED_CONSERVATIVE = 0x8D6; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_DRAW_BUFFERS = 0x8824; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER0 = 0x8825; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER1 = 0x8826; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER2 = 0x8827; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER3 = 0x8828; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER4 = 0x8829; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER5 = 0x882A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER6 = 0x882B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER7 = 0x882C; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER8 = 0x882D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER9 = 0x882E; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER10 = 0x882F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER11 = 0x8830; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER12 = 0x8831; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER13 = 0x8832; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER14 = 0x8833; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_BUFFER15 = 0x8834; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_COLOR_ATTACHMENTS = 0x8CDF; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT1 = 0x8CE1; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT2 = 0x8CE2; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT3 = 0x8CE3; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT4 = 0x8CE4; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT5 = 0x8CE5; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT6 = 0x8CE6; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT7 = 0x8CE7; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT8 = 0x8CE8; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT9 = 0x8CE9; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT10 = 0x8CEA; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT11 = 0x8CEB; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT12 = 0x8CEC; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT13 = 0x8CED; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT14 = 0x8CEE; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR_ATTACHMENT15 = 0x8CE; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SAMPLER_3D = 0x8B5F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SAMPLER_2D_SHADOW = 0x8B62; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SAMPLER_2D_ARRAY = 0x8DC1; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SAMPLER_2D_ARRAY_SHADOW = 0x8DC4; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SAMPLER_CUBE_SHADOW = 0x8DC5; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const INT_SAMPLER_2D = 0x8DCA; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const INT_SAMPLER_3D = 0x8DCB; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const INT_SAMPLER_CUBE = 0x8DCC; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const INT_SAMPLER_2D_ARRAY = 0x8DCF; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_INT_SAMPLER_2D = 0x8DD2; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_INT_SAMPLER_3D = 0x8DD3; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_INT_SAMPLER_CUBE = 0x8DD4; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_INT_SAMPLER_2D_ARRAY = 0x8DD7; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_SAMPLES = 0x8D57; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SAMPLER_BINDING = 0x891; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const PIXEL_PACK_BUFFER = 0x88EB; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const PIXEL_UNPACK_BUFFER = 0x88EC; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const PIXEL_PACK_BUFFER_BINDING = 0x88ED; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const PIXEL_UNPACK_BUFFER_BINDING = 0x88EF; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COPY_READ_BUFFER = 0x8F36; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COPY_WRITE_BUFFER = 0x8F37; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COPY_READ_BUFFER_BINDING = 0x8F36; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COPY_WRITE_BUFFER_BINDING = 0x8F3; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FLOAT_MAT2x3 = 0x8B65; // eslint-disable-line /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FLOAT_MAT2x4 = 0x8B66; // eslint-disable-line /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FLOAT_MAT3x2 = 0x8B67; // eslint-disable-line /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FLOAT_MAT3x4 = 0x8B68; // eslint-disable-line /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FLOAT_MAT4x2 = 0x8B69; // eslint-disable-line /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FLOAT_MAT4x3 = 0x8B6A; // eslint-disable-line /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_INT_VEC2 = 0x8DC6; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_INT_VEC3 = 0x8DC7; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_INT_VEC4 = 0x8DC8; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNED_NORMALIZED = 0x8C17; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SIGNED_NORMALIZED = 0x8F9; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const VERTEX_ATTRIB_ARRAY_INTEGER = 0x88FD; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const VERTEX_ATTRIB_ARRAY_DIVISOR = 0x88F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TRANSFORM_FEEDBACK_BUFFER_MODE = 0x8C7F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS = 0x8C80; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TRANSFORM_FEEDBACK_VARYINGS = 0x8C83; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TRANSFORM_FEEDBACK_BUFFER_START = 0x8C84; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TRANSFORM_FEEDBACK_BUFFER_SIZE = 0x8C85; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN = 0x8C88; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS = 0x8C8A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS = 0x8C8B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const INTERLEAVED_ATTRIBS = 0x8C8C; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SEPARATE_ATTRIBS = 0x8C8D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TRANSFORM_FEEDBACK_BUFFER = 0x8C8E; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TRANSFORM_FEEDBACK_BUFFER_BINDING = 0x8C8F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TRANSFORM_FEEDBACK = 0x8E22; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TRANSFORM_FEEDBACK_PAUSED = 0x8E23; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TRANSFORM_FEEDBACK_ACTIVE = 0x8E24; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TRANSFORM_FEEDBACK_BINDING = 0x8E2; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING = 0x8210; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE = 0x8211; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAMEBUFFER_ATTACHMENT_RED_SIZE = 0x8212; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAMEBUFFER_ATTACHMENT_GREEN_SIZE = 0x8213; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAMEBUFFER_ATTACHMENT_BLUE_SIZE = 0x8214; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE = 0x8215; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE = 0x8216; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE = 0x8217; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAMEBUFFER_DEFAULT = 0x8218; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DEPTH_STENCIL_ATTACHMENT = 0x821A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DEPTH_STENCIL = 0x84F9; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DEPTH24_STENCIL8 = 0x88F0; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_FRAMEBUFFER_BINDING = 0x8CA6; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const READ_FRAMEBUFFER = 0x8CA8; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DRAW_FRAMEBUFFER = 0x8CA9; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const READ_FRAMEBUFFER_BINDING = 0x8CAA; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const RENDERBUFFER_SAMPLES = 0x8CAB; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER = 0x8CD4; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const FRAMEBUFFER_INCOMPLETE_MULTISAMPLE = 0x8D5; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BUFFER = 0x8A11; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BUFFER_BINDING = 0x8A28; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BUFFER_START = 0x8A29; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BUFFER_SIZE = 0x8A2A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_VERTEX_UNIFORM_BLOCKS = 0x8A2B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_FRAGMENT_UNIFORM_BLOCKS = 0x8A2D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_COMBINED_UNIFORM_BLOCKS = 0x8A2E; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_UNIFORM_BUFFER_BINDINGS = 0x8A2F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_UNIFORM_BLOCK_SIZE = 0x8A30; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS = 0x8A31; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS = 0x8A33; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BUFFER_OFFSET_ALIGNMENT = 0x8A34; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const ACTIVE_UNIFORM_BLOCKS = 0x8A36; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_TYPE = 0x8A37; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_SIZE = 0x8A38; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BLOCK_INDEX = 0x8A3A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_OFFSET = 0x8A3B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_ARRAY_STRIDE = 0x8A3C; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_MATRIX_STRIDE = 0x8A3D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_IS_ROW_MAJOR = 0x8A3E; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BLOCK_BINDING = 0x8A3F; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BLOCK_DATA_SIZE = 0x8A40; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BLOCK_ACTIVE_UNIFORMS = 0x8A42; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES = 0x8A43; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER = 0x8A44; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER = 0x8A4; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const OBJECT_TYPE = 0x9112; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SYNC_CONDITION = 0x9113; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SYNC_STATUS = 0x9114; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SYNC_FLAGS = 0x9115; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SYNC_FENCE = 0x9116; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SYNC_GPU_COMMANDS_COMPLETE = 0x9117; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const UNSIGNALED = 0x9118; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SIGNALED = 0x9119; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const ALREADY_SIGNALED = 0x911A; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TIMEOUT_EXPIRED = 0x911B; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const CONDITION_SATISFIED = 0x911C; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const WAIT_FAILED = 0x911D; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const SYNC_FLUSH_COMMANDS_BIT = 0x0000000; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const COLOR = 0x1800; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DEPTH = 0x1801; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const STENCIL = 0x1802; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MIN = 0x8007; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX = 0x8008; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DEPTH_COMPONENT24 = 0x81A6; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const STREAM_READ = 0x88E1; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const STREAM_COPY = 0x88E2; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const STATIC_READ = 0x88E5; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const STATIC_COPY = 0x88E6; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DYNAMIC_READ = 0x88E9; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DYNAMIC_COPY = 0x88EA; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DEPTH_COMPONENT32F = 0x8CAC; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const DEPTH32F_STENCIL8 = 0x8CAD; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const INVALID_INDEX = 0xFFFFFFF; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const TIMEOUT_IGNO = RED - 1; /** * @memberOf constants - * @type {glEnum} + * @type {GLenum} */ export const MAX_CLIENT_WAIT_TIMEOUT_WEBGL = 0x924;