@gtkx/gl 0.21.0 → 1.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +137 -82
- package/dist/generated/commands.d.ts +286 -289
- package/dist/generated/commands.d.ts.map +1 -1
- package/dist/generated/commands.js +342 -403
- package/dist/generated/commands.js.map +1 -1
- package/dist/generated/enums.d.ts +1363 -1367
- package/dist/generated/enums.d.ts.map +1 -1
- package/dist/generated/enums.js +1363 -1367
- package/dist/generated/enums.js.map +1 -1
- package/dist/generated/types.d.ts +4 -16
- package/dist/generated/types.d.ts.map +1 -1
- package/dist/generated/types.js +2 -6
- package/dist/generated/types.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/overrides.d.ts +44 -0
- package/dist/overrides.d.ts.map +1 -0
- package/dist/{companion.js → overrides.js} +31 -4
- package/dist/overrides.js.map +1 -0
- package/package.json +15 -8
- package/src/generated/commands.ts +879 -3592
- package/src/generated/enums.ts +1363 -1367
- package/src/generated/types.ts +4 -20
- package/src/index.ts +1 -1
- package/src/{companion.ts → overrides.ts} +53 -9
- package/dist/companion.d.ts +0 -8
- package/dist/companion.d.ts.map +0 -1
- package/dist/companion.js.map +0 -1
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* GENERATED FILE
|
|
3
|
-
*
|
|
4
|
-
* Emitted by the `@gtkx/codegen` Khronos generator from the vendored
|
|
5
|
-
* `registry/gl.xml` (gl 4.6 core profile). Regenerate with
|
|
6
|
-
* `pnpm --filter @gtkx/codegen codegen:gl`.
|
|
2
|
+
* GENERATED FILE: do not edit.
|
|
7
3
|
*/
|
|
8
|
-
import type
|
|
4
|
+
import { type AttributeType, type BindTransformFeedbackTarget, type BlendEquationModeEXT, type BlendingFactor, type BlitFramebufferFilter, type Buffer, type BufferAccessARB, type BufferPNameARB, type BufferStorageMask, type BufferStorageTarget, type BufferTargetARB, type BufferUsageARB, type ClampColorModeARB, type ClampColorTargetARB, type ClearBufferMask, type ClipControlDepth, type ClipControlOrigin, type ColorBuffer, type ConditionalRenderMode, type CopyBufferSubDataTarget, type CopyImageSubDataTarget, type DebugSeverity, type DebugSource, type DebugType, type DepthFunction, type DrawBufferMode, type DrawElementsType, type EnableCap, type ErrorCode, type FramebufferAttachment, type FramebufferAttachmentParameterName, type FramebufferParameterName, type FramebufferStatus, type FramebufferTarget, type FrontFaceDirection, type GetFramebufferParameter, type GetTextureParameter, type GLbitfield, type GLbyte, type GLdouble, type GLenum, type GLfloat, type GLint, type GLint64, type GLintptr, type GLpointer, type GLshort, type GLsizei, type GLsizeiptr, type GLsync, type GLubyte, type GLuint, type GLuint64, type GLushort, type GraphicsResetStatus, type HintMode, type HintTarget, type InternalFormat, type InternalFormatPName, type InvalidateFramebufferAttachment, type LogicOp, type MapBufferAccessMask, type MemoryBarrierMask, type ObjectIdentifier, type PatchParameterName, type PipelineParameterName, type PixelFormat, type PixelStoreParameter, type PixelType, type PointParameterNameARB, type PolygonMode, type PrecisionType, type PrimitiveType, type ProgramInterface, type ProgramParameterPName, type ProgramPropertyARB, type ProgramResourceProperty, type ProgramStagePName, type QueryCounterTarget, type QueryObjectParameterName, type QueryParameterName, type QueryTarget, type ReadBufferMode, type RenderbufferParameterName, type RenderbufferTarget, type SamplerParameterF, type SamplerParameterI, type ShaderBinaryFormat, type ShaderParameterName, type ShaderType, type SizedInternalFormat, type StencilFunction, type StencilOp, type StringName, type SyncBehaviorFlags, type SyncCondition, type SyncObjectMask, type SyncParameterName, type SyncStatus, type TextureParameterName, type TextureTarget, type TextureUnit, type TransformFeedbackBufferMode, type TransformFeedbackPName, type TriangleFace, type UniformType, type UseProgramStageMask, type VertexArrayPName, type VertexAttribEnum, type VertexAttribIType, type VertexAttribLType, type VertexAttribPointerType, type VertexAttribPropertyARB, type VertexAttribType, type VertexProvokingMode } from "./types.js";
|
|
9
5
|
/**
|
|
10
6
|
* `void glActiveShaderProgram(GLuint pipeline, GLuint program)`
|
|
11
7
|
*
|
|
12
8
|
* Provided by `GL_VERSION_4_1`.
|
|
13
9
|
*
|
|
14
|
-
* @param pipeline - `GLuint`, object
|
|
15
|
-
* @param program - `GLuint`, object
|
|
10
|
+
* @param pipeline - `GLuint`, object class `program pipeline`
|
|
11
|
+
* @param program - `GLuint`, object class `program`
|
|
16
12
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glActiveShaderProgram.xhtml
|
|
17
13
|
*/
|
|
18
14
|
export declare function activeShaderProgram(pipeline: GLuint, program: GLuint): void;
|
|
@@ -30,8 +26,8 @@ export declare function activeTexture(texture: TextureUnit): void;
|
|
|
30
26
|
*
|
|
31
27
|
* Provided by `GL_VERSION_2_0`.
|
|
32
28
|
*
|
|
33
|
-
* @param program - `GLuint`, object
|
|
34
|
-
* @param shader - `GLuint`, object
|
|
29
|
+
* @param program - `GLuint`, object class `program`
|
|
30
|
+
* @param shader - `GLuint`, object class `shader`
|
|
35
31
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glAttachShader.xhtml
|
|
36
32
|
*/
|
|
37
33
|
export declare function attachShader(program: GLuint, shader: GLuint): void;
|
|
@@ -51,7 +47,7 @@ export declare function beginConditionalRender(id: GLuint, mode: ConditionalRend
|
|
|
51
47
|
* Provided by `GL_VERSION_1_5`.
|
|
52
48
|
*
|
|
53
49
|
* @param target - `GLenum`, group `QueryTarget`
|
|
54
|
-
* @param id - `GLuint`, object
|
|
50
|
+
* @param id - `GLuint`, object class `query`
|
|
55
51
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBeginQuery.xhtml
|
|
56
52
|
*/
|
|
57
53
|
export declare function beginQuery(target: QueryTarget, id: GLuint): void;
|
|
@@ -62,7 +58,7 @@ export declare function beginQuery(target: QueryTarget, id: GLuint): void;
|
|
|
62
58
|
*
|
|
63
59
|
* @param target - `GLenum`, group `QueryTarget`
|
|
64
60
|
* @param index - `GLuint`
|
|
65
|
-
* @param id - `GLuint`, object
|
|
61
|
+
* @param id - `GLuint`, object class `query`
|
|
66
62
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBeginQueryIndexed.xhtml
|
|
67
63
|
*/
|
|
68
64
|
export declare function beginQueryIndexed(target: QueryTarget, index: GLuint, id: GLuint): void;
|
|
@@ -80,7 +76,7 @@ export declare function beginTransformFeedback(primitiveMode: PrimitiveType): vo
|
|
|
80
76
|
*
|
|
81
77
|
* Provided by `GL_VERSION_2_0`.
|
|
82
78
|
*
|
|
83
|
-
* @param program - `GLuint`, object
|
|
79
|
+
* @param program - `GLuint`, object class `program`
|
|
84
80
|
* @param index - `GLuint`
|
|
85
81
|
* @param name - `const GLchar *`
|
|
86
82
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindAttribLocation.xhtml
|
|
@@ -92,7 +88,7 @@ export declare function bindAttribLocation(program: GLuint, index: GLuint, name:
|
|
|
92
88
|
* Provided by `GL_VERSION_1_5`.
|
|
93
89
|
*
|
|
94
90
|
* @param target - `GLenum`, group `BufferTargetARB`
|
|
95
|
-
* @param buffer - `GLuint`, object
|
|
91
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
96
92
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindBuffer.xhtml
|
|
97
93
|
*/
|
|
98
94
|
export declare function bindBuffer(target: BufferTargetARB, buffer: GLuint): void;
|
|
@@ -103,7 +99,7 @@ export declare function bindBuffer(target: BufferTargetARB, buffer: GLuint): voi
|
|
|
103
99
|
*
|
|
104
100
|
* @param target - `GLenum`, group `BufferTargetARB`
|
|
105
101
|
* @param index - `GLuint`
|
|
106
|
-
* @param buffer - `GLuint`, object
|
|
102
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
107
103
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindBufferBase.xhtml
|
|
108
104
|
*/
|
|
109
105
|
export declare function bindBufferBase(target: BufferTargetARB, index: GLuint, buffer: GLuint): void;
|
|
@@ -114,7 +110,7 @@ export declare function bindBufferBase(target: BufferTargetARB, index: GLuint, b
|
|
|
114
110
|
*
|
|
115
111
|
* @param target - `GLenum`, group `BufferTargetARB`
|
|
116
112
|
* @param index - `GLuint`
|
|
117
|
-
* @param buffer - `GLuint`, object
|
|
113
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
118
114
|
* @param offset - `GLintptr`
|
|
119
115
|
* @param size - `GLsizeiptr`
|
|
120
116
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindBufferRange.xhtml
|
|
@@ -128,7 +124,7 @@ export declare function bindBufferRange(target: BufferTargetARB, index: GLuint,
|
|
|
128
124
|
* @param target - `GLenum`, group `BufferTargetARB`
|
|
129
125
|
* @param first - `GLuint`
|
|
130
126
|
* @param count - `GLsizei`
|
|
131
|
-
* @param buffers - `const GLuint *`, length `count`, object
|
|
127
|
+
* @param buffers - `const GLuint *`, length `count`, object class `buffer`
|
|
132
128
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindBuffersBase.xhtml
|
|
133
129
|
*/
|
|
134
130
|
export declare function bindBuffersBase(target: BufferTargetARB, first: GLuint, count: GLsizei, buffers: GLuint[] | Uint32Array): void;
|
|
@@ -140,7 +136,7 @@ export declare function bindBuffersBase(target: BufferTargetARB, first: GLuint,
|
|
|
140
136
|
* @param target - `GLenum`, group `BufferTargetARB`
|
|
141
137
|
* @param first - `GLuint`
|
|
142
138
|
* @param count - `GLsizei`
|
|
143
|
-
* @param buffers - `const GLuint *`, length `count`, object
|
|
139
|
+
* @param buffers - `const GLuint *`, length `count`, object class `buffer`
|
|
144
140
|
* @param offsets - `const GLintptr *`, length `count`
|
|
145
141
|
* @param sizes - `const GLsizeiptr *`, length `count`
|
|
146
142
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindBuffersRange.xhtml
|
|
@@ -151,7 +147,7 @@ export declare function bindBuffersRange(target: BufferTargetARB, first: GLuint,
|
|
|
151
147
|
*
|
|
152
148
|
* Provided by `GL_VERSION_3_0`.
|
|
153
149
|
*
|
|
154
|
-
* @param program - `GLuint`, object
|
|
150
|
+
* @param program - `GLuint`, object class `program`
|
|
155
151
|
* @param color - `GLuint`
|
|
156
152
|
* @param name - `const GLchar *`, length `COMPSIZE(name)`
|
|
157
153
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindFragDataLocation.xhtml
|
|
@@ -162,7 +158,7 @@ export declare function bindFragDataLocation(program: GLuint, color: GLuint, nam
|
|
|
162
158
|
*
|
|
163
159
|
* Provided by `GL_VERSION_3_3`.
|
|
164
160
|
*
|
|
165
|
-
* @param program - `GLuint`, object
|
|
161
|
+
* @param program - `GLuint`, object class `program`
|
|
166
162
|
* @param colorNumber - `GLuint`
|
|
167
163
|
* @param index - `GLuint`
|
|
168
164
|
* @param name - `const GLchar *`
|
|
@@ -175,7 +171,7 @@ export declare function bindFragDataLocationIndexed(program: GLuint, colorNumber
|
|
|
175
171
|
* Provided by `GL_VERSION_3_0`.
|
|
176
172
|
*
|
|
177
173
|
* @param target - `GLenum`, group `FramebufferTarget`
|
|
178
|
-
* @param framebuffer - `GLuint`, object
|
|
174
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
179
175
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindFramebuffer.xhtml
|
|
180
176
|
*/
|
|
181
177
|
export declare function bindFramebuffer(target: FramebufferTarget, framebuffer: GLuint): void;
|
|
@@ -185,7 +181,7 @@ export declare function bindFramebuffer(target: FramebufferTarget, framebuffer:
|
|
|
185
181
|
* Provided by `GL_VERSION_4_2`.
|
|
186
182
|
*
|
|
187
183
|
* @param unit - `GLuint`
|
|
188
|
-
* @param texture - `GLuint`, object
|
|
184
|
+
* @param texture - `GLuint`, object class `texture`
|
|
189
185
|
* @param level - `GLint`
|
|
190
186
|
* @param layered - `GLboolean`
|
|
191
187
|
* @param layer - `GLint`
|
|
@@ -201,7 +197,7 @@ export declare function bindImageTexture(unit: GLuint, texture: GLuint, level: G
|
|
|
201
197
|
*
|
|
202
198
|
* @param first - `GLuint`
|
|
203
199
|
* @param count - `GLsizei`
|
|
204
|
-
* @param textures - `const GLuint *`, length `count`, object
|
|
200
|
+
* @param textures - `const GLuint *`, length `count`, object class `texture`
|
|
205
201
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindImageTextures.xhtml
|
|
206
202
|
*/
|
|
207
203
|
export declare function bindImageTextures(first: GLuint, count: GLsizei, textures: GLuint[] | Uint32Array): void;
|
|
@@ -210,7 +206,7 @@ export declare function bindImageTextures(first: GLuint, count: GLsizei, texture
|
|
|
210
206
|
*
|
|
211
207
|
* Provided by `GL_VERSION_4_1`.
|
|
212
208
|
*
|
|
213
|
-
* @param pipeline - `GLuint`, object
|
|
209
|
+
* @param pipeline - `GLuint`, object class `program pipeline`
|
|
214
210
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindProgramPipeline.xhtml
|
|
215
211
|
*/
|
|
216
212
|
export declare function bindProgramPipeline(pipeline: GLuint): void;
|
|
@@ -220,7 +216,7 @@ export declare function bindProgramPipeline(pipeline: GLuint): void;
|
|
|
220
216
|
* Provided by `GL_VERSION_3_0`.
|
|
221
217
|
*
|
|
222
218
|
* @param target - `GLenum`, group `RenderbufferTarget`
|
|
223
|
-
* @param renderbuffer - `GLuint`, object
|
|
219
|
+
* @param renderbuffer - `GLuint`, object class `renderbuffer`
|
|
224
220
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindRenderbuffer.xhtml
|
|
225
221
|
*/
|
|
226
222
|
export declare function bindRenderbuffer(target: RenderbufferTarget, renderbuffer: GLuint): void;
|
|
@@ -230,7 +226,7 @@ export declare function bindRenderbuffer(target: RenderbufferTarget, renderbuffe
|
|
|
230
226
|
* Provided by `GL_VERSION_3_3`.
|
|
231
227
|
*
|
|
232
228
|
* @param unit - `GLuint`
|
|
233
|
-
* @param sampler - `GLuint`, object
|
|
229
|
+
* @param sampler - `GLuint`, object class `sampler`
|
|
234
230
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindSampler.xhtml
|
|
235
231
|
*/
|
|
236
232
|
export declare function bindSampler(unit: GLuint, sampler: GLuint): void;
|
|
@@ -241,7 +237,7 @@ export declare function bindSampler(unit: GLuint, sampler: GLuint): void;
|
|
|
241
237
|
*
|
|
242
238
|
* @param first - `GLuint`
|
|
243
239
|
* @param count - `GLsizei`
|
|
244
|
-
* @param samplers - `const GLuint *`, length `count`, object
|
|
240
|
+
* @param samplers - `const GLuint *`, length `count`, object class `sampler`
|
|
245
241
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindSamplers.xhtml
|
|
246
242
|
*/
|
|
247
243
|
export declare function bindSamplers(first: GLuint, count: GLsizei, samplers: GLuint[] | Uint32Array): void;
|
|
@@ -251,7 +247,7 @@ export declare function bindSamplers(first: GLuint, count: GLsizei, samplers: GL
|
|
|
251
247
|
* Provided by `GL_VERSION_1_1`.
|
|
252
248
|
*
|
|
253
249
|
* @param target - `GLenum`, group `TextureTarget`
|
|
254
|
-
* @param texture - `GLuint`, object
|
|
250
|
+
* @param texture - `GLuint`, object class `texture`
|
|
255
251
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindTexture.xhtml
|
|
256
252
|
*/
|
|
257
253
|
export declare function bindTexture(target: TextureTarget, texture: GLuint): void;
|
|
@@ -262,7 +258,7 @@ export declare function bindTexture(target: TextureTarget, texture: GLuint): voi
|
|
|
262
258
|
*
|
|
263
259
|
* @param first - `GLuint`
|
|
264
260
|
* @param count - `GLsizei`
|
|
265
|
-
* @param textures - `const GLuint *`, length `count`, object
|
|
261
|
+
* @param textures - `const GLuint *`, length `count`, object class `texture`
|
|
266
262
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindTextures.xhtml
|
|
267
263
|
*/
|
|
268
264
|
export declare function bindTextures(first: GLuint, count: GLsizei, textures: GLuint[] | Uint32Array): void;
|
|
@@ -272,7 +268,7 @@ export declare function bindTextures(first: GLuint, count: GLsizei, textures: GL
|
|
|
272
268
|
* Provided by `GL_VERSION_4_5`.
|
|
273
269
|
*
|
|
274
270
|
* @param unit - `GLuint`
|
|
275
|
-
* @param texture - `GLuint`, object
|
|
271
|
+
* @param texture - `GLuint`, object class `texture`
|
|
276
272
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindTextureUnit.xhtml
|
|
277
273
|
*/
|
|
278
274
|
export declare function bindTextureUnit(unit: GLuint, texture: GLuint): void;
|
|
@@ -282,7 +278,7 @@ export declare function bindTextureUnit(unit: GLuint, texture: GLuint): void;
|
|
|
282
278
|
* Provided by `GL_VERSION_4_0`.
|
|
283
279
|
*
|
|
284
280
|
* @param target - `GLenum`, group `BindTransformFeedbackTarget`
|
|
285
|
-
* @param id - `GLuint`, object
|
|
281
|
+
* @param id - `GLuint`, object class `transform feedback`
|
|
286
282
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindTransformFeedback.xhtml
|
|
287
283
|
*/
|
|
288
284
|
export declare function bindTransformFeedback(target: BindTransformFeedbackTarget, id: GLuint): void;
|
|
@@ -291,7 +287,7 @@ export declare function bindTransformFeedback(target: BindTransformFeedbackTarge
|
|
|
291
287
|
*
|
|
292
288
|
* Provided by `GL_VERSION_3_0`.
|
|
293
289
|
*
|
|
294
|
-
* @param array - `GLuint`, object
|
|
290
|
+
* @param array - `GLuint`, object class `vertex array`
|
|
295
291
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindVertexArray.xhtml
|
|
296
292
|
*/
|
|
297
293
|
export declare function bindVertexArray(array: GLuint): void;
|
|
@@ -301,7 +297,7 @@ export declare function bindVertexArray(array: GLuint): void;
|
|
|
301
297
|
* Provided by `GL_VERSION_4_3`.
|
|
302
298
|
*
|
|
303
299
|
* @param bindingindex - `GLuint`
|
|
304
|
-
* @param buffer - `GLuint`, object
|
|
300
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
305
301
|
* @param offset - `GLintptr`
|
|
306
302
|
* @param stride - `GLsizei`
|
|
307
303
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindVertexBuffer.xhtml
|
|
@@ -314,7 +310,7 @@ export declare function bindVertexBuffer(bindingindex: GLuint, buffer: GLuint, o
|
|
|
314
310
|
*
|
|
315
311
|
* @param first - `GLuint`
|
|
316
312
|
* @param count - `GLsizei`
|
|
317
|
-
* @param buffers - `const GLuint *`, length `count`, object
|
|
313
|
+
* @param buffers - `const GLuint *`, length `count`, object class `buffer`
|
|
318
314
|
* @param offsets - `const GLintptr *`, length `count`
|
|
319
315
|
* @param strides - `const GLsizei *`, length `count`
|
|
320
316
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindVertexBuffers.xhtml
|
|
@@ -441,8 +437,8 @@ export declare function blitFramebuffer(srcX0: GLint, srcY0: GLint, srcX1: GLint
|
|
|
441
437
|
*
|
|
442
438
|
* Provided by `GL_VERSION_4_5`.
|
|
443
439
|
*
|
|
444
|
-
* @param readFramebuffer - `GLuint`, object
|
|
445
|
-
* @param drawFramebuffer - `GLuint`, object
|
|
440
|
+
* @param readFramebuffer - `GLuint`, object class `framebuffer`
|
|
441
|
+
* @param drawFramebuffer - `GLuint`, object class `framebuffer`
|
|
446
442
|
* @param srcX0 - `GLint`
|
|
447
443
|
* @param srcY0 - `GLint`
|
|
448
444
|
* @param srcX1 - `GLint`
|
|
@@ -507,7 +503,7 @@ export declare function checkFramebufferStatus(target: FramebufferTarget): Frame
|
|
|
507
503
|
*
|
|
508
504
|
* Provided by `GL_VERSION_4_5`.
|
|
509
505
|
*
|
|
510
|
-
* @param framebuffer - `GLuint`, object
|
|
506
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
511
507
|
* @param target - `GLenum`, group `FramebufferTarget`
|
|
512
508
|
* @returns `GLenum`
|
|
513
509
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glCheckNamedFramebufferStatus.xhtml
|
|
@@ -640,7 +636,7 @@ export declare function clearDepthf(d: GLfloat): void;
|
|
|
640
636
|
*
|
|
641
637
|
* Provided by `GL_VERSION_4_5`.
|
|
642
638
|
*
|
|
643
|
-
* @param buffer - `GLuint`, object
|
|
639
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
644
640
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
645
641
|
* @param format - `GLenum`, group `PixelFormat`
|
|
646
642
|
* @param type - `GLenum`, group `PixelType`
|
|
@@ -653,7 +649,7 @@ export declare function clearNamedBufferData(buffer: GLuint, internalformat: Siz
|
|
|
653
649
|
*
|
|
654
650
|
* Provided by `GL_VERSION_4_5`.
|
|
655
651
|
*
|
|
656
|
-
* @param buffer - `GLuint`, object
|
|
652
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
657
653
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
658
654
|
* @param offset - `GLintptr`
|
|
659
655
|
* @param size - `GLsizeiptr`
|
|
@@ -668,7 +664,7 @@ export declare function clearNamedBufferSubData(buffer: GLuint, internalformat:
|
|
|
668
664
|
*
|
|
669
665
|
* Provided by `GL_VERSION_4_5`.
|
|
670
666
|
*
|
|
671
|
-
* @param framebuffer - `GLuint`, object
|
|
667
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
672
668
|
* @param buffer - `GLenum`, group `Buffer`
|
|
673
669
|
* @param drawbuffer - `GLint`
|
|
674
670
|
* @param depth - `GLfloat`
|
|
@@ -681,7 +677,7 @@ export declare function clearNamedFramebufferfi(framebuffer: GLuint, buffer: Buf
|
|
|
681
677
|
*
|
|
682
678
|
* Provided by `GL_VERSION_4_5`.
|
|
683
679
|
*
|
|
684
|
-
* @param framebuffer - `GLuint`, object
|
|
680
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
685
681
|
* @param buffer - `GLenum`, group `Buffer`
|
|
686
682
|
* @param drawbuffer - `GLint`
|
|
687
683
|
* @param value - `const GLfloat *`, length `COMPSIZE(buffer)`
|
|
@@ -693,7 +689,7 @@ export declare function clearNamedFramebufferfv(framebuffer: GLuint, buffer: Buf
|
|
|
693
689
|
*
|
|
694
690
|
* Provided by `GL_VERSION_4_5`.
|
|
695
691
|
*
|
|
696
|
-
* @param framebuffer - `GLuint`, object
|
|
692
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
697
693
|
* @param buffer - `GLenum`, group `Buffer`
|
|
698
694
|
* @param drawbuffer - `GLint`
|
|
699
695
|
* @param value - `const GLint *`, length `COMPSIZE(buffer)`
|
|
@@ -705,7 +701,7 @@ export declare function clearNamedFramebufferiv(framebuffer: GLuint, buffer: Buf
|
|
|
705
701
|
*
|
|
706
702
|
* Provided by `GL_VERSION_4_5`.
|
|
707
703
|
*
|
|
708
|
-
* @param framebuffer - `GLuint`, object
|
|
704
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
709
705
|
* @param buffer - `GLenum`, group `Buffer`
|
|
710
706
|
* @param drawbuffer - `GLint`
|
|
711
707
|
* @param value - `const GLuint *`, length `COMPSIZE(buffer)`
|
|
@@ -726,7 +722,7 @@ export declare function clearStencil(s: GLint): void;
|
|
|
726
722
|
*
|
|
727
723
|
* Provided by `GL_VERSION_4_4`.
|
|
728
724
|
*
|
|
729
|
-
* @param texture - `GLuint`, object
|
|
725
|
+
* @param texture - `GLuint`, object class `texture`
|
|
730
726
|
* @param level - `GLint`
|
|
731
727
|
* @param format - `GLenum`, group `PixelFormat`
|
|
732
728
|
* @param type - `GLenum`, group `PixelType`
|
|
@@ -739,7 +735,7 @@ export declare function clearTexImage(texture: GLuint, level: GLint, format: Pix
|
|
|
739
735
|
*
|
|
740
736
|
* Provided by `GL_VERSION_4_4`.
|
|
741
737
|
*
|
|
742
|
-
* @param texture - `GLuint`, object
|
|
738
|
+
* @param texture - `GLuint`, object class `texture`
|
|
743
739
|
* @param level - `GLint`
|
|
744
740
|
* @param xoffset - `GLint`
|
|
745
741
|
* @param yoffset - `GLint`
|
|
@@ -758,7 +754,7 @@ export declare function clearTexSubImage(texture: GLuint, level: GLint, xoffset:
|
|
|
758
754
|
*
|
|
759
755
|
* Provided by `GL_VERSION_3_2`.
|
|
760
756
|
*
|
|
761
|
-
* @param sync - `GLsync`, object
|
|
757
|
+
* @param sync - `GLsync`, object class `sync`
|
|
762
758
|
* @param flags - `GLbitfield`, group `SyncObjectMask`
|
|
763
759
|
* @param timeout - `GLuint64`
|
|
764
760
|
* @returns `GLenum`
|
|
@@ -805,7 +801,7 @@ export declare function colorMaski(index: GLuint, r: boolean, g: boolean, b: boo
|
|
|
805
801
|
*
|
|
806
802
|
* Provided by `GL_VERSION_2_0`.
|
|
807
803
|
*
|
|
808
|
-
* @param shader - `GLuint`, object
|
|
804
|
+
* @param shader - `GLuint`, object class `shader`
|
|
809
805
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glCompileShader.xhtml
|
|
810
806
|
*/
|
|
811
807
|
export declare function compileShader(shader: GLuint): void;
|
|
@@ -913,7 +909,7 @@ export declare function compressedTexSubImage3D(target: TextureTarget, level: GL
|
|
|
913
909
|
*
|
|
914
910
|
* Provided by `GL_VERSION_4_5`.
|
|
915
911
|
*
|
|
916
|
-
* @param texture - `GLuint`, object
|
|
912
|
+
* @param texture - `GLuint`, object class `texture`
|
|
917
913
|
* @param level - `GLint`
|
|
918
914
|
* @param xoffset - `GLint`
|
|
919
915
|
* @param width - `GLsizei`
|
|
@@ -928,7 +924,7 @@ export declare function compressedTextureSubImage1D(texture: GLuint, level: GLin
|
|
|
928
924
|
*
|
|
929
925
|
* Provided by `GL_VERSION_4_5`.
|
|
930
926
|
*
|
|
931
|
-
* @param texture - `GLuint`, object
|
|
927
|
+
* @param texture - `GLuint`, object class `texture`
|
|
932
928
|
* @param level - `GLint`
|
|
933
929
|
* @param xoffset - `GLint`
|
|
934
930
|
* @param yoffset - `GLint`
|
|
@@ -945,7 +941,7 @@ export declare function compressedTextureSubImage2D(texture: GLuint, level: GLin
|
|
|
945
941
|
*
|
|
946
942
|
* Provided by `GL_VERSION_4_5`.
|
|
947
943
|
*
|
|
948
|
-
* @param texture - `GLuint`, object
|
|
944
|
+
* @param texture - `GLuint`, object class `texture`
|
|
949
945
|
* @param level - `GLint`
|
|
950
946
|
* @param xoffset - `GLint`
|
|
951
947
|
* @param yoffset - `GLint`
|
|
@@ -1000,8 +996,8 @@ export declare function copyImageSubData(srcName: GLuint, srcTarget: CopyImageSu
|
|
|
1000
996
|
*
|
|
1001
997
|
* Provided by `GL_VERSION_4_5`.
|
|
1002
998
|
*
|
|
1003
|
-
* @param readBuffer - `GLuint`, object
|
|
1004
|
-
* @param writeBuffer - `GLuint`, object
|
|
999
|
+
* @param readBuffer - `GLuint`, object class `buffer`
|
|
1000
|
+
* @param writeBuffer - `GLuint`, object class `buffer`
|
|
1005
1001
|
* @param readOffset - `GLintptr`
|
|
1006
1002
|
* @param writeOffset - `GLintptr`
|
|
1007
1003
|
* @param size - `GLsizeiptr`
|
|
@@ -1091,7 +1087,7 @@ export declare function copyTexSubImage3D(target: TextureTarget, level: GLint, x
|
|
|
1091
1087
|
*
|
|
1092
1088
|
* Provided by `GL_VERSION_4_5`.
|
|
1093
1089
|
*
|
|
1094
|
-
* @param texture - `GLuint`, object
|
|
1090
|
+
* @param texture - `GLuint`, object class `texture`
|
|
1095
1091
|
* @param level - `GLint`
|
|
1096
1092
|
* @param xoffset - `GLint`
|
|
1097
1093
|
* @param x - `GLint`
|
|
@@ -1105,7 +1101,7 @@ export declare function copyTextureSubImage1D(texture: GLuint, level: GLint, xof
|
|
|
1105
1101
|
*
|
|
1106
1102
|
* Provided by `GL_VERSION_4_5`.
|
|
1107
1103
|
*
|
|
1108
|
-
* @param texture - `GLuint`, object
|
|
1104
|
+
* @param texture - `GLuint`, object class `texture`
|
|
1109
1105
|
* @param level - `GLint`
|
|
1110
1106
|
* @param xoffset - `GLint`
|
|
1111
1107
|
* @param yoffset - `GLint`
|
|
@@ -1121,7 +1117,7 @@ export declare function copyTextureSubImage2D(texture: GLuint, level: GLint, xof
|
|
|
1121
1117
|
*
|
|
1122
1118
|
* Provided by `GL_VERSION_4_5`.
|
|
1123
1119
|
*
|
|
1124
|
-
* @param texture - `GLuint`, object
|
|
1120
|
+
* @param texture - `GLuint`, object class `texture`
|
|
1125
1121
|
* @param level - `GLint`
|
|
1126
1122
|
* @param xoffset - `GLint`
|
|
1127
1123
|
* @param yoffset - `GLint`
|
|
@@ -1298,7 +1294,7 @@ export declare function debugMessageInsert(source: DebugSource, type: DebugType,
|
|
|
1298
1294
|
* Provided by `GL_VERSION_1_5`.
|
|
1299
1295
|
*
|
|
1300
1296
|
* @param n - `GLsizei`
|
|
1301
|
-
* @param buffers - `const GLuint *`, length `n`, object
|
|
1297
|
+
* @param buffers - `const GLuint *`, length `n`, object class `buffer`
|
|
1302
1298
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteBuffers.xhtml
|
|
1303
1299
|
*/
|
|
1304
1300
|
export declare function deleteBuffers(n: GLsizei, buffers: GLuint[] | Uint32Array): void;
|
|
@@ -1308,7 +1304,7 @@ export declare function deleteBuffers(n: GLsizei, buffers: GLuint[] | Uint32Arra
|
|
|
1308
1304
|
* Provided by `GL_VERSION_3_0`.
|
|
1309
1305
|
*
|
|
1310
1306
|
* @param n - `GLsizei`
|
|
1311
|
-
* @param framebuffers - `const GLuint *`, length `n`, object
|
|
1307
|
+
* @param framebuffers - `const GLuint *`, length `n`, object class `framebuffer`
|
|
1312
1308
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteFramebuffers.xhtml
|
|
1313
1309
|
*/
|
|
1314
1310
|
export declare function deleteFramebuffers(n: GLsizei, framebuffers: GLuint[] | Uint32Array): void;
|
|
@@ -1317,7 +1313,7 @@ export declare function deleteFramebuffers(n: GLsizei, framebuffers: GLuint[] |
|
|
|
1317
1313
|
*
|
|
1318
1314
|
* Provided by `GL_VERSION_2_0`.
|
|
1319
1315
|
*
|
|
1320
|
-
* @param program - `GLuint`, object
|
|
1316
|
+
* @param program - `GLuint`, object class `program`
|
|
1321
1317
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteProgram.xhtml
|
|
1322
1318
|
*/
|
|
1323
1319
|
export declare function deleteProgram(program: GLuint): void;
|
|
@@ -1327,7 +1323,7 @@ export declare function deleteProgram(program: GLuint): void;
|
|
|
1327
1323
|
* Provided by `GL_VERSION_4_1`.
|
|
1328
1324
|
*
|
|
1329
1325
|
* @param n - `GLsizei`
|
|
1330
|
-
* @param pipelines - `const GLuint *`, length `n`, object
|
|
1326
|
+
* @param pipelines - `const GLuint *`, length `n`, object class `program pipeline`
|
|
1331
1327
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteProgramPipelines.xhtml
|
|
1332
1328
|
*/
|
|
1333
1329
|
export declare function deleteProgramPipelines(n: GLsizei, pipelines: GLuint[] | Uint32Array): void;
|
|
@@ -1337,7 +1333,7 @@ export declare function deleteProgramPipelines(n: GLsizei, pipelines: GLuint[] |
|
|
|
1337
1333
|
* Provided by `GL_VERSION_1_5`.
|
|
1338
1334
|
*
|
|
1339
1335
|
* @param n - `GLsizei`
|
|
1340
|
-
* @param ids - `const GLuint *`, length `n`, object
|
|
1336
|
+
* @param ids - `const GLuint *`, length `n`, object class `query`
|
|
1341
1337
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteQueries.xhtml
|
|
1342
1338
|
*/
|
|
1343
1339
|
export declare function deleteQueries(n: GLsizei, ids: GLuint[] | Uint32Array): void;
|
|
@@ -1347,7 +1343,7 @@ export declare function deleteQueries(n: GLsizei, ids: GLuint[] | Uint32Array):
|
|
|
1347
1343
|
* Provided by `GL_VERSION_3_0`.
|
|
1348
1344
|
*
|
|
1349
1345
|
* @param n - `GLsizei`
|
|
1350
|
-
* @param renderbuffers - `const GLuint *`, length `n`, object
|
|
1346
|
+
* @param renderbuffers - `const GLuint *`, length `n`, object class `renderbuffer`
|
|
1351
1347
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteRenderbuffers.xhtml
|
|
1352
1348
|
*/
|
|
1353
1349
|
export declare function deleteRenderbuffers(n: GLsizei, renderbuffers: GLuint[] | Uint32Array): void;
|
|
@@ -1357,7 +1353,7 @@ export declare function deleteRenderbuffers(n: GLsizei, renderbuffers: GLuint[]
|
|
|
1357
1353
|
* Provided by `GL_VERSION_3_3`.
|
|
1358
1354
|
*
|
|
1359
1355
|
* @param count - `GLsizei`
|
|
1360
|
-
* @param samplers - `const GLuint *`, length `count`, object
|
|
1356
|
+
* @param samplers - `const GLuint *`, length `count`, object class `sampler`
|
|
1361
1357
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteSamplers.xhtml
|
|
1362
1358
|
*/
|
|
1363
1359
|
export declare function deleteSamplers(count: GLsizei, samplers: GLuint[] | Uint32Array): void;
|
|
@@ -1366,7 +1362,7 @@ export declare function deleteSamplers(count: GLsizei, samplers: GLuint[] | Uint
|
|
|
1366
1362
|
*
|
|
1367
1363
|
* Provided by `GL_VERSION_2_0`.
|
|
1368
1364
|
*
|
|
1369
|
-
* @param shader - `GLuint`, object
|
|
1365
|
+
* @param shader - `GLuint`, object class `shader`
|
|
1370
1366
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteShader.xhtml
|
|
1371
1367
|
*/
|
|
1372
1368
|
export declare function deleteShader(shader: GLuint): void;
|
|
@@ -1375,7 +1371,7 @@ export declare function deleteShader(shader: GLuint): void;
|
|
|
1375
1371
|
*
|
|
1376
1372
|
* Provided by `GL_VERSION_3_2`.
|
|
1377
1373
|
*
|
|
1378
|
-
* @param sync - `GLsync`, object
|
|
1374
|
+
* @param sync - `GLsync`, object class `sync`
|
|
1379
1375
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteSync.xhtml
|
|
1380
1376
|
*/
|
|
1381
1377
|
export declare function deleteSync(sync: GLsync): void;
|
|
@@ -1385,7 +1381,7 @@ export declare function deleteSync(sync: GLsync): void;
|
|
|
1385
1381
|
* Provided by `GL_VERSION_1_1`.
|
|
1386
1382
|
*
|
|
1387
1383
|
* @param n - `GLsizei`
|
|
1388
|
-
* @param textures - `const GLuint *`, length `n`, object
|
|
1384
|
+
* @param textures - `const GLuint *`, length `n`, object class `texture`
|
|
1389
1385
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteTextures.xhtml
|
|
1390
1386
|
*/
|
|
1391
1387
|
export declare function deleteTextures(n: GLsizei, textures: GLuint[] | Uint32Array): void;
|
|
@@ -1395,7 +1391,7 @@ export declare function deleteTextures(n: GLsizei, textures: GLuint[] | Uint32Ar
|
|
|
1395
1391
|
* Provided by `GL_VERSION_4_0`.
|
|
1396
1392
|
*
|
|
1397
1393
|
* @param n - `GLsizei`
|
|
1398
|
-
* @param ids - `const GLuint *`, length `n`, object
|
|
1394
|
+
* @param ids - `const GLuint *`, length `n`, object class `transform feedback`
|
|
1399
1395
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteTransformFeedbacks.xhtml
|
|
1400
1396
|
*/
|
|
1401
1397
|
export declare function deleteTransformFeedbacks(n: GLsizei, ids: GLuint[] | Uint32Array): void;
|
|
@@ -1405,7 +1401,7 @@ export declare function deleteTransformFeedbacks(n: GLsizei, ids: GLuint[] | Uin
|
|
|
1405
1401
|
* Provided by `GL_VERSION_3_0`.
|
|
1406
1402
|
*
|
|
1407
1403
|
* @param n - `GLsizei`
|
|
1408
|
-
* @param arrays - `const GLuint *`, length `n`, object
|
|
1404
|
+
* @param arrays - `const GLuint *`, length `n`, object class `vertex array`
|
|
1409
1405
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteVertexArrays.xhtml
|
|
1410
1406
|
*/
|
|
1411
1407
|
export declare function deleteVertexArrays(n: GLsizei, arrays: GLuint[] | Uint32Array): void;
|
|
@@ -1474,8 +1470,8 @@ export declare function depthRangeIndexed(index: GLuint, n: GLdouble, f: GLdoubl
|
|
|
1474
1470
|
*
|
|
1475
1471
|
* Provided by `GL_VERSION_2_0`.
|
|
1476
1472
|
*
|
|
1477
|
-
* @param program - `GLuint`, object
|
|
1478
|
-
* @param shader - `GLuint`, object
|
|
1473
|
+
* @param program - `GLuint`, object class `program`
|
|
1474
|
+
* @param shader - `GLuint`, object class `shader`
|
|
1479
1475
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDetachShader.xhtml
|
|
1480
1476
|
*/
|
|
1481
1477
|
export declare function detachShader(program: GLuint, shader: GLuint): void;
|
|
@@ -1503,7 +1499,7 @@ export declare function disablei(target: EnableCap, index: GLuint): void;
|
|
|
1503
1499
|
*
|
|
1504
1500
|
* Provided by `GL_VERSION_4_5`.
|
|
1505
1501
|
*
|
|
1506
|
-
* @param vaobj - `GLuint`, object
|
|
1502
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
1507
1503
|
* @param index - `GLuint`
|
|
1508
1504
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDisableVertexArrayAttrib.xhtml
|
|
1509
1505
|
*/
|
|
@@ -1729,7 +1725,7 @@ export declare function drawRangeElementsBaseVertex(mode: PrimitiveType, start:
|
|
|
1729
1725
|
* Provided by `GL_VERSION_4_0`.
|
|
1730
1726
|
*
|
|
1731
1727
|
* @param mode - `GLenum`, group `PrimitiveType`
|
|
1732
|
-
* @param id - `GLuint`, object
|
|
1728
|
+
* @param id - `GLuint`, object class `transform feedback`
|
|
1733
1729
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDrawTransformFeedback.xhtml
|
|
1734
1730
|
*/
|
|
1735
1731
|
export declare function drawTransformFeedback(mode: PrimitiveType, id: GLuint): void;
|
|
@@ -1739,7 +1735,7 @@ export declare function drawTransformFeedback(mode: PrimitiveType, id: GLuint):
|
|
|
1739
1735
|
* Provided by `GL_VERSION_4_2`.
|
|
1740
1736
|
*
|
|
1741
1737
|
* @param mode - `GLenum`, group `PrimitiveType`
|
|
1742
|
-
* @param id - `GLuint`, object
|
|
1738
|
+
* @param id - `GLuint`, object class `transform feedback`
|
|
1743
1739
|
* @param instancecount - `GLsizei`
|
|
1744
1740
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDrawTransformFeedbackInstanced.xhtml
|
|
1745
1741
|
*/
|
|
@@ -1750,7 +1746,7 @@ export declare function drawTransformFeedbackInstanced(mode: PrimitiveType, id:
|
|
|
1750
1746
|
* Provided by `GL_VERSION_4_0`.
|
|
1751
1747
|
*
|
|
1752
1748
|
* @param mode - `GLenum`, group `PrimitiveType`
|
|
1753
|
-
* @param id - `GLuint`, object
|
|
1749
|
+
* @param id - `GLuint`, object class `transform feedback`
|
|
1754
1750
|
* @param stream - `GLuint`
|
|
1755
1751
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDrawTransformFeedbackStream.xhtml
|
|
1756
1752
|
*/
|
|
@@ -1761,7 +1757,7 @@ export declare function drawTransformFeedbackStream(mode: PrimitiveType, id: GLu
|
|
|
1761
1757
|
* Provided by `GL_VERSION_4_2`.
|
|
1762
1758
|
*
|
|
1763
1759
|
* @param mode - `GLenum`, group `PrimitiveType`
|
|
1764
|
-
* @param id - `GLuint`, object
|
|
1760
|
+
* @param id - `GLuint`, object class `transform feedback`
|
|
1765
1761
|
* @param stream - `GLuint`
|
|
1766
1762
|
* @param instancecount - `GLsizei`
|
|
1767
1763
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDrawTransformFeedbackStreamInstanced.xhtml
|
|
@@ -1791,7 +1787,7 @@ export declare function enablei(target: EnableCap, index: GLuint): void;
|
|
|
1791
1787
|
*
|
|
1792
1788
|
* Provided by `GL_VERSION_4_5`.
|
|
1793
1789
|
*
|
|
1794
|
-
* @param vaobj - `GLuint`, object
|
|
1790
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
1795
1791
|
* @param index - `GLuint`
|
|
1796
1792
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glEnableVertexArrayAttrib.xhtml
|
|
1797
1793
|
*/
|
|
@@ -1879,7 +1875,7 @@ export declare function flushMappedBufferRange(target: BufferTargetARB, offset:
|
|
|
1879
1875
|
*
|
|
1880
1876
|
* Provided by `GL_VERSION_4_5`.
|
|
1881
1877
|
*
|
|
1882
|
-
* @param buffer - `GLuint`, object
|
|
1878
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
1883
1879
|
* @param offset - `GLintptr`
|
|
1884
1880
|
* @param length - `GLsizeiptr`
|
|
1885
1881
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glFlushMappedNamedBufferRange.xhtml
|
|
@@ -1904,7 +1900,7 @@ export declare function framebufferParameteri(target: FramebufferTarget, pname:
|
|
|
1904
1900
|
* @param target - `GLenum`, group `FramebufferTarget`
|
|
1905
1901
|
* @param attachment - `GLenum`, group `FramebufferAttachment`
|
|
1906
1902
|
* @param renderbuffertarget - `GLenum`, group `RenderbufferTarget`
|
|
1907
|
-
* @param renderbuffer - `GLuint`, object
|
|
1903
|
+
* @param renderbuffer - `GLuint`, object class `renderbuffer`
|
|
1908
1904
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glFramebufferRenderbuffer.xhtml
|
|
1909
1905
|
*/
|
|
1910
1906
|
export declare function framebufferRenderbuffer(target: FramebufferTarget, attachment: FramebufferAttachment, renderbuffertarget: RenderbufferTarget, renderbuffer: GLuint): void;
|
|
@@ -1915,7 +1911,7 @@ export declare function framebufferRenderbuffer(target: FramebufferTarget, attac
|
|
|
1915
1911
|
*
|
|
1916
1912
|
* @param target - `GLenum`, group `FramebufferTarget`
|
|
1917
1913
|
* @param attachment - `GLenum`, group `FramebufferAttachment`
|
|
1918
|
-
* @param texture - `GLuint`, object
|
|
1914
|
+
* @param texture - `GLuint`, object class `texture`
|
|
1919
1915
|
* @param level - `GLint`
|
|
1920
1916
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glFramebufferTexture.xhtml
|
|
1921
1917
|
*/
|
|
@@ -1928,7 +1924,7 @@ export declare function framebufferTexture(target: FramebufferTarget, attachment
|
|
|
1928
1924
|
* @param target - `GLenum`, group `FramebufferTarget`
|
|
1929
1925
|
* @param attachment - `GLenum`, group `FramebufferAttachment`
|
|
1930
1926
|
* @param textarget - `GLenum`, group `TextureTarget`
|
|
1931
|
-
* @param texture - `GLuint`, object
|
|
1927
|
+
* @param texture - `GLuint`, object class `texture`
|
|
1932
1928
|
* @param level - `GLint`
|
|
1933
1929
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glFramebufferTexture1D.xhtml
|
|
1934
1930
|
*/
|
|
@@ -1941,7 +1937,7 @@ export declare function framebufferTexture1D(target: FramebufferTarget, attachme
|
|
|
1941
1937
|
* @param target - `GLenum`, group `FramebufferTarget`
|
|
1942
1938
|
* @param attachment - `GLenum`, group `FramebufferAttachment`
|
|
1943
1939
|
* @param textarget - `GLenum`, group `TextureTarget`
|
|
1944
|
-
* @param texture - `GLuint`, object
|
|
1940
|
+
* @param texture - `GLuint`, object class `texture`
|
|
1945
1941
|
* @param level - `GLint`
|
|
1946
1942
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glFramebufferTexture2D.xhtml
|
|
1947
1943
|
*/
|
|
@@ -1954,7 +1950,7 @@ export declare function framebufferTexture2D(target: FramebufferTarget, attachme
|
|
|
1954
1950
|
* @param target - `GLenum`, group `FramebufferTarget`
|
|
1955
1951
|
* @param attachment - `GLenum`, group `FramebufferAttachment`
|
|
1956
1952
|
* @param textarget - `GLenum`, group `TextureTarget`
|
|
1957
|
-
* @param texture - `GLuint`, object
|
|
1953
|
+
* @param texture - `GLuint`, object class `texture`
|
|
1958
1954
|
* @param level - `GLint`
|
|
1959
1955
|
* @param zoffset - `GLint`
|
|
1960
1956
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glFramebufferTexture3D.xhtml
|
|
@@ -1967,7 +1963,7 @@ export declare function framebufferTexture3D(target: FramebufferTarget, attachme
|
|
|
1967
1963
|
*
|
|
1968
1964
|
* @param target - `GLenum`, group `FramebufferTarget`
|
|
1969
1965
|
* @param attachment - `GLenum`, group `FramebufferAttachment`
|
|
1970
|
-
* @param texture - `GLuint`, object
|
|
1966
|
+
* @param texture - `GLuint`, object class `texture`
|
|
1971
1967
|
* @param level - `GLint`
|
|
1972
1968
|
* @param layer - `GLint`
|
|
1973
1969
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glFramebufferTextureLayer.xhtml
|
|
@@ -2006,7 +2002,7 @@ export declare function generateMipmap(target: TextureTarget): void;
|
|
|
2006
2002
|
*
|
|
2007
2003
|
* Provided by `GL_VERSION_4_5`.
|
|
2008
2004
|
*
|
|
2009
|
-
* @param texture - `GLuint`, object
|
|
2005
|
+
* @param texture - `GLuint`, object class `texture`
|
|
2010
2006
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGenerateTextureMipmap.xhtml
|
|
2011
2007
|
*/
|
|
2012
2008
|
export declare function generateTextureMipmap(texture: GLuint): void;
|
|
@@ -2095,7 +2091,7 @@ export declare function genVertexArrays(n: GLsizei): GLuint[];
|
|
|
2095
2091
|
*
|
|
2096
2092
|
* Provided by `GL_VERSION_2_0`.
|
|
2097
2093
|
*
|
|
2098
|
-
* @param program - `GLuint`, object
|
|
2094
|
+
* @param program - `GLuint`, object class `program`
|
|
2099
2095
|
* @param index - `GLuint`
|
|
2100
2096
|
* @param bufSize - `GLsizei`
|
|
2101
2097
|
* @returns Tuple of `length` (`GLsizei *`), `size` (`GLint *`), `type` (`GLenum *`), `name` (`GLchar *`)
|
|
@@ -2107,7 +2103,7 @@ export declare function getActiveAttrib(program: GLuint, index: GLuint, bufSize:
|
|
|
2107
2103
|
*
|
|
2108
2104
|
* Provided by `GL_VERSION_4_0`.
|
|
2109
2105
|
*
|
|
2110
|
-
* @param program - `GLuint`, object
|
|
2106
|
+
* @param program - `GLuint`, object class `program`
|
|
2111
2107
|
* @param shadertype - `GLenum`, group `ShaderType`
|
|
2112
2108
|
* @param index - `GLuint`
|
|
2113
2109
|
* @param bufSize - `GLsizei`
|
|
@@ -2120,7 +2116,7 @@ export declare function getActiveSubroutineName(program: GLuint, shadertype: Sha
|
|
|
2120
2116
|
*
|
|
2121
2117
|
* Provided by `GL_VERSION_4_0`.
|
|
2122
2118
|
*
|
|
2123
|
-
* @param program - `GLuint`, object
|
|
2119
|
+
* @param program - `GLuint`, object class `program`
|
|
2124
2120
|
* @param shadertype - `GLenum`, group `ShaderType`
|
|
2125
2121
|
* @param index - `GLuint`
|
|
2126
2122
|
* @param bufSize - `GLsizei`
|
|
@@ -2133,7 +2129,7 @@ export declare function getActiveSubroutineUniformName(program: GLuint, shaderty
|
|
|
2133
2129
|
*
|
|
2134
2130
|
* Provided by `GL_VERSION_2_0`.
|
|
2135
2131
|
*
|
|
2136
|
-
* @param program - `GLuint`, object
|
|
2132
|
+
* @param program - `GLuint`, object class `program`
|
|
2137
2133
|
* @param index - `GLuint`
|
|
2138
2134
|
* @param bufSize - `GLsizei`
|
|
2139
2135
|
* @returns Tuple of `length` (`GLsizei *`), `size` (`GLint *`), `type` (`GLenum *`), `name` (`GLchar *`)
|
|
@@ -2145,7 +2141,7 @@ export declare function getActiveUniform(program: GLuint, index: GLuint, bufSize
|
|
|
2145
2141
|
*
|
|
2146
2142
|
* Provided by `GL_VERSION_3_1`.
|
|
2147
2143
|
*
|
|
2148
|
-
* @param program - `GLuint`, object
|
|
2144
|
+
* @param program - `GLuint`, object class `program`
|
|
2149
2145
|
* @param uniformBlockIndex - `GLuint`
|
|
2150
2146
|
* @param bufSize - `GLsizei`
|
|
2151
2147
|
* @returns Tuple of `length` (`GLsizei *`), `uniformBlockName` (`GLchar *`)
|
|
@@ -2157,7 +2153,7 @@ export declare function getActiveUniformBlockName(program: GLuint, uniformBlockI
|
|
|
2157
2153
|
*
|
|
2158
2154
|
* Provided by `GL_VERSION_3_1`.
|
|
2159
2155
|
*
|
|
2160
|
-
* @param program - `GLuint`, object
|
|
2156
|
+
* @param program - `GLuint`, object class `program`
|
|
2161
2157
|
* @param uniformIndex - `GLuint`
|
|
2162
2158
|
* @param bufSize - `GLsizei`
|
|
2163
2159
|
* @returns Tuple of `length` (`GLsizei *`), `uniformName` (`GLchar *`)
|
|
@@ -2169,7 +2165,7 @@ export declare function getActiveUniformName(program: GLuint, uniformIndex: GLui
|
|
|
2169
2165
|
*
|
|
2170
2166
|
* Provided by `GL_VERSION_2_0`.
|
|
2171
2167
|
*
|
|
2172
|
-
* @param program - `GLuint`, object
|
|
2168
|
+
* @param program - `GLuint`, object class `program`
|
|
2173
2169
|
* @param maxCount - `GLsizei`
|
|
2174
2170
|
* @returns Tuple of `count` (`GLsizei *`), `shaders` (`GLuint *`)
|
|
2175
2171
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetAttachedShaders.xhtml
|
|
@@ -2180,7 +2176,7 @@ export declare function getAttachedShaders(program: GLuint, maxCount: GLsizei):
|
|
|
2180
2176
|
*
|
|
2181
2177
|
* Provided by `GL_VERSION_2_0`.
|
|
2182
2178
|
*
|
|
2183
|
-
* @param program - `GLuint`, object
|
|
2179
|
+
* @param program - `GLuint`, object class `program`
|
|
2184
2180
|
* @param name - `const GLchar *`
|
|
2185
2181
|
* @returns `GLint`
|
|
2186
2182
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetAttribLocation.xhtml
|
|
@@ -2236,7 +2232,7 @@ export declare function getCompressedTexImage(target: TextureTarget, level: GLin
|
|
|
2236
2232
|
*
|
|
2237
2233
|
* Provided by `GL_VERSION_4_5`.
|
|
2238
2234
|
*
|
|
2239
|
-
* @param texture - `GLuint`, object
|
|
2235
|
+
* @param texture - `GLuint`, object class `texture`
|
|
2240
2236
|
* @param level - `GLint`
|
|
2241
2237
|
* @param bufSize - `GLsizei`
|
|
2242
2238
|
* @param pixels - `void *`, length `bufSize`
|
|
@@ -2248,7 +2244,7 @@ export declare function getCompressedTextureImage(texture: GLuint, level: GLint,
|
|
|
2248
2244
|
*
|
|
2249
2245
|
* Provided by `GL_VERSION_4_5`.
|
|
2250
2246
|
*
|
|
2251
|
-
* @param texture - `GLuint`, object
|
|
2247
|
+
* @param texture - `GLuint`, object class `texture`
|
|
2252
2248
|
* @param level - `GLint`
|
|
2253
2249
|
* @param xoffset - `GLint`
|
|
2254
2250
|
* @param yoffset - `GLint`
|
|
@@ -2285,7 +2281,7 @@ export declare function getError(): ErrorCode;
|
|
|
2285
2281
|
*
|
|
2286
2282
|
* Provided by `GL_VERSION_3_3`.
|
|
2287
2283
|
*
|
|
2288
|
-
* @param program - `GLuint`, object
|
|
2284
|
+
* @param program - `GLuint`, object class `program`
|
|
2289
2285
|
* @param name - `const GLchar *`
|
|
2290
2286
|
* @returns `GLint`
|
|
2291
2287
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetFragDataIndex.xhtml
|
|
@@ -2296,7 +2292,7 @@ export declare function getFragDataIndex(program: GLuint, name: string): GLint;
|
|
|
2296
2292
|
*
|
|
2297
2293
|
* Provided by `GL_VERSION_3_0`.
|
|
2298
2294
|
*
|
|
2299
|
-
* @param program - `GLuint`, object
|
|
2295
|
+
* @param program - `GLuint`, object class `program`
|
|
2300
2296
|
* @param name - `const GLchar *`, length `COMPSIZE(name)`
|
|
2301
2297
|
* @returns `GLint`
|
|
2302
2298
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetFragDataLocation.xhtml
|
|
@@ -2364,7 +2360,7 @@ export declare function getInternalformativ(target: TextureTarget, internalforma
|
|
|
2364
2360
|
*
|
|
2365
2361
|
* Provided by `GL_VERSION_4_5`.
|
|
2366
2362
|
*
|
|
2367
|
-
* @param buffer - `GLuint`, object
|
|
2363
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
2368
2364
|
* @param pname - `GLenum`, group `BufferPNameARB`
|
|
2369
2365
|
* @returns `params` (`GLint64 *`)
|
|
2370
2366
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetNamedBufferParameteri64v.xhtml
|
|
@@ -2375,7 +2371,7 @@ export declare function getNamedBufferParameteri64v(buffer: GLuint, pname: Buffe
|
|
|
2375
2371
|
*
|
|
2376
2372
|
* Provided by `GL_VERSION_4_5`.
|
|
2377
2373
|
*
|
|
2378
|
-
* @param buffer - `GLuint`, object
|
|
2374
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
2379
2375
|
* @param pname - `GLenum`, group `BufferPNameARB`
|
|
2380
2376
|
* @returns `params` (`GLint *`)
|
|
2381
2377
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetNamedBufferParameteriv.xhtml
|
|
@@ -2386,7 +2382,7 @@ export declare function getNamedBufferParameteriv(buffer: GLuint, pname: BufferP
|
|
|
2386
2382
|
*
|
|
2387
2383
|
* Provided by `GL_VERSION_4_5`.
|
|
2388
2384
|
*
|
|
2389
|
-
* @param buffer - `GLuint`, object
|
|
2385
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
2390
2386
|
* @param offset - `GLintptr`
|
|
2391
2387
|
* @param size - `GLsizeiptr`
|
|
2392
2388
|
* @param data - `void *`, length `size`
|
|
@@ -2398,7 +2394,7 @@ export declare function getNamedBufferSubData(buffer: GLuint, offset: GLintptr,
|
|
|
2398
2394
|
*
|
|
2399
2395
|
* Provided by `GL_VERSION_4_5`.
|
|
2400
2396
|
*
|
|
2401
|
-
* @param framebuffer - `GLuint`, object
|
|
2397
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
2402
2398
|
* @param attachment - `GLenum`, group `FramebufferAttachment`
|
|
2403
2399
|
* @param pname - `GLenum`, group `FramebufferAttachmentParameterName`
|
|
2404
2400
|
* @returns `params` (`GLint *`)
|
|
@@ -2410,7 +2406,7 @@ export declare function getNamedFramebufferAttachmentParameteriv(framebuffer: GL
|
|
|
2410
2406
|
*
|
|
2411
2407
|
* Provided by `GL_VERSION_4_5`.
|
|
2412
2408
|
*
|
|
2413
|
-
* @param framebuffer - `GLuint`, object
|
|
2409
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
2414
2410
|
* @param pname - `GLenum`, group `GetFramebufferParameter`
|
|
2415
2411
|
* @returns `param` (`GLint *`)
|
|
2416
2412
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetNamedFramebufferParameteriv.xhtml
|
|
@@ -2421,7 +2417,7 @@ export declare function getNamedFramebufferParameteriv(framebuffer: GLuint, pnam
|
|
|
2421
2417
|
*
|
|
2422
2418
|
* Provided by `GL_VERSION_4_5`.
|
|
2423
2419
|
*
|
|
2424
|
-
* @param renderbuffer - `GLuint`, object
|
|
2420
|
+
* @param renderbuffer - `GLuint`, object class `renderbuffer`
|
|
2425
2421
|
* @param pname - `GLenum`, group `RenderbufferParameterName`
|
|
2426
2422
|
* @returns `params` (`GLint *`)
|
|
2427
2423
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetNamedRenderbufferParameteriv.xhtml
|
|
@@ -2481,7 +2477,7 @@ export declare function getObjectPtrLabel(ptr: ArrayBufferView | GLintptr | null
|
|
|
2481
2477
|
*
|
|
2482
2478
|
* Provided by `GL_VERSION_4_1`.
|
|
2483
2479
|
*
|
|
2484
|
-
* @param program - `GLuint`, object
|
|
2480
|
+
* @param program - `GLuint`, object class `program`
|
|
2485
2481
|
* @param bufSize - `GLsizei`
|
|
2486
2482
|
* @param binary - `void *`, length `bufSize`
|
|
2487
2483
|
* @returns Tuple of `length` (`GLsizei *`), `binaryFormat` (`GLenum *`)
|
|
@@ -2493,7 +2489,7 @@ export declare function getProgramBinary(program: GLuint, bufSize: GLsizei, bina
|
|
|
2493
2489
|
*
|
|
2494
2490
|
* Provided by `GL_VERSION_2_0`.
|
|
2495
2491
|
*
|
|
2496
|
-
* @param program - `GLuint`, object
|
|
2492
|
+
* @param program - `GLuint`, object class `program`
|
|
2497
2493
|
* @param pname - `GLenum`, group `ProgramPropertyARB`
|
|
2498
2494
|
* @returns `params` (`GLint *`)
|
|
2499
2495
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetProgramiv.xhtml
|
|
@@ -2504,7 +2500,7 @@ export declare function getProgramiv(program: GLuint, pname: ProgramPropertyARB)
|
|
|
2504
2500
|
*
|
|
2505
2501
|
* Provided by `GL_VERSION_4_1`.
|
|
2506
2502
|
*
|
|
2507
|
-
* @param pipeline - `GLuint`, object
|
|
2503
|
+
* @param pipeline - `GLuint`, object class `program pipeline`
|
|
2508
2504
|
* @param pname - `GLenum`, group `PipelineParameterName`
|
|
2509
2505
|
* @returns `params` (`GLint *`)
|
|
2510
2506
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetProgramPipelineiv.xhtml
|
|
@@ -2515,7 +2511,7 @@ export declare function getProgramPipelineiv(pipeline: GLuint, pname: PipelinePa
|
|
|
2515
2511
|
*
|
|
2516
2512
|
* Provided by `GL_VERSION_4_3`.
|
|
2517
2513
|
*
|
|
2518
|
-
* @param program - `GLuint`, object
|
|
2514
|
+
* @param program - `GLuint`, object class `program`
|
|
2519
2515
|
* @param programInterface - `GLenum`, group `ProgramInterface`
|
|
2520
2516
|
* @param name - `const GLchar *`, length `COMPSIZE(name)`
|
|
2521
2517
|
* @returns `GLuint`
|
|
@@ -2527,7 +2523,7 @@ export declare function getProgramResourceIndex(program: GLuint, programInterfac
|
|
|
2527
2523
|
*
|
|
2528
2524
|
* Provided by `GL_VERSION_4_3`.
|
|
2529
2525
|
*
|
|
2530
|
-
* @param program - `GLuint`, object
|
|
2526
|
+
* @param program - `GLuint`, object class `program`
|
|
2531
2527
|
* @param programInterface - `GLenum`, group `ProgramInterface`
|
|
2532
2528
|
* @param index - `GLuint`
|
|
2533
2529
|
* @param propCount - `GLsizei`
|
|
@@ -2542,7 +2538,7 @@ export declare function getProgramResourceiv(program: GLuint, programInterface:
|
|
|
2542
2538
|
*
|
|
2543
2539
|
* Provided by `GL_VERSION_4_3`.
|
|
2544
2540
|
*
|
|
2545
|
-
* @param program - `GLuint`, object
|
|
2541
|
+
* @param program - `GLuint`, object class `program`
|
|
2546
2542
|
* @param programInterface - `GLenum`, group `ProgramInterface`
|
|
2547
2543
|
* @param name - `const GLchar *`, length `COMPSIZE(name)`
|
|
2548
2544
|
* @returns `GLint`
|
|
@@ -2554,7 +2550,7 @@ export declare function getProgramResourceLocation(program: GLuint, programInter
|
|
|
2554
2550
|
*
|
|
2555
2551
|
* Provided by `GL_VERSION_4_3`.
|
|
2556
2552
|
*
|
|
2557
|
-
* @param program - `GLuint`, object
|
|
2553
|
+
* @param program - `GLuint`, object class `program`
|
|
2558
2554
|
* @param programInterface - `GLenum`, group `ProgramInterface`
|
|
2559
2555
|
* @param name - `const GLchar *`, length `COMPSIZE(name)`
|
|
2560
2556
|
* @returns `GLint`
|
|
@@ -2566,7 +2562,7 @@ export declare function getProgramResourceLocationIndex(program: GLuint, program
|
|
|
2566
2562
|
*
|
|
2567
2563
|
* Provided by `GL_VERSION_4_3`.
|
|
2568
2564
|
*
|
|
2569
|
-
* @param program - `GLuint`, object
|
|
2565
|
+
* @param program - `GLuint`, object class `program`
|
|
2570
2566
|
* @param programInterface - `GLenum`, group `ProgramInterface`
|
|
2571
2567
|
* @param index - `GLuint`
|
|
2572
2568
|
* @param bufSize - `GLsizei`
|
|
@@ -2579,7 +2575,7 @@ export declare function getProgramResourceName(program: GLuint, programInterface
|
|
|
2579
2575
|
*
|
|
2580
2576
|
* Provided by `GL_VERSION_4_0`.
|
|
2581
2577
|
*
|
|
2582
|
-
* @param program - `GLuint`, object
|
|
2578
|
+
* @param program - `GLuint`, object class `program`
|
|
2583
2579
|
* @param shadertype - `GLenum`, group `ShaderType`
|
|
2584
2580
|
* @param pname - `GLenum`, group `ProgramStagePName`
|
|
2585
2581
|
* @returns `values` (`GLint *`)
|
|
@@ -2591,8 +2587,8 @@ export declare function getProgramStageiv(program: GLuint, shadertype: ShaderTyp
|
|
|
2591
2587
|
*
|
|
2592
2588
|
* Provided by `GL_VERSION_4_5`.
|
|
2593
2589
|
*
|
|
2594
|
-
* @param id - `GLuint`, object
|
|
2595
|
-
* @param buffer - `GLuint`, object
|
|
2590
|
+
* @param id - `GLuint`, object class `query`
|
|
2591
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
2596
2592
|
* @param pname - `GLenum`, group `QueryObjectParameterName`
|
|
2597
2593
|
* @param offset - `GLintptr`
|
|
2598
2594
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetQueryBufferObjecti64v.xhtml
|
|
@@ -2603,8 +2599,8 @@ export declare function getQueryBufferObjecti64v(id: GLuint, buffer: GLuint, pna
|
|
|
2603
2599
|
*
|
|
2604
2600
|
* Provided by `GL_VERSION_4_5`.
|
|
2605
2601
|
*
|
|
2606
|
-
* @param id - `GLuint`, object
|
|
2607
|
-
* @param buffer - `GLuint`, object
|
|
2602
|
+
* @param id - `GLuint`, object class `query`
|
|
2603
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
2608
2604
|
* @param pname - `GLenum`, group `QueryObjectParameterName`
|
|
2609
2605
|
* @param offset - `GLintptr`
|
|
2610
2606
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetQueryBufferObjectiv.xhtml
|
|
@@ -2615,8 +2611,8 @@ export declare function getQueryBufferObjectiv(id: GLuint, buffer: GLuint, pname
|
|
|
2615
2611
|
*
|
|
2616
2612
|
* Provided by `GL_VERSION_4_5`.
|
|
2617
2613
|
*
|
|
2618
|
-
* @param id - `GLuint`, object
|
|
2619
|
-
* @param buffer - `GLuint`, object
|
|
2614
|
+
* @param id - `GLuint`, object class `query`
|
|
2615
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
2620
2616
|
* @param pname - `GLenum`, group `QueryObjectParameterName`
|
|
2621
2617
|
* @param offset - `GLintptr`
|
|
2622
2618
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetQueryBufferObjectui64v.xhtml
|
|
@@ -2627,8 +2623,8 @@ export declare function getQueryBufferObjectui64v(id: GLuint, buffer: GLuint, pn
|
|
|
2627
2623
|
*
|
|
2628
2624
|
* Provided by `GL_VERSION_4_5`.
|
|
2629
2625
|
*
|
|
2630
|
-
* @param id - `GLuint`, object
|
|
2631
|
-
* @param buffer - `GLuint`, object
|
|
2626
|
+
* @param id - `GLuint`, object class `query`
|
|
2627
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
2632
2628
|
* @param pname - `GLenum`, group `QueryObjectParameterName`
|
|
2633
2629
|
* @param offset - `GLintptr`
|
|
2634
2630
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetQueryBufferObjectuiv.xhtml
|
|
@@ -2650,7 +2646,7 @@ export declare function getQueryiv(target: QueryTarget, pname: QueryParameterNam
|
|
|
2650
2646
|
*
|
|
2651
2647
|
* Provided by `GL_VERSION_3_3`.
|
|
2652
2648
|
*
|
|
2653
|
-
* @param id - `GLuint`, object
|
|
2649
|
+
* @param id - `GLuint`, object class `query`
|
|
2654
2650
|
* @param pname - `GLenum`, group `QueryObjectParameterName`
|
|
2655
2651
|
* @returns `params` (`GLint64 *`)
|
|
2656
2652
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetQueryObjecti64v.xhtml
|
|
@@ -2661,7 +2657,7 @@ export declare function getQueryObjecti64v(id: GLuint, pname: QueryObjectParamet
|
|
|
2661
2657
|
*
|
|
2662
2658
|
* Provided by `GL_VERSION_1_5`.
|
|
2663
2659
|
*
|
|
2664
|
-
* @param id - `GLuint`, object
|
|
2660
|
+
* @param id - `GLuint`, object class `query`
|
|
2665
2661
|
* @param pname - `GLenum`, group `QueryObjectParameterName`
|
|
2666
2662
|
* @returns `params` (`GLint *`)
|
|
2667
2663
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetQueryObjectiv.xhtml
|
|
@@ -2672,7 +2668,7 @@ export declare function getQueryObjectiv(id: GLuint, pname: QueryObjectParameter
|
|
|
2672
2668
|
*
|
|
2673
2669
|
* Provided by `GL_VERSION_3_3`.
|
|
2674
2670
|
*
|
|
2675
|
-
* @param id - `GLuint`, object
|
|
2671
|
+
* @param id - `GLuint`, object class `query`
|
|
2676
2672
|
* @param pname - `GLenum`, group `QueryObjectParameterName`
|
|
2677
2673
|
* @returns `params` (`GLuint64 *`)
|
|
2678
2674
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetQueryObjectui64v.xhtml
|
|
@@ -2683,7 +2679,7 @@ export declare function getQueryObjectui64v(id: GLuint, pname: QueryObjectParame
|
|
|
2683
2679
|
*
|
|
2684
2680
|
* Provided by `GL_VERSION_1_5`.
|
|
2685
2681
|
*
|
|
2686
|
-
* @param id - `GLuint`, object
|
|
2682
|
+
* @param id - `GLuint`, object class `query`
|
|
2687
2683
|
* @param pname - `GLenum`, group `QueryObjectParameterName`
|
|
2688
2684
|
* @returns `params` (`GLuint *`)
|
|
2689
2685
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetQueryObjectuiv.xhtml
|
|
@@ -2705,7 +2701,7 @@ export declare function getRenderbufferParameteriv(target: RenderbufferTarget, p
|
|
|
2705
2701
|
*
|
|
2706
2702
|
* Provided by `GL_VERSION_2_0`.
|
|
2707
2703
|
*
|
|
2708
|
-
* @param shader - `GLuint`, object
|
|
2704
|
+
* @param shader - `GLuint`, object class `shader`
|
|
2709
2705
|
* @param pname - `GLenum`, group `ShaderParameterName`
|
|
2710
2706
|
* @returns `params` (`GLint *`)
|
|
2711
2707
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetShaderiv.xhtml
|
|
@@ -2727,7 +2723,7 @@ export declare function getShaderPrecisionFormat(shadertype: ShaderType, precisi
|
|
|
2727
2723
|
*
|
|
2728
2724
|
* Provided by `GL_VERSION_2_0`.
|
|
2729
2725
|
*
|
|
2730
|
-
* @param shader - `GLuint`, object
|
|
2726
|
+
* @param shader - `GLuint`, object class `shader`
|
|
2731
2727
|
* @param bufSize - `GLsizei`
|
|
2732
2728
|
* @returns Tuple of `length` (`GLsizei *`), `source` (`GLchar *`)
|
|
2733
2729
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetShaderSource.xhtml
|
|
@@ -2759,7 +2755,7 @@ export declare function getStringi(name: StringName, index: GLuint): string;
|
|
|
2759
2755
|
*
|
|
2760
2756
|
* Provided by `GL_VERSION_4_0`.
|
|
2761
2757
|
*
|
|
2762
|
-
* @param program - `GLuint`, object
|
|
2758
|
+
* @param program - `GLuint`, object class `program`
|
|
2763
2759
|
* @param shadertype - `GLenum`, group `ShaderType`
|
|
2764
2760
|
* @param name - `const GLchar *`
|
|
2765
2761
|
* @returns `GLuint`
|
|
@@ -2771,7 +2767,7 @@ export declare function getSubroutineIndex(program: GLuint, shadertype: ShaderTy
|
|
|
2771
2767
|
*
|
|
2772
2768
|
* Provided by `GL_VERSION_4_0`.
|
|
2773
2769
|
*
|
|
2774
|
-
* @param program - `GLuint`, object
|
|
2770
|
+
* @param program - `GLuint`, object class `program`
|
|
2775
2771
|
* @param shadertype - `GLenum`, group `ShaderType`
|
|
2776
2772
|
* @param name - `const GLchar *`
|
|
2777
2773
|
* @returns `GLint`
|
|
@@ -2783,7 +2779,7 @@ export declare function getSubroutineUniformLocation(program: GLuint, shadertype
|
|
|
2783
2779
|
*
|
|
2784
2780
|
* Provided by `GL_VERSION_3_2`.
|
|
2785
2781
|
*
|
|
2786
|
-
* @param sync - `GLsync`, object
|
|
2782
|
+
* @param sync - `GLsync`, object class `sync`
|
|
2787
2783
|
* @param pname - `GLenum`, group `SyncParameterName`
|
|
2788
2784
|
* @param count - `GLsizei`
|
|
2789
2785
|
* @returns Tuple of `length` (`GLsizei *`), `values` (`GLint *`)
|
|
@@ -2808,7 +2804,7 @@ export declare function getTexImage(target: TextureTarget, level: GLint, format:
|
|
|
2808
2804
|
*
|
|
2809
2805
|
* Provided by `GL_VERSION_4_5`.
|
|
2810
2806
|
*
|
|
2811
|
-
* @param texture - `GLuint`, object
|
|
2807
|
+
* @param texture - `GLuint`, object class `texture`
|
|
2812
2808
|
* @param level - `GLint`
|
|
2813
2809
|
* @param format - `GLenum`, group `PixelFormat`
|
|
2814
2810
|
* @param type - `GLenum`, group `PixelType`
|
|
@@ -2822,7 +2818,7 @@ export declare function getTextureImage(texture: GLuint, level: GLint, format: P
|
|
|
2822
2818
|
*
|
|
2823
2819
|
* Provided by `GL_VERSION_4_5`.
|
|
2824
2820
|
*
|
|
2825
|
-
* @param texture - `GLuint`, object
|
|
2821
|
+
* @param texture - `GLuint`, object class `texture`
|
|
2826
2822
|
* @param level - `GLint`
|
|
2827
2823
|
* @param pname - `GLenum`, group `GetTextureParameter`
|
|
2828
2824
|
* @returns `params` (`GLfloat *`)
|
|
@@ -2834,7 +2830,7 @@ export declare function getTextureLevelParameterfv(texture: GLuint, level: GLint
|
|
|
2834
2830
|
*
|
|
2835
2831
|
* Provided by `GL_VERSION_4_5`.
|
|
2836
2832
|
*
|
|
2837
|
-
* @param texture - `GLuint`, object
|
|
2833
|
+
* @param texture - `GLuint`, object class `texture`
|
|
2838
2834
|
* @param level - `GLint`
|
|
2839
2835
|
* @param pname - `GLenum`, group `GetTextureParameter`
|
|
2840
2836
|
* @returns `params` (`GLint *`)
|
|
@@ -2846,7 +2842,7 @@ export declare function getTextureLevelParameteriv(texture: GLuint, level: GLint
|
|
|
2846
2842
|
*
|
|
2847
2843
|
* Provided by `GL_VERSION_4_5`.
|
|
2848
2844
|
*
|
|
2849
|
-
* @param texture - `GLuint`, object
|
|
2845
|
+
* @param texture - `GLuint`, object class `texture`
|
|
2850
2846
|
* @param pname - `GLenum`, group `GetTextureParameter`
|
|
2851
2847
|
* @returns `params` (`GLfloat *`)
|
|
2852
2848
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetTextureParameterfv.xhtml
|
|
@@ -2857,7 +2853,7 @@ export declare function getTextureParameterfv(texture: GLuint, pname: GetTexture
|
|
|
2857
2853
|
*
|
|
2858
2854
|
* Provided by `GL_VERSION_4_5`.
|
|
2859
2855
|
*
|
|
2860
|
-
* @param texture - `GLuint`, object
|
|
2856
|
+
* @param texture - `GLuint`, object class `texture`
|
|
2861
2857
|
* @param pname - `GLenum`, group `GetTextureParameter`
|
|
2862
2858
|
* @returns `params` (`GLint *`)
|
|
2863
2859
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetTextureParameterIiv.xhtml
|
|
@@ -2868,7 +2864,7 @@ export declare function getTextureParameterIiv(texture: GLuint, pname: GetTextur
|
|
|
2868
2864
|
*
|
|
2869
2865
|
* Provided by `GL_VERSION_4_5`.
|
|
2870
2866
|
*
|
|
2871
|
-
* @param texture - `GLuint`, object
|
|
2867
|
+
* @param texture - `GLuint`, object class `texture`
|
|
2872
2868
|
* @param pname - `GLenum`, group `GetTextureParameter`
|
|
2873
2869
|
* @returns `params` (`GLuint *`)
|
|
2874
2870
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetTextureParameterIuiv.xhtml
|
|
@@ -2879,7 +2875,7 @@ export declare function getTextureParameterIuiv(texture: GLuint, pname: GetTextu
|
|
|
2879
2875
|
*
|
|
2880
2876
|
* Provided by `GL_VERSION_4_5`.
|
|
2881
2877
|
*
|
|
2882
|
-
* @param texture - `GLuint`, object
|
|
2878
|
+
* @param texture - `GLuint`, object class `texture`
|
|
2883
2879
|
* @param pname - `GLenum`, group `GetTextureParameter`
|
|
2884
2880
|
* @returns `params` (`GLint *`)
|
|
2885
2881
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetTextureParameteriv.xhtml
|
|
@@ -2890,7 +2886,7 @@ export declare function getTextureParameteriv(texture: GLuint, pname: GetTexture
|
|
|
2890
2886
|
*
|
|
2891
2887
|
* Provided by `GL_VERSION_4_5`.
|
|
2892
2888
|
*
|
|
2893
|
-
* @param texture - `GLuint`, object
|
|
2889
|
+
* @param texture - `GLuint`, object class `texture`
|
|
2894
2890
|
* @param level - `GLint`
|
|
2895
2891
|
* @param xoffset - `GLint`
|
|
2896
2892
|
* @param yoffset - `GLint`
|
|
@@ -2910,7 +2906,7 @@ export declare function getTextureSubImage(texture: GLuint, level: GLint, xoffse
|
|
|
2910
2906
|
*
|
|
2911
2907
|
* Provided by `GL_VERSION_4_5`.
|
|
2912
2908
|
*
|
|
2913
|
-
* @param xfb - `GLuint`, object
|
|
2909
|
+
* @param xfb - `GLuint`, object class `transform feedback`
|
|
2914
2910
|
* @param pname - `GLenum`, group `TransformFeedbackPName`
|
|
2915
2911
|
* @param index - `GLuint`
|
|
2916
2912
|
* @returns `param` (`GLint *`)
|
|
@@ -2922,7 +2918,7 @@ export declare function getTransformFeedbackiV(xfb: GLuint, pname: TransformFeed
|
|
|
2922
2918
|
*
|
|
2923
2919
|
* Provided by `GL_VERSION_4_5`.
|
|
2924
2920
|
*
|
|
2925
|
-
* @param xfb - `GLuint`, object
|
|
2921
|
+
* @param xfb - `GLuint`, object class `transform feedback`
|
|
2926
2922
|
* @param pname - `GLenum`, group `TransformFeedbackPName`
|
|
2927
2923
|
* @param index - `GLuint`
|
|
2928
2924
|
* @returns `param` (`GLint64 *`)
|
|
@@ -2934,7 +2930,7 @@ export declare function getTransformFeedbacki64V(xfb: GLuint, pname: TransformFe
|
|
|
2934
2930
|
*
|
|
2935
2931
|
* Provided by `GL_VERSION_4_5`.
|
|
2936
2932
|
*
|
|
2937
|
-
* @param xfb - `GLuint`, object
|
|
2933
|
+
* @param xfb - `GLuint`, object class `transform feedback`
|
|
2938
2934
|
* @param pname - `GLenum`, group `TransformFeedbackPName`
|
|
2939
2935
|
* @returns `param` (`GLint *`)
|
|
2940
2936
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetTransformFeedbackiv.xhtml
|
|
@@ -2945,7 +2941,7 @@ export declare function getTransformFeedbackiv(xfb: GLuint, pname: TransformFeed
|
|
|
2945
2941
|
*
|
|
2946
2942
|
* Provided by `GL_VERSION_3_0`.
|
|
2947
2943
|
*
|
|
2948
|
-
* @param program - `GLuint`, object
|
|
2944
|
+
* @param program - `GLuint`, object class `program`
|
|
2949
2945
|
* @param index - `GLuint`
|
|
2950
2946
|
* @param bufSize - `GLsizei`
|
|
2951
2947
|
* @returns Tuple of `length` (`GLsizei *`), `size` (`GLsizei *`), `type` (`GLenum *`), `name` (`GLchar *`)
|
|
@@ -2957,7 +2953,7 @@ export declare function getTransformFeedbackVarying(program: GLuint, index: GLui
|
|
|
2957
2953
|
*
|
|
2958
2954
|
* Provided by `GL_VERSION_3_1`.
|
|
2959
2955
|
*
|
|
2960
|
-
* @param program - `GLuint`, object
|
|
2956
|
+
* @param program - `GLuint`, object class `program`
|
|
2961
2957
|
* @param uniformBlockName - `const GLchar *`, length `COMPSIZE()`
|
|
2962
2958
|
* @returns `GLuint`
|
|
2963
2959
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetUniformBlockIndex.xhtml
|
|
@@ -2968,7 +2964,7 @@ export declare function getUniformBlockIndex(program: GLuint, uniformBlockName:
|
|
|
2968
2964
|
*
|
|
2969
2965
|
* Provided by `GL_VERSION_2_0`.
|
|
2970
2966
|
*
|
|
2971
|
-
* @param program - `GLuint`, object
|
|
2967
|
+
* @param program - `GLuint`, object class `program`
|
|
2972
2968
|
* @param name - `const GLchar *`
|
|
2973
2969
|
* @returns `GLint`
|
|
2974
2970
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetUniformLocation.xhtml
|
|
@@ -2990,7 +2986,7 @@ export declare function getUniformSubroutineuiv(shadertype: ShaderType, location
|
|
|
2990
2986
|
*
|
|
2991
2987
|
* Provided by `GL_VERSION_4_5`.
|
|
2992
2988
|
*
|
|
2993
|
-
* @param vaobj - `GLuint`, object
|
|
2989
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
2994
2990
|
* @param index - `GLuint`
|
|
2995
2991
|
* @param pname - `GLenum`, group `VertexArrayPName`
|
|
2996
2992
|
* @returns `param` (`GLint64 *`)
|
|
@@ -3002,7 +2998,7 @@ export declare function getVertexArrayIndexed64iv(vaobj: GLuint, index: GLuint,
|
|
|
3002
2998
|
*
|
|
3003
2999
|
* Provided by `GL_VERSION_4_5`.
|
|
3004
3000
|
*
|
|
3005
|
-
* @param vaobj - `GLuint`, object
|
|
3001
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
3006
3002
|
* @param index - `GLuint`
|
|
3007
3003
|
* @param pname - `GLenum`, group `VertexArrayPName`
|
|
3008
3004
|
* @returns `param` (`GLint *`)
|
|
@@ -3014,7 +3010,7 @@ export declare function getVertexArrayIndexediv(vaobj: GLuint, index: GLuint, pn
|
|
|
3014
3010
|
*
|
|
3015
3011
|
* Provided by `GL_VERSION_4_5`.
|
|
3016
3012
|
*
|
|
3017
|
-
* @param vaobj - `GLuint`, object
|
|
3013
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
3018
3014
|
* @param pname - `GLenum`, group `VertexArrayPName`
|
|
3019
3015
|
* @returns `param` (`GLint *`)
|
|
3020
3016
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetVertexArrayiv.xhtml
|
|
@@ -3090,7 +3086,7 @@ export declare function hint(target: HintTarget, mode: HintMode): void;
|
|
|
3090
3086
|
*
|
|
3091
3087
|
* Provided by `GL_VERSION_4_3`.
|
|
3092
3088
|
*
|
|
3093
|
-
* @param buffer - `GLuint`, object
|
|
3089
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
3094
3090
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glInvalidateBufferData.xhtml
|
|
3095
3091
|
*/
|
|
3096
3092
|
export declare function invalidateBufferData(buffer: GLuint): void;
|
|
@@ -3099,7 +3095,7 @@ export declare function invalidateBufferData(buffer: GLuint): void;
|
|
|
3099
3095
|
*
|
|
3100
3096
|
* Provided by `GL_VERSION_4_3`.
|
|
3101
3097
|
*
|
|
3102
|
-
* @param buffer - `GLuint`, object
|
|
3098
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
3103
3099
|
* @param offset - `GLintptr`
|
|
3104
3100
|
* @param length - `GLsizeiptr`
|
|
3105
3101
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glInvalidateBufferSubData.xhtml
|
|
@@ -3121,7 +3117,7 @@ export declare function invalidateFramebuffer(target: FramebufferTarget, numAtta
|
|
|
3121
3117
|
*
|
|
3122
3118
|
* Provided by `GL_VERSION_4_5`.
|
|
3123
3119
|
*
|
|
3124
|
-
* @param framebuffer - `GLuint`, object
|
|
3120
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
3125
3121
|
* @param numAttachments - `GLsizei`
|
|
3126
3122
|
* @param attachments - `const GLenum *`, group `FramebufferAttachment`, length `numAttachments`
|
|
3127
3123
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glInvalidateNamedFramebufferData.xhtml
|
|
@@ -3132,7 +3128,7 @@ export declare function invalidateNamedFramebufferData(framebuffer: GLuint, numA
|
|
|
3132
3128
|
*
|
|
3133
3129
|
* Provided by `GL_VERSION_4_5`.
|
|
3134
3130
|
*
|
|
3135
|
-
* @param framebuffer - `GLuint`, object
|
|
3131
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
3136
3132
|
* @param numAttachments - `GLsizei`
|
|
3137
3133
|
* @param attachments - `const GLenum *`, group `FramebufferAttachment`, length `numAttachments`
|
|
3138
3134
|
* @param x - `GLint`
|
|
@@ -3162,7 +3158,7 @@ export declare function invalidateSubFramebuffer(target: FramebufferTarget, numA
|
|
|
3162
3158
|
*
|
|
3163
3159
|
* Provided by `GL_VERSION_4_3`.
|
|
3164
3160
|
*
|
|
3165
|
-
* @param texture - `GLuint`, object
|
|
3161
|
+
* @param texture - `GLuint`, object class `texture`
|
|
3166
3162
|
* @param level - `GLint`
|
|
3167
3163
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glInvalidateTexImage.xhtml
|
|
3168
3164
|
*/
|
|
@@ -3172,7 +3168,7 @@ export declare function invalidateTexImage(texture: GLuint, level: GLint): void;
|
|
|
3172
3168
|
*
|
|
3173
3169
|
* Provided by `GL_VERSION_4_3`.
|
|
3174
3170
|
*
|
|
3175
|
-
* @param texture - `GLuint`, object
|
|
3171
|
+
* @param texture - `GLuint`, object class `texture`
|
|
3176
3172
|
* @param level - `GLint`
|
|
3177
3173
|
* @param xoffset - `GLint`
|
|
3178
3174
|
* @param yoffset - `GLint`
|
|
@@ -3188,7 +3184,7 @@ export declare function invalidateTexSubImage(texture: GLuint, level: GLint, xof
|
|
|
3188
3184
|
*
|
|
3189
3185
|
* Provided by `GL_VERSION_1_5`.
|
|
3190
3186
|
*
|
|
3191
|
-
* @param buffer - `GLuint`, object
|
|
3187
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
3192
3188
|
* @returns `GLboolean`
|
|
3193
3189
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsBuffer.xhtml
|
|
3194
3190
|
*/
|
|
@@ -3219,7 +3215,7 @@ export declare function isEnabledi(target: EnableCap, index: GLuint): boolean;
|
|
|
3219
3215
|
*
|
|
3220
3216
|
* Provided by `GL_VERSION_3_0`.
|
|
3221
3217
|
*
|
|
3222
|
-
* @param framebuffer - `GLuint`, object
|
|
3218
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
3223
3219
|
* @returns `GLboolean`
|
|
3224
3220
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsFramebuffer.xhtml
|
|
3225
3221
|
*/
|
|
@@ -3229,7 +3225,7 @@ export declare function isFramebuffer(framebuffer: GLuint): boolean;
|
|
|
3229
3225
|
*
|
|
3230
3226
|
* Provided by `GL_VERSION_2_0`.
|
|
3231
3227
|
*
|
|
3232
|
-
* @param program - `GLuint`, object
|
|
3228
|
+
* @param program - `GLuint`, object class `program`
|
|
3233
3229
|
* @returns `GLboolean`
|
|
3234
3230
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsProgram.xhtml
|
|
3235
3231
|
*/
|
|
@@ -3239,7 +3235,7 @@ export declare function isProgram(program: GLuint): boolean;
|
|
|
3239
3235
|
*
|
|
3240
3236
|
* Provided by `GL_VERSION_4_1`.
|
|
3241
3237
|
*
|
|
3242
|
-
* @param pipeline - `GLuint`, object
|
|
3238
|
+
* @param pipeline - `GLuint`, object class `program pipeline`
|
|
3243
3239
|
* @returns `GLboolean`
|
|
3244
3240
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsProgramPipeline.xhtml
|
|
3245
3241
|
*/
|
|
@@ -3249,7 +3245,7 @@ export declare function isProgramPipeline(pipeline: GLuint): boolean;
|
|
|
3249
3245
|
*
|
|
3250
3246
|
* Provided by `GL_VERSION_1_5`.
|
|
3251
3247
|
*
|
|
3252
|
-
* @param id - `GLuint`, object
|
|
3248
|
+
* @param id - `GLuint`, object class `query`
|
|
3253
3249
|
* @returns `GLboolean`
|
|
3254
3250
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsQuery.xhtml
|
|
3255
3251
|
*/
|
|
@@ -3259,7 +3255,7 @@ export declare function isQuery(id: GLuint): boolean;
|
|
|
3259
3255
|
*
|
|
3260
3256
|
* Provided by `GL_VERSION_3_0`.
|
|
3261
3257
|
*
|
|
3262
|
-
* @param renderbuffer - `GLuint`, object
|
|
3258
|
+
* @param renderbuffer - `GLuint`, object class `renderbuffer`
|
|
3263
3259
|
* @returns `GLboolean`
|
|
3264
3260
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsRenderbuffer.xhtml
|
|
3265
3261
|
*/
|
|
@@ -3269,7 +3265,7 @@ export declare function isRenderbuffer(renderbuffer: GLuint): boolean;
|
|
|
3269
3265
|
*
|
|
3270
3266
|
* Provided by `GL_VERSION_3_3`.
|
|
3271
3267
|
*
|
|
3272
|
-
* @param sampler - `GLuint`, object
|
|
3268
|
+
* @param sampler - `GLuint`, object class `sampler`
|
|
3273
3269
|
* @returns `GLboolean`
|
|
3274
3270
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsSampler.xhtml
|
|
3275
3271
|
*/
|
|
@@ -3279,7 +3275,7 @@ export declare function isSampler(sampler: GLuint): boolean;
|
|
|
3279
3275
|
*
|
|
3280
3276
|
* Provided by `GL_VERSION_2_0`.
|
|
3281
3277
|
*
|
|
3282
|
-
* @param shader - `GLuint`, object
|
|
3278
|
+
* @param shader - `GLuint`, object class `shader`
|
|
3283
3279
|
* @returns `GLboolean`
|
|
3284
3280
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsShader.xhtml
|
|
3285
3281
|
*/
|
|
@@ -3289,7 +3285,7 @@ export declare function isShader(shader: GLuint): boolean;
|
|
|
3289
3285
|
*
|
|
3290
3286
|
* Provided by `GL_VERSION_3_2`.
|
|
3291
3287
|
*
|
|
3292
|
-
* @param sync - `GLsync`, object
|
|
3288
|
+
* @param sync - `GLsync`, object class `sync`
|
|
3293
3289
|
* @returns `GLboolean`
|
|
3294
3290
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsSync.xhtml
|
|
3295
3291
|
*/
|
|
@@ -3299,7 +3295,7 @@ export declare function isSync(sync: GLsync): boolean;
|
|
|
3299
3295
|
*
|
|
3300
3296
|
* Provided by `GL_VERSION_1_1`.
|
|
3301
3297
|
*
|
|
3302
|
-
* @param texture - `GLuint`, object
|
|
3298
|
+
* @param texture - `GLuint`, object class `texture`
|
|
3303
3299
|
* @returns `GLboolean`
|
|
3304
3300
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsTexture.xhtml
|
|
3305
3301
|
*/
|
|
@@ -3309,7 +3305,7 @@ export declare function isTexture(texture: GLuint): boolean;
|
|
|
3309
3305
|
*
|
|
3310
3306
|
* Provided by `GL_VERSION_4_0`.
|
|
3311
3307
|
*
|
|
3312
|
-
* @param id - `GLuint`, object
|
|
3308
|
+
* @param id - `GLuint`, object class `transform feedback`
|
|
3313
3309
|
* @returns `GLboolean`
|
|
3314
3310
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsTransformFeedback.xhtml
|
|
3315
3311
|
*/
|
|
@@ -3319,7 +3315,7 @@ export declare function isTransformFeedback(id: GLuint): boolean;
|
|
|
3319
3315
|
*
|
|
3320
3316
|
* Provided by `GL_VERSION_3_0`.
|
|
3321
3317
|
*
|
|
3322
|
-
* @param array - `GLuint`, object
|
|
3318
|
+
* @param array - `GLuint`, object class `vertex array`
|
|
3323
3319
|
* @returns `GLboolean`
|
|
3324
3320
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glIsVertexArray.xhtml
|
|
3325
3321
|
*/
|
|
@@ -3338,7 +3334,7 @@ export declare function lineWidth(width: GLfloat): void;
|
|
|
3338
3334
|
*
|
|
3339
3335
|
* Provided by `GL_VERSION_2_0`.
|
|
3340
3336
|
*
|
|
3341
|
-
* @param program - `GLuint`, object
|
|
3337
|
+
* @param program - `GLuint`, object class `program`
|
|
3342
3338
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glLinkProgram.xhtml
|
|
3343
3339
|
*/
|
|
3344
3340
|
export declare function linkProgram(program: GLuint): void;
|
|
@@ -3380,7 +3376,7 @@ export declare function mapBufferRange(target: BufferTargetARB, offset: GLintptr
|
|
|
3380
3376
|
*
|
|
3381
3377
|
* Provided by `GL_VERSION_4_5`.
|
|
3382
3378
|
*
|
|
3383
|
-
* @param buffer - `GLuint`, object
|
|
3379
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
3384
3380
|
* @param access - `GLenum`, group `BufferAccessARB`
|
|
3385
3381
|
* @returns `void *`
|
|
3386
3382
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glMapNamedBuffer.xhtml
|
|
@@ -3391,7 +3387,7 @@ export declare function mapNamedBuffer(buffer: GLuint, access: BufferAccessARB):
|
|
|
3391
3387
|
*
|
|
3392
3388
|
* Provided by `GL_VERSION_4_5`.
|
|
3393
3389
|
*
|
|
3394
|
-
* @param buffer - `GLuint`, object
|
|
3390
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
3395
3391
|
* @param offset - `GLintptr`
|
|
3396
3392
|
* @param length - `GLsizeiptr`
|
|
3397
3393
|
* @param access - `GLbitfield`, group `MapBufferAccessMask`
|
|
@@ -3522,7 +3518,7 @@ export declare function multiDrawElementsIndirectCount(mode: PrimitiveType, type
|
|
|
3522
3518
|
*
|
|
3523
3519
|
* Provided by `GL_VERSION_4_5`.
|
|
3524
3520
|
*
|
|
3525
|
-
* @param buffer - `GLuint`, object
|
|
3521
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
3526
3522
|
* @param size - `GLsizeiptr`
|
|
3527
3523
|
* @param data - `const void *`, length `size`
|
|
3528
3524
|
* @param usage - `GLenum`, group `BufferUsageARB`
|
|
@@ -3534,7 +3530,7 @@ export declare function namedBufferData(buffer: GLuint, size: GLsizeiptr, data:
|
|
|
3534
3530
|
*
|
|
3535
3531
|
* Provided by `GL_VERSION_4_5`.
|
|
3536
3532
|
*
|
|
3537
|
-
* @param buffer - `GLuint`, object
|
|
3533
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
3538
3534
|
* @param size - `GLsizeiptr`
|
|
3539
3535
|
* @param data - `const void *`, length `size`
|
|
3540
3536
|
* @param flags - `GLbitfield`, group `BufferStorageMask`
|
|
@@ -3546,7 +3542,7 @@ export declare function namedBufferStorage(buffer: GLuint, size: GLsizeiptr, dat
|
|
|
3546
3542
|
*
|
|
3547
3543
|
* Provided by `GL_VERSION_4_5`.
|
|
3548
3544
|
*
|
|
3549
|
-
* @param buffer - `GLuint`, object
|
|
3545
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
3550
3546
|
* @param offset - `GLintptr`
|
|
3551
3547
|
* @param size - `GLsizeiptr`
|
|
3552
3548
|
* @param data - `const void *`, length `size`
|
|
@@ -3558,7 +3554,7 @@ export declare function namedBufferSubData(buffer: GLuint, offset: GLintptr, siz
|
|
|
3558
3554
|
*
|
|
3559
3555
|
* Provided by `GL_VERSION_4_5`.
|
|
3560
3556
|
*
|
|
3561
|
-
* @param framebuffer - `GLuint`, object
|
|
3557
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
3562
3558
|
* @param buf - `GLenum`, group `ColorBuffer`
|
|
3563
3559
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glNamedFramebufferDrawBuffer.xhtml
|
|
3564
3560
|
*/
|
|
@@ -3568,7 +3564,7 @@ export declare function namedFramebufferDrawBuffer(framebuffer: GLuint, buf: Col
|
|
|
3568
3564
|
*
|
|
3569
3565
|
* Provided by `GL_VERSION_4_5`.
|
|
3570
3566
|
*
|
|
3571
|
-
* @param framebuffer - `GLuint`, object
|
|
3567
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
3572
3568
|
* @param n - `GLsizei`
|
|
3573
3569
|
* @param bufs - `const GLenum *`, group `ColorBuffer`, length `n`
|
|
3574
3570
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glNamedFramebufferDrawBuffers.xhtml
|
|
@@ -3579,7 +3575,7 @@ export declare function namedFramebufferDrawBuffers(framebuffer: GLuint, n: GLsi
|
|
|
3579
3575
|
*
|
|
3580
3576
|
* Provided by `GL_VERSION_4_5`.
|
|
3581
3577
|
*
|
|
3582
|
-
* @param framebuffer - `GLuint`, object
|
|
3578
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
3583
3579
|
* @param pname - `GLenum`, group `FramebufferParameterName`
|
|
3584
3580
|
* @param param - `GLint`
|
|
3585
3581
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glNamedFramebufferParameteri.xhtml
|
|
@@ -3590,7 +3586,7 @@ export declare function namedFramebufferParameteri(framebuffer: GLuint, pname: F
|
|
|
3590
3586
|
*
|
|
3591
3587
|
* Provided by `GL_VERSION_4_5`.
|
|
3592
3588
|
*
|
|
3593
|
-
* @param framebuffer - `GLuint`, object
|
|
3589
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
3594
3590
|
* @param src - `GLenum`, group `ColorBuffer`
|
|
3595
3591
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glNamedFramebufferReadBuffer.xhtml
|
|
3596
3592
|
*/
|
|
@@ -3600,10 +3596,10 @@ export declare function namedFramebufferReadBuffer(framebuffer: GLuint, src: Col
|
|
|
3600
3596
|
*
|
|
3601
3597
|
* Provided by `GL_VERSION_4_5`.
|
|
3602
3598
|
*
|
|
3603
|
-
* @param framebuffer - `GLuint`, object
|
|
3599
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
3604
3600
|
* @param attachment - `GLenum`, group `FramebufferAttachment`
|
|
3605
3601
|
* @param renderbuffertarget - `GLenum`, group `RenderbufferTarget`
|
|
3606
|
-
* @param renderbuffer - `GLuint`, object
|
|
3602
|
+
* @param renderbuffer - `GLuint`, object class `renderbuffer`
|
|
3607
3603
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glNamedFramebufferRenderbuffer.xhtml
|
|
3608
3604
|
*/
|
|
3609
3605
|
export declare function namedFramebufferRenderbuffer(framebuffer: GLuint, attachment: FramebufferAttachment, renderbuffertarget: RenderbufferTarget, renderbuffer: GLuint): void;
|
|
@@ -3612,9 +3608,9 @@ export declare function namedFramebufferRenderbuffer(framebuffer: GLuint, attach
|
|
|
3612
3608
|
*
|
|
3613
3609
|
* Provided by `GL_VERSION_4_5`.
|
|
3614
3610
|
*
|
|
3615
|
-
* @param framebuffer - `GLuint`, object
|
|
3611
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
3616
3612
|
* @param attachment - `GLenum`, group `FramebufferAttachment`
|
|
3617
|
-
* @param texture - `GLuint`, object
|
|
3613
|
+
* @param texture - `GLuint`, object class `texture`
|
|
3618
3614
|
* @param level - `GLint`
|
|
3619
3615
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glNamedFramebufferTexture.xhtml
|
|
3620
3616
|
*/
|
|
@@ -3624,9 +3620,9 @@ export declare function namedFramebufferTexture(framebuffer: GLuint, attachment:
|
|
|
3624
3620
|
*
|
|
3625
3621
|
* Provided by `GL_VERSION_4_5`.
|
|
3626
3622
|
*
|
|
3627
|
-
* @param framebuffer - `GLuint`, object
|
|
3623
|
+
* @param framebuffer - `GLuint`, object class `framebuffer`
|
|
3628
3624
|
* @param attachment - `GLenum`, group `FramebufferAttachment`
|
|
3629
|
-
* @param texture - `GLuint`, object
|
|
3625
|
+
* @param texture - `GLuint`, object class `texture`
|
|
3630
3626
|
* @param level - `GLint`
|
|
3631
3627
|
* @param layer - `GLint`
|
|
3632
3628
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glNamedFramebufferTextureLayer.xhtml
|
|
@@ -3637,7 +3633,7 @@ export declare function namedFramebufferTextureLayer(framebuffer: GLuint, attach
|
|
|
3637
3633
|
*
|
|
3638
3634
|
* Provided by `GL_VERSION_4_5`.
|
|
3639
3635
|
*
|
|
3640
|
-
* @param renderbuffer - `GLuint`, object
|
|
3636
|
+
* @param renderbuffer - `GLuint`, object class `renderbuffer`
|
|
3641
3637
|
* @param internalformat - `GLenum`, group `InternalFormat`
|
|
3642
3638
|
* @param width - `GLsizei`
|
|
3643
3639
|
* @param height - `GLsizei`
|
|
@@ -3649,7 +3645,7 @@ export declare function namedRenderbufferStorage(renderbuffer: GLuint, internalf
|
|
|
3649
3645
|
*
|
|
3650
3646
|
* Provided by `GL_VERSION_4_5`.
|
|
3651
3647
|
*
|
|
3652
|
-
* @param renderbuffer - `GLuint`, object
|
|
3648
|
+
* @param renderbuffer - `GLuint`, object class `renderbuffer`
|
|
3653
3649
|
* @param samples - `GLsizei`
|
|
3654
3650
|
* @param internalformat - `GLenum`, group `InternalFormat`
|
|
3655
3651
|
* @param width - `GLsizei`
|
|
@@ -3828,7 +3824,7 @@ export declare function primitiveRestartIndex(index: GLuint): void;
|
|
|
3828
3824
|
*
|
|
3829
3825
|
* Provided by `GL_VERSION_4_1`.
|
|
3830
3826
|
*
|
|
3831
|
-
* @param program - `GLuint`, object
|
|
3827
|
+
* @param program - `GLuint`, object class `program`
|
|
3832
3828
|
* @param binaryFormat - `GLenum`
|
|
3833
3829
|
* @param binary - `const void *`, length `length`
|
|
3834
3830
|
* @param length - `GLsizei`
|
|
@@ -3840,7 +3836,7 @@ export declare function programBinary(program: GLuint, binaryFormat: GLenum, bin
|
|
|
3840
3836
|
*
|
|
3841
3837
|
* Provided by `GL_VERSION_4_1`.
|
|
3842
3838
|
*
|
|
3843
|
-
* @param program - `GLuint`, object
|
|
3839
|
+
* @param program - `GLuint`, object class `program`
|
|
3844
3840
|
* @param pname - `GLenum`, group `ProgramParameterPName`
|
|
3845
3841
|
* @param value - `GLint`
|
|
3846
3842
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glProgramParameteri.xhtml
|
|
@@ -3851,7 +3847,7 @@ export declare function programParameteri(program: GLuint, pname: ProgramParamet
|
|
|
3851
3847
|
*
|
|
3852
3848
|
* Provided by `GL_VERSION_4_1`.
|
|
3853
3849
|
*
|
|
3854
|
-
* @param program - `GLuint`, object
|
|
3850
|
+
* @param program - `GLuint`, object class `program`
|
|
3855
3851
|
* @param location - `GLint`
|
|
3856
3852
|
* @param v0 - `GLdouble`
|
|
3857
3853
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glProgramUniform1d.xhtml
|
|
@@ -3862,7 +3858,7 @@ export declare function programUniform1d(program: GLuint, location: GLint, v0: G
|
|
|
3862
3858
|
*
|
|
3863
3859
|
* Provided by `GL_VERSION_4_1`.
|
|
3864
3860
|
*
|
|
3865
|
-
* @param program - `GLuint`, object
|
|
3861
|
+
* @param program - `GLuint`, object class `program`
|
|
3866
3862
|
* @param location - `GLint`
|
|
3867
3863
|
* @param count - `GLsizei`
|
|
3868
3864
|
* @param value - `const GLdouble *`, length `count`
|
|
@@ -3874,7 +3870,7 @@ export declare function programUniform1dv(program: GLuint, location: GLint, coun
|
|
|
3874
3870
|
*
|
|
3875
3871
|
* Provided by `GL_VERSION_4_1`.
|
|
3876
3872
|
*
|
|
3877
|
-
* @param program - `GLuint`, object
|
|
3873
|
+
* @param program - `GLuint`, object class `program`
|
|
3878
3874
|
* @param location - `GLint`
|
|
3879
3875
|
* @param v0 - `GLfloat`
|
|
3880
3876
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glProgramUniform1f.xhtml
|
|
@@ -3885,7 +3881,7 @@ export declare function programUniform1f(program: GLuint, location: GLint, v0: G
|
|
|
3885
3881
|
*
|
|
3886
3882
|
* Provided by `GL_VERSION_4_1`.
|
|
3887
3883
|
*
|
|
3888
|
-
* @param program - `GLuint`, object
|
|
3884
|
+
* @param program - `GLuint`, object class `program`
|
|
3889
3885
|
* @param location - `GLint`
|
|
3890
3886
|
* @param count - `GLsizei`
|
|
3891
3887
|
* @param value - `const GLfloat *`, length `count`
|
|
@@ -3897,7 +3893,7 @@ export declare function programUniform1fv(program: GLuint, location: GLint, coun
|
|
|
3897
3893
|
*
|
|
3898
3894
|
* Provided by `GL_VERSION_4_1`.
|
|
3899
3895
|
*
|
|
3900
|
-
* @param program - `GLuint`, object
|
|
3896
|
+
* @param program - `GLuint`, object class `program`
|
|
3901
3897
|
* @param location - `GLint`
|
|
3902
3898
|
* @param v0 - `GLint`
|
|
3903
3899
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glProgramUniform1i.xhtml
|
|
@@ -3908,7 +3904,7 @@ export declare function programUniform1i(program: GLuint, location: GLint, v0: G
|
|
|
3908
3904
|
*
|
|
3909
3905
|
* Provided by `GL_VERSION_4_1`.
|
|
3910
3906
|
*
|
|
3911
|
-
* @param program - `GLuint`, object
|
|
3907
|
+
* @param program - `GLuint`, object class `program`
|
|
3912
3908
|
* @param location - `GLint`
|
|
3913
3909
|
* @param count - `GLsizei`
|
|
3914
3910
|
* @param value - `const GLint *`, length `count`
|
|
@@ -3920,7 +3916,7 @@ export declare function programUniform1iv(program: GLuint, location: GLint, coun
|
|
|
3920
3916
|
*
|
|
3921
3917
|
* Provided by `GL_VERSION_4_1`.
|
|
3922
3918
|
*
|
|
3923
|
-
* @param program - `GLuint`, object
|
|
3919
|
+
* @param program - `GLuint`, object class `program`
|
|
3924
3920
|
* @param location - `GLint`
|
|
3925
3921
|
* @param v0 - `GLuint`
|
|
3926
3922
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glProgramUniform1ui.xhtml
|
|
@@ -3931,7 +3927,7 @@ export declare function programUniform1ui(program: GLuint, location: GLint, v0:
|
|
|
3931
3927
|
*
|
|
3932
3928
|
* Provided by `GL_VERSION_4_1`.
|
|
3933
3929
|
*
|
|
3934
|
-
* @param program - `GLuint`, object
|
|
3930
|
+
* @param program - `GLuint`, object class `program`
|
|
3935
3931
|
* @param location - `GLint`
|
|
3936
3932
|
* @param count - `GLsizei`
|
|
3937
3933
|
* @param value - `const GLuint *`, length `count`
|
|
@@ -3943,7 +3939,7 @@ export declare function programUniform1uiv(program: GLuint, location: GLint, cou
|
|
|
3943
3939
|
*
|
|
3944
3940
|
* Provided by `GL_VERSION_4_1`.
|
|
3945
3941
|
*
|
|
3946
|
-
* @param program - `GLuint`, object
|
|
3942
|
+
* @param program - `GLuint`, object class `program`
|
|
3947
3943
|
* @param location - `GLint`
|
|
3948
3944
|
* @param v0 - `GLdouble`
|
|
3949
3945
|
* @param v1 - `GLdouble`
|
|
@@ -3955,7 +3951,7 @@ export declare function programUniform2d(program: GLuint, location: GLint, v0: G
|
|
|
3955
3951
|
*
|
|
3956
3952
|
* Provided by `GL_VERSION_4_1`.
|
|
3957
3953
|
*
|
|
3958
|
-
* @param program - `GLuint`, object
|
|
3954
|
+
* @param program - `GLuint`, object class `program`
|
|
3959
3955
|
* @param location - `GLint`
|
|
3960
3956
|
* @param count - `GLsizei`
|
|
3961
3957
|
* @param value - `const GLdouble *`, length `count*2`
|
|
@@ -3967,7 +3963,7 @@ export declare function programUniform2dv(program: GLuint, location: GLint, coun
|
|
|
3967
3963
|
*
|
|
3968
3964
|
* Provided by `GL_VERSION_4_1`.
|
|
3969
3965
|
*
|
|
3970
|
-
* @param program - `GLuint`, object
|
|
3966
|
+
* @param program - `GLuint`, object class `program`
|
|
3971
3967
|
* @param location - `GLint`
|
|
3972
3968
|
* @param v0 - `GLfloat`
|
|
3973
3969
|
* @param v1 - `GLfloat`
|
|
@@ -3979,7 +3975,7 @@ export declare function programUniform2f(program: GLuint, location: GLint, v0: G
|
|
|
3979
3975
|
*
|
|
3980
3976
|
* Provided by `GL_VERSION_4_1`.
|
|
3981
3977
|
*
|
|
3982
|
-
* @param program - `GLuint`, object
|
|
3978
|
+
* @param program - `GLuint`, object class `program`
|
|
3983
3979
|
* @param location - `GLint`
|
|
3984
3980
|
* @param count - `GLsizei`
|
|
3985
3981
|
* @param value - `const GLfloat *`, length `count*2`
|
|
@@ -3991,7 +3987,7 @@ export declare function programUniform2fv(program: GLuint, location: GLint, coun
|
|
|
3991
3987
|
*
|
|
3992
3988
|
* Provided by `GL_VERSION_4_1`.
|
|
3993
3989
|
*
|
|
3994
|
-
* @param program - `GLuint`, object
|
|
3990
|
+
* @param program - `GLuint`, object class `program`
|
|
3995
3991
|
* @param location - `GLint`
|
|
3996
3992
|
* @param v0 - `GLint`
|
|
3997
3993
|
* @param v1 - `GLint`
|
|
@@ -4003,7 +3999,7 @@ export declare function programUniform2i(program: GLuint, location: GLint, v0: G
|
|
|
4003
3999
|
*
|
|
4004
4000
|
* Provided by `GL_VERSION_4_1`.
|
|
4005
4001
|
*
|
|
4006
|
-
* @param program - `GLuint`, object
|
|
4002
|
+
* @param program - `GLuint`, object class `program`
|
|
4007
4003
|
* @param location - `GLint`
|
|
4008
4004
|
* @param count - `GLsizei`
|
|
4009
4005
|
* @param value - `const GLint *`, length `count*2`
|
|
@@ -4015,7 +4011,7 @@ export declare function programUniform2iv(program: GLuint, location: GLint, coun
|
|
|
4015
4011
|
*
|
|
4016
4012
|
* Provided by `GL_VERSION_4_1`.
|
|
4017
4013
|
*
|
|
4018
|
-
* @param program - `GLuint`, object
|
|
4014
|
+
* @param program - `GLuint`, object class `program`
|
|
4019
4015
|
* @param location - `GLint`
|
|
4020
4016
|
* @param v0 - `GLuint`
|
|
4021
4017
|
* @param v1 - `GLuint`
|
|
@@ -4027,7 +4023,7 @@ export declare function programUniform2ui(program: GLuint, location: GLint, v0:
|
|
|
4027
4023
|
*
|
|
4028
4024
|
* Provided by `GL_VERSION_4_1`.
|
|
4029
4025
|
*
|
|
4030
|
-
* @param program - `GLuint`, object
|
|
4026
|
+
* @param program - `GLuint`, object class `program`
|
|
4031
4027
|
* @param location - `GLint`
|
|
4032
4028
|
* @param count - `GLsizei`
|
|
4033
4029
|
* @param value - `const GLuint *`, length `count*2`
|
|
@@ -4039,7 +4035,7 @@ export declare function programUniform2uiv(program: GLuint, location: GLint, cou
|
|
|
4039
4035
|
*
|
|
4040
4036
|
* Provided by `GL_VERSION_4_1`.
|
|
4041
4037
|
*
|
|
4042
|
-
* @param program - `GLuint`, object
|
|
4038
|
+
* @param program - `GLuint`, object class `program`
|
|
4043
4039
|
* @param location - `GLint`
|
|
4044
4040
|
* @param v0 - `GLdouble`
|
|
4045
4041
|
* @param v1 - `GLdouble`
|
|
@@ -4052,7 +4048,7 @@ export declare function programUniform3d(program: GLuint, location: GLint, v0: G
|
|
|
4052
4048
|
*
|
|
4053
4049
|
* Provided by `GL_VERSION_4_1`.
|
|
4054
4050
|
*
|
|
4055
|
-
* @param program - `GLuint`, object
|
|
4051
|
+
* @param program - `GLuint`, object class `program`
|
|
4056
4052
|
* @param location - `GLint`
|
|
4057
4053
|
* @param count - `GLsizei`
|
|
4058
4054
|
* @param value - `const GLdouble *`, length `count*3`
|
|
@@ -4064,7 +4060,7 @@ export declare function programUniform3dv(program: GLuint, location: GLint, coun
|
|
|
4064
4060
|
*
|
|
4065
4061
|
* Provided by `GL_VERSION_4_1`.
|
|
4066
4062
|
*
|
|
4067
|
-
* @param program - `GLuint`, object
|
|
4063
|
+
* @param program - `GLuint`, object class `program`
|
|
4068
4064
|
* @param location - `GLint`
|
|
4069
4065
|
* @param v0 - `GLfloat`
|
|
4070
4066
|
* @param v1 - `GLfloat`
|
|
@@ -4077,7 +4073,7 @@ export declare function programUniform3f(program: GLuint, location: GLint, v0: G
|
|
|
4077
4073
|
*
|
|
4078
4074
|
* Provided by `GL_VERSION_4_1`.
|
|
4079
4075
|
*
|
|
4080
|
-
* @param program - `GLuint`, object
|
|
4076
|
+
* @param program - `GLuint`, object class `program`
|
|
4081
4077
|
* @param location - `GLint`
|
|
4082
4078
|
* @param count - `GLsizei`
|
|
4083
4079
|
* @param value - `const GLfloat *`, length `count*3`
|
|
@@ -4089,7 +4085,7 @@ export declare function programUniform3fv(program: GLuint, location: GLint, coun
|
|
|
4089
4085
|
*
|
|
4090
4086
|
* Provided by `GL_VERSION_4_1`.
|
|
4091
4087
|
*
|
|
4092
|
-
* @param program - `GLuint`, object
|
|
4088
|
+
* @param program - `GLuint`, object class `program`
|
|
4093
4089
|
* @param location - `GLint`
|
|
4094
4090
|
* @param v0 - `GLint`
|
|
4095
4091
|
* @param v1 - `GLint`
|
|
@@ -4102,7 +4098,7 @@ export declare function programUniform3i(program: GLuint, location: GLint, v0: G
|
|
|
4102
4098
|
*
|
|
4103
4099
|
* Provided by `GL_VERSION_4_1`.
|
|
4104
4100
|
*
|
|
4105
|
-
* @param program - `GLuint`, object
|
|
4101
|
+
* @param program - `GLuint`, object class `program`
|
|
4106
4102
|
* @param location - `GLint`
|
|
4107
4103
|
* @param count - `GLsizei`
|
|
4108
4104
|
* @param value - `const GLint *`, length `count*3`
|
|
@@ -4114,7 +4110,7 @@ export declare function programUniform3iv(program: GLuint, location: GLint, coun
|
|
|
4114
4110
|
*
|
|
4115
4111
|
* Provided by `GL_VERSION_4_1`.
|
|
4116
4112
|
*
|
|
4117
|
-
* @param program - `GLuint`, object
|
|
4113
|
+
* @param program - `GLuint`, object class `program`
|
|
4118
4114
|
* @param location - `GLint`
|
|
4119
4115
|
* @param v0 - `GLuint`
|
|
4120
4116
|
* @param v1 - `GLuint`
|
|
@@ -4127,7 +4123,7 @@ export declare function programUniform3ui(program: GLuint, location: GLint, v0:
|
|
|
4127
4123
|
*
|
|
4128
4124
|
* Provided by `GL_VERSION_4_1`.
|
|
4129
4125
|
*
|
|
4130
|
-
* @param program - `GLuint`, object
|
|
4126
|
+
* @param program - `GLuint`, object class `program`
|
|
4131
4127
|
* @param location - `GLint`
|
|
4132
4128
|
* @param count - `GLsizei`
|
|
4133
4129
|
* @param value - `const GLuint *`, length `count*3`
|
|
@@ -4139,7 +4135,7 @@ export declare function programUniform3uiv(program: GLuint, location: GLint, cou
|
|
|
4139
4135
|
*
|
|
4140
4136
|
* Provided by `GL_VERSION_4_1`.
|
|
4141
4137
|
*
|
|
4142
|
-
* @param program - `GLuint`, object
|
|
4138
|
+
* @param program - `GLuint`, object class `program`
|
|
4143
4139
|
* @param location - `GLint`
|
|
4144
4140
|
* @param v0 - `GLdouble`
|
|
4145
4141
|
* @param v1 - `GLdouble`
|
|
@@ -4153,7 +4149,7 @@ export declare function programUniform4d(program: GLuint, location: GLint, v0: G
|
|
|
4153
4149
|
*
|
|
4154
4150
|
* Provided by `GL_VERSION_4_1`.
|
|
4155
4151
|
*
|
|
4156
|
-
* @param program - `GLuint`, object
|
|
4152
|
+
* @param program - `GLuint`, object class `program`
|
|
4157
4153
|
* @param location - `GLint`
|
|
4158
4154
|
* @param count - `GLsizei`
|
|
4159
4155
|
* @param value - `const GLdouble *`, length `count*4`
|
|
@@ -4165,7 +4161,7 @@ export declare function programUniform4dv(program: GLuint, location: GLint, coun
|
|
|
4165
4161
|
*
|
|
4166
4162
|
* Provided by `GL_VERSION_4_1`.
|
|
4167
4163
|
*
|
|
4168
|
-
* @param program - `GLuint`, object
|
|
4164
|
+
* @param program - `GLuint`, object class `program`
|
|
4169
4165
|
* @param location - `GLint`
|
|
4170
4166
|
* @param v0 - `GLfloat`
|
|
4171
4167
|
* @param v1 - `GLfloat`
|
|
@@ -4179,7 +4175,7 @@ export declare function programUniform4f(program: GLuint, location: GLint, v0: G
|
|
|
4179
4175
|
*
|
|
4180
4176
|
* Provided by `GL_VERSION_4_1`.
|
|
4181
4177
|
*
|
|
4182
|
-
* @param program - `GLuint`, object
|
|
4178
|
+
* @param program - `GLuint`, object class `program`
|
|
4183
4179
|
* @param location - `GLint`
|
|
4184
4180
|
* @param count - `GLsizei`
|
|
4185
4181
|
* @param value - `const GLfloat *`, length `count*4`
|
|
@@ -4191,7 +4187,7 @@ export declare function programUniform4fv(program: GLuint, location: GLint, coun
|
|
|
4191
4187
|
*
|
|
4192
4188
|
* Provided by `GL_VERSION_4_1`.
|
|
4193
4189
|
*
|
|
4194
|
-
* @param program - `GLuint`, object
|
|
4190
|
+
* @param program - `GLuint`, object class `program`
|
|
4195
4191
|
* @param location - `GLint`
|
|
4196
4192
|
* @param v0 - `GLint`
|
|
4197
4193
|
* @param v1 - `GLint`
|
|
@@ -4205,7 +4201,7 @@ export declare function programUniform4i(program: GLuint, location: GLint, v0: G
|
|
|
4205
4201
|
*
|
|
4206
4202
|
* Provided by `GL_VERSION_4_1`.
|
|
4207
4203
|
*
|
|
4208
|
-
* @param program - `GLuint`, object
|
|
4204
|
+
* @param program - `GLuint`, object class `program`
|
|
4209
4205
|
* @param location - `GLint`
|
|
4210
4206
|
* @param count - `GLsizei`
|
|
4211
4207
|
* @param value - `const GLint *`, length `count*4`
|
|
@@ -4217,7 +4213,7 @@ export declare function programUniform4iv(program: GLuint, location: GLint, coun
|
|
|
4217
4213
|
*
|
|
4218
4214
|
* Provided by `GL_VERSION_4_1`.
|
|
4219
4215
|
*
|
|
4220
|
-
* @param program - `GLuint`, object
|
|
4216
|
+
* @param program - `GLuint`, object class `program`
|
|
4221
4217
|
* @param location - `GLint`
|
|
4222
4218
|
* @param v0 - `GLuint`
|
|
4223
4219
|
* @param v1 - `GLuint`
|
|
@@ -4231,7 +4227,7 @@ export declare function programUniform4ui(program: GLuint, location: GLint, v0:
|
|
|
4231
4227
|
*
|
|
4232
4228
|
* Provided by `GL_VERSION_4_1`.
|
|
4233
4229
|
*
|
|
4234
|
-
* @param program - `GLuint`, object
|
|
4230
|
+
* @param program - `GLuint`, object class `program`
|
|
4235
4231
|
* @param location - `GLint`
|
|
4236
4232
|
* @param count - `GLsizei`
|
|
4237
4233
|
* @param value - `const GLuint *`, length `count*4`
|
|
@@ -4243,7 +4239,7 @@ export declare function programUniform4uiv(program: GLuint, location: GLint, cou
|
|
|
4243
4239
|
*
|
|
4244
4240
|
* Provided by `GL_VERSION_4_1`.
|
|
4245
4241
|
*
|
|
4246
|
-
* @param program - `GLuint`, object
|
|
4242
|
+
* @param program - `GLuint`, object class `program`
|
|
4247
4243
|
* @param location - `GLint`
|
|
4248
4244
|
* @param count - `GLsizei`
|
|
4249
4245
|
* @param transpose - `GLboolean`
|
|
@@ -4256,7 +4252,7 @@ export declare function programUniformMatrix2dv(program: GLuint, location: GLint
|
|
|
4256
4252
|
*
|
|
4257
4253
|
* Provided by `GL_VERSION_4_1`.
|
|
4258
4254
|
*
|
|
4259
|
-
* @param program - `GLuint`, object
|
|
4255
|
+
* @param program - `GLuint`, object class `program`
|
|
4260
4256
|
* @param location - `GLint`
|
|
4261
4257
|
* @param count - `GLsizei`
|
|
4262
4258
|
* @param transpose - `GLboolean`
|
|
@@ -4269,7 +4265,7 @@ export declare function programUniformMatrix2fv(program: GLuint, location: GLint
|
|
|
4269
4265
|
*
|
|
4270
4266
|
* Provided by `GL_VERSION_4_1`.
|
|
4271
4267
|
*
|
|
4272
|
-
* @param program - `GLuint`, object
|
|
4268
|
+
* @param program - `GLuint`, object class `program`
|
|
4273
4269
|
* @param location - `GLint`
|
|
4274
4270
|
* @param count - `GLsizei`
|
|
4275
4271
|
* @param transpose - `GLboolean`
|
|
@@ -4282,7 +4278,7 @@ export declare function programUniformMatrix2x3dv(program: GLuint, location: GLi
|
|
|
4282
4278
|
*
|
|
4283
4279
|
* Provided by `GL_VERSION_4_1`.
|
|
4284
4280
|
*
|
|
4285
|
-
* @param program - `GLuint`, object
|
|
4281
|
+
* @param program - `GLuint`, object class `program`
|
|
4286
4282
|
* @param location - `GLint`
|
|
4287
4283
|
* @param count - `GLsizei`
|
|
4288
4284
|
* @param transpose - `GLboolean`
|
|
@@ -4295,7 +4291,7 @@ export declare function programUniformMatrix2x3fv(program: GLuint, location: GLi
|
|
|
4295
4291
|
*
|
|
4296
4292
|
* Provided by `GL_VERSION_4_1`.
|
|
4297
4293
|
*
|
|
4298
|
-
* @param program - `GLuint`, object
|
|
4294
|
+
* @param program - `GLuint`, object class `program`
|
|
4299
4295
|
* @param location - `GLint`
|
|
4300
4296
|
* @param count - `GLsizei`
|
|
4301
4297
|
* @param transpose - `GLboolean`
|
|
@@ -4308,7 +4304,7 @@ export declare function programUniformMatrix2x4dv(program: GLuint, location: GLi
|
|
|
4308
4304
|
*
|
|
4309
4305
|
* Provided by `GL_VERSION_4_1`.
|
|
4310
4306
|
*
|
|
4311
|
-
* @param program - `GLuint`, object
|
|
4307
|
+
* @param program - `GLuint`, object class `program`
|
|
4312
4308
|
* @param location - `GLint`
|
|
4313
4309
|
* @param count - `GLsizei`
|
|
4314
4310
|
* @param transpose - `GLboolean`
|
|
@@ -4321,7 +4317,7 @@ export declare function programUniformMatrix2x4fv(program: GLuint, location: GLi
|
|
|
4321
4317
|
*
|
|
4322
4318
|
* Provided by `GL_VERSION_4_1`.
|
|
4323
4319
|
*
|
|
4324
|
-
* @param program - `GLuint`, object
|
|
4320
|
+
* @param program - `GLuint`, object class `program`
|
|
4325
4321
|
* @param location - `GLint`
|
|
4326
4322
|
* @param count - `GLsizei`
|
|
4327
4323
|
* @param transpose - `GLboolean`
|
|
@@ -4334,7 +4330,7 @@ export declare function programUniformMatrix3dv(program: GLuint, location: GLint
|
|
|
4334
4330
|
*
|
|
4335
4331
|
* Provided by `GL_VERSION_4_1`.
|
|
4336
4332
|
*
|
|
4337
|
-
* @param program - `GLuint`, object
|
|
4333
|
+
* @param program - `GLuint`, object class `program`
|
|
4338
4334
|
* @param location - `GLint`
|
|
4339
4335
|
* @param count - `GLsizei`
|
|
4340
4336
|
* @param transpose - `GLboolean`
|
|
@@ -4347,7 +4343,7 @@ export declare function programUniformMatrix3fv(program: GLuint, location: GLint
|
|
|
4347
4343
|
*
|
|
4348
4344
|
* Provided by `GL_VERSION_4_1`.
|
|
4349
4345
|
*
|
|
4350
|
-
* @param program - `GLuint`, object
|
|
4346
|
+
* @param program - `GLuint`, object class `program`
|
|
4351
4347
|
* @param location - `GLint`
|
|
4352
4348
|
* @param count - `GLsizei`
|
|
4353
4349
|
* @param transpose - `GLboolean`
|
|
@@ -4360,7 +4356,7 @@ export declare function programUniformMatrix3x2dv(program: GLuint, location: GLi
|
|
|
4360
4356
|
*
|
|
4361
4357
|
* Provided by `GL_VERSION_4_1`.
|
|
4362
4358
|
*
|
|
4363
|
-
* @param program - `GLuint`, object
|
|
4359
|
+
* @param program - `GLuint`, object class `program`
|
|
4364
4360
|
* @param location - `GLint`
|
|
4365
4361
|
* @param count - `GLsizei`
|
|
4366
4362
|
* @param transpose - `GLboolean`
|
|
@@ -4373,7 +4369,7 @@ export declare function programUniformMatrix3x2fv(program: GLuint, location: GLi
|
|
|
4373
4369
|
*
|
|
4374
4370
|
* Provided by `GL_VERSION_4_1`.
|
|
4375
4371
|
*
|
|
4376
|
-
* @param program - `GLuint`, object
|
|
4372
|
+
* @param program - `GLuint`, object class `program`
|
|
4377
4373
|
* @param location - `GLint`
|
|
4378
4374
|
* @param count - `GLsizei`
|
|
4379
4375
|
* @param transpose - `GLboolean`
|
|
@@ -4386,7 +4382,7 @@ export declare function programUniformMatrix3x4dv(program: GLuint, location: GLi
|
|
|
4386
4382
|
*
|
|
4387
4383
|
* Provided by `GL_VERSION_4_1`.
|
|
4388
4384
|
*
|
|
4389
|
-
* @param program - `GLuint`, object
|
|
4385
|
+
* @param program - `GLuint`, object class `program`
|
|
4390
4386
|
* @param location - `GLint`
|
|
4391
4387
|
* @param count - `GLsizei`
|
|
4392
4388
|
* @param transpose - `GLboolean`
|
|
@@ -4399,7 +4395,7 @@ export declare function programUniformMatrix3x4fv(program: GLuint, location: GLi
|
|
|
4399
4395
|
*
|
|
4400
4396
|
* Provided by `GL_VERSION_4_1`.
|
|
4401
4397
|
*
|
|
4402
|
-
* @param program - `GLuint`, object
|
|
4398
|
+
* @param program - `GLuint`, object class `program`
|
|
4403
4399
|
* @param location - `GLint`
|
|
4404
4400
|
* @param count - `GLsizei`
|
|
4405
4401
|
* @param transpose - `GLboolean`
|
|
@@ -4412,7 +4408,7 @@ export declare function programUniformMatrix4dv(program: GLuint, location: GLint
|
|
|
4412
4408
|
*
|
|
4413
4409
|
* Provided by `GL_VERSION_4_1`.
|
|
4414
4410
|
*
|
|
4415
|
-
* @param program - `GLuint`, object
|
|
4411
|
+
* @param program - `GLuint`, object class `program`
|
|
4416
4412
|
* @param location - `GLint`
|
|
4417
4413
|
* @param count - `GLsizei`
|
|
4418
4414
|
* @param transpose - `GLboolean`
|
|
@@ -4425,7 +4421,7 @@ export declare function programUniformMatrix4fv(program: GLuint, location: GLint
|
|
|
4425
4421
|
*
|
|
4426
4422
|
* Provided by `GL_VERSION_4_1`.
|
|
4427
4423
|
*
|
|
4428
|
-
* @param program - `GLuint`, object
|
|
4424
|
+
* @param program - `GLuint`, object class `program`
|
|
4429
4425
|
* @param location - `GLint`
|
|
4430
4426
|
* @param count - `GLsizei`
|
|
4431
4427
|
* @param transpose - `GLboolean`
|
|
@@ -4438,7 +4434,7 @@ export declare function programUniformMatrix4x2dv(program: GLuint, location: GLi
|
|
|
4438
4434
|
*
|
|
4439
4435
|
* Provided by `GL_VERSION_4_1`.
|
|
4440
4436
|
*
|
|
4441
|
-
* @param program - `GLuint`, object
|
|
4437
|
+
* @param program - `GLuint`, object class `program`
|
|
4442
4438
|
* @param location - `GLint`
|
|
4443
4439
|
* @param count - `GLsizei`
|
|
4444
4440
|
* @param transpose - `GLboolean`
|
|
@@ -4451,7 +4447,7 @@ export declare function programUniformMatrix4x2fv(program: GLuint, location: GLi
|
|
|
4451
4447
|
*
|
|
4452
4448
|
* Provided by `GL_VERSION_4_1`.
|
|
4453
4449
|
*
|
|
4454
|
-
* @param program - `GLuint`, object
|
|
4450
|
+
* @param program - `GLuint`, object class `program`
|
|
4455
4451
|
* @param location - `GLint`
|
|
4456
4452
|
* @param count - `GLsizei`
|
|
4457
4453
|
* @param transpose - `GLboolean`
|
|
@@ -4464,7 +4460,7 @@ export declare function programUniformMatrix4x3dv(program: GLuint, location: GLi
|
|
|
4464
4460
|
*
|
|
4465
4461
|
* Provided by `GL_VERSION_4_1`.
|
|
4466
4462
|
*
|
|
4467
|
-
* @param program - `GLuint`, object
|
|
4463
|
+
* @param program - `GLuint`, object class `program`
|
|
4468
4464
|
* @param location - `GLint`
|
|
4469
4465
|
* @param count - `GLsizei`
|
|
4470
4466
|
* @param transpose - `GLboolean`
|
|
@@ -4498,7 +4494,7 @@ export declare function pushDebugGroup(source: DebugSource, id: GLuint, length:
|
|
|
4498
4494
|
*
|
|
4499
4495
|
* Provided by `GL_VERSION_3_3`.
|
|
4500
4496
|
*
|
|
4501
|
-
* @param id - `GLuint`, object
|
|
4497
|
+
* @param id - `GLuint`, object class `query`
|
|
4502
4498
|
* @param target - `GLenum`, group `QueryCounterTarget`
|
|
4503
4499
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glQueryCounter.xhtml
|
|
4504
4500
|
*/
|
|
@@ -4607,7 +4603,7 @@ export declare function sampleMaski(maskNumber: GLuint, mask: GLbitfield): void;
|
|
|
4607
4603
|
*
|
|
4608
4604
|
* Provided by `GL_VERSION_3_3`.
|
|
4609
4605
|
*
|
|
4610
|
-
* @param sampler - `GLuint`, object
|
|
4606
|
+
* @param sampler - `GLuint`, object class `sampler`
|
|
4611
4607
|
* @param pname - `GLenum`, group `SamplerParameterF`
|
|
4612
4608
|
* @param param - `GLfloat`
|
|
4613
4609
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glSamplerParameterf.xhtml
|
|
@@ -4618,7 +4614,7 @@ export declare function samplerParameterf(sampler: GLuint, pname: SamplerParamet
|
|
|
4618
4614
|
*
|
|
4619
4615
|
* Provided by `GL_VERSION_3_3`.
|
|
4620
4616
|
*
|
|
4621
|
-
* @param sampler - `GLuint`, object
|
|
4617
|
+
* @param sampler - `GLuint`, object class `sampler`
|
|
4622
4618
|
* @param pname - `GLenum`, group `SamplerParameterF`
|
|
4623
4619
|
* @param param - `const GLfloat *`, length `COMPSIZE(pname)`
|
|
4624
4620
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glSamplerParameterfv.xhtml
|
|
@@ -4629,7 +4625,7 @@ export declare function samplerParameterfv(sampler: GLuint, pname: SamplerParame
|
|
|
4629
4625
|
*
|
|
4630
4626
|
* Provided by `GL_VERSION_3_3`.
|
|
4631
4627
|
*
|
|
4632
|
-
* @param sampler - `GLuint`, object
|
|
4628
|
+
* @param sampler - `GLuint`, object class `sampler`
|
|
4633
4629
|
* @param pname - `GLenum`, group `SamplerParameterI`
|
|
4634
4630
|
* @param param - `GLint`
|
|
4635
4631
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glSamplerParameteri.xhtml
|
|
@@ -4640,7 +4636,7 @@ export declare function samplerParameteri(sampler: GLuint, pname: SamplerParamet
|
|
|
4640
4636
|
*
|
|
4641
4637
|
* Provided by `GL_VERSION_3_3`.
|
|
4642
4638
|
*
|
|
4643
|
-
* @param sampler - `GLuint`, object
|
|
4639
|
+
* @param sampler - `GLuint`, object class `sampler`
|
|
4644
4640
|
* @param pname - `GLenum`, group `SamplerParameterI`
|
|
4645
4641
|
* @param param - `const GLint *`, length `COMPSIZE(pname)`
|
|
4646
4642
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glSamplerParameterIiv.xhtml
|
|
@@ -4651,7 +4647,7 @@ export declare function samplerParameterIiv(sampler: GLuint, pname: SamplerParam
|
|
|
4651
4647
|
*
|
|
4652
4648
|
* Provided by `GL_VERSION_3_3`.
|
|
4653
4649
|
*
|
|
4654
|
-
* @param sampler - `GLuint`, object
|
|
4650
|
+
* @param sampler - `GLuint`, object class `sampler`
|
|
4655
4651
|
* @param pname - `GLenum`, group `SamplerParameterI`
|
|
4656
4652
|
* @param param - `const GLuint *`, length `COMPSIZE(pname)`
|
|
4657
4653
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glSamplerParameterIuiv.xhtml
|
|
@@ -4662,7 +4658,7 @@ export declare function samplerParameterIuiv(sampler: GLuint, pname: SamplerPara
|
|
|
4662
4658
|
*
|
|
4663
4659
|
* Provided by `GL_VERSION_3_3`.
|
|
4664
4660
|
*
|
|
4665
|
-
* @param sampler - `GLuint`, object
|
|
4661
|
+
* @param sampler - `GLuint`, object class `sampler`
|
|
4666
4662
|
* @param pname - `GLenum`, group `SamplerParameterI`
|
|
4667
4663
|
* @param param - `const GLint *`, length `COMPSIZE(pname)`
|
|
4668
4664
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glSamplerParameteriv.xhtml
|
|
@@ -4720,7 +4716,7 @@ export declare function scissorIndexedv(index: GLuint, v: GLint[] | Int32Array):
|
|
|
4720
4716
|
* Provided by `GL_VERSION_4_1`.
|
|
4721
4717
|
*
|
|
4722
4718
|
* @param count - `GLsizei`
|
|
4723
|
-
* @param shaders - `const GLuint *`, length `count`, object
|
|
4719
|
+
* @param shaders - `const GLuint *`, length `count`, object class `shader`
|
|
4724
4720
|
* @param binaryFormat - `GLenum`, group `ShaderBinaryFormat`
|
|
4725
4721
|
* @param binary - `const void *`, length `length`
|
|
4726
4722
|
* @param length - `GLsizei`
|
|
@@ -4732,7 +4728,7 @@ export declare function shaderBinary(count: GLsizei, shaders: GLuint[] | Uint32A
|
|
|
4732
4728
|
*
|
|
4733
4729
|
* Provided by `GL_VERSION_2_0`.
|
|
4734
4730
|
*
|
|
4735
|
-
* @param shader - `GLuint`, object
|
|
4731
|
+
* @param shader - `GLuint`, object class `shader`
|
|
4736
4732
|
* @param count - `GLsizei`
|
|
4737
4733
|
* @param string - `const GLchar *const*`, length `count`
|
|
4738
4734
|
* @param length - `const GLint *`, length `count`
|
|
@@ -4744,7 +4740,7 @@ export declare function shaderSource(shader: GLuint, count: GLsizei, string: str
|
|
|
4744
4740
|
*
|
|
4745
4741
|
* Provided by `GL_VERSION_4_3`.
|
|
4746
4742
|
*
|
|
4747
|
-
* @param program - `GLuint`, object
|
|
4743
|
+
* @param program - `GLuint`, object class `program`
|
|
4748
4744
|
* @param storageBlockIndex - `GLuint`
|
|
4749
4745
|
* @param storageBlockBinding - `GLuint`
|
|
4750
4746
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glShaderStorageBlockBinding.xhtml
|
|
@@ -4755,7 +4751,7 @@ export declare function shaderStorageBlockBinding(program: GLuint, storageBlockI
|
|
|
4755
4751
|
*
|
|
4756
4752
|
* Provided by `GL_VERSION_4_6`.
|
|
4757
4753
|
*
|
|
4758
|
-
* @param shader - `GLuint`, object
|
|
4754
|
+
* @param shader - `GLuint`, object class `shader`
|
|
4759
4755
|
* @param pEntryPoint - `const GLchar *`
|
|
4760
4756
|
* @param numSpecializationConstants - `GLuint`
|
|
4761
4757
|
* @param pConstantIndex - `const GLuint *`, length `numSpecializationConstants`
|
|
@@ -4835,7 +4831,7 @@ export declare function stencilOpSeparate(face: TriangleFace, sfail: StencilOp,
|
|
|
4835
4831
|
*
|
|
4836
4832
|
* @param target - `GLenum`, group `TextureTarget`
|
|
4837
4833
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
4838
|
-
* @param buffer - `GLuint`, object
|
|
4834
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
4839
4835
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTexBuffer.xhtml
|
|
4840
4836
|
*/
|
|
4841
4837
|
export declare function texBuffer(target: TextureTarget, internalformat: SizedInternalFormat, buffer: GLuint): void;
|
|
@@ -4846,7 +4842,7 @@ export declare function texBuffer(target: TextureTarget, internalformat: SizedIn
|
|
|
4846
4842
|
*
|
|
4847
4843
|
* @param target - `GLenum`, group `TextureTarget`
|
|
4848
4844
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
4849
|
-
* @param buffer - `GLuint`, object
|
|
4845
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
4850
4846
|
* @param offset - `GLintptr`
|
|
4851
4847
|
* @param size - `GLsizeiptr`
|
|
4852
4848
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTexBufferRange.xhtml
|
|
@@ -5129,9 +5125,9 @@ export declare function textureBarrier(): void;
|
|
|
5129
5125
|
*
|
|
5130
5126
|
* Provided by `GL_VERSION_4_5`.
|
|
5131
5127
|
*
|
|
5132
|
-
* @param texture - `GLuint`, object
|
|
5128
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5133
5129
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
5134
|
-
* @param buffer - `GLuint`, object
|
|
5130
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
5135
5131
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTextureBuffer.xhtml
|
|
5136
5132
|
*/
|
|
5137
5133
|
export declare function textureBuffer(texture: GLuint, internalformat: SizedInternalFormat, buffer: GLuint): void;
|
|
@@ -5140,9 +5136,9 @@ export declare function textureBuffer(texture: GLuint, internalformat: SizedInte
|
|
|
5140
5136
|
*
|
|
5141
5137
|
* Provided by `GL_VERSION_4_5`.
|
|
5142
5138
|
*
|
|
5143
|
-
* @param texture - `GLuint`, object
|
|
5139
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5144
5140
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
5145
|
-
* @param buffer - `GLuint`, object
|
|
5141
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
5146
5142
|
* @param offset - `GLintptr`
|
|
5147
5143
|
* @param size - `GLsizeiptr`
|
|
5148
5144
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTextureBufferRange.xhtml
|
|
@@ -5153,7 +5149,7 @@ export declare function textureBufferRange(texture: GLuint, internalformat: Size
|
|
|
5153
5149
|
*
|
|
5154
5150
|
* Provided by `GL_VERSION_4_5`.
|
|
5155
5151
|
*
|
|
5156
|
-
* @param texture - `GLuint`, object
|
|
5152
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5157
5153
|
* @param pname - `GLenum`, group `TextureParameterName`
|
|
5158
5154
|
* @param param - `GLfloat`
|
|
5159
5155
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTextureParameterf.xhtml
|
|
@@ -5164,7 +5160,7 @@ export declare function textureParameterf(texture: GLuint, pname: TextureParamet
|
|
|
5164
5160
|
*
|
|
5165
5161
|
* Provided by `GL_VERSION_4_5`.
|
|
5166
5162
|
*
|
|
5167
|
-
* @param texture - `GLuint`, object
|
|
5163
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5168
5164
|
* @param pname - `GLenum`, group `TextureParameterName`
|
|
5169
5165
|
* @param param - `const GLfloat *`, length `COMPSIZE(pname)`
|
|
5170
5166
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTextureParameterfv.xhtml
|
|
@@ -5175,7 +5171,7 @@ export declare function textureParameterfv(texture: GLuint, pname: TextureParame
|
|
|
5175
5171
|
*
|
|
5176
5172
|
* Provided by `GL_VERSION_4_5`.
|
|
5177
5173
|
*
|
|
5178
|
-
* @param texture - `GLuint`, object
|
|
5174
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5179
5175
|
* @param pname - `GLenum`, group `TextureParameterName`
|
|
5180
5176
|
* @param param - `GLint`
|
|
5181
5177
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTextureParameteri.xhtml
|
|
@@ -5186,7 +5182,7 @@ export declare function textureParameteri(texture: GLuint, pname: TextureParamet
|
|
|
5186
5182
|
*
|
|
5187
5183
|
* Provided by `GL_VERSION_4_5`.
|
|
5188
5184
|
*
|
|
5189
|
-
* @param texture - `GLuint`, object
|
|
5185
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5190
5186
|
* @param pname - `GLenum`, group `TextureParameterName`
|
|
5191
5187
|
* @param params - `const GLint *`, length `COMPSIZE(pname)`
|
|
5192
5188
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTextureParameterIiv.xhtml
|
|
@@ -5197,7 +5193,7 @@ export declare function textureParameterIiv(texture: GLuint, pname: TextureParam
|
|
|
5197
5193
|
*
|
|
5198
5194
|
* Provided by `GL_VERSION_4_5`.
|
|
5199
5195
|
*
|
|
5200
|
-
* @param texture - `GLuint`, object
|
|
5196
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5201
5197
|
* @param pname - `GLenum`, group `TextureParameterName`
|
|
5202
5198
|
* @param params - `const GLuint *`, length `COMPSIZE(pname)`
|
|
5203
5199
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTextureParameterIuiv.xhtml
|
|
@@ -5208,7 +5204,7 @@ export declare function textureParameterIuiv(texture: GLuint, pname: TexturePara
|
|
|
5208
5204
|
*
|
|
5209
5205
|
* Provided by `GL_VERSION_4_5`.
|
|
5210
5206
|
*
|
|
5211
|
-
* @param texture - `GLuint`, object
|
|
5207
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5212
5208
|
* @param pname - `GLenum`, group `TextureParameterName`
|
|
5213
5209
|
* @param param - `const GLint *`, length `COMPSIZE(pname)`
|
|
5214
5210
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTextureParameteriv.xhtml
|
|
@@ -5219,7 +5215,7 @@ export declare function textureParameteriv(texture: GLuint, pname: TextureParame
|
|
|
5219
5215
|
*
|
|
5220
5216
|
* Provided by `GL_VERSION_4_5`.
|
|
5221
5217
|
*
|
|
5222
|
-
* @param texture - `GLuint`, object
|
|
5218
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5223
5219
|
* @param levels - `GLsizei`
|
|
5224
5220
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
5225
5221
|
* @param width - `GLsizei`
|
|
@@ -5231,7 +5227,7 @@ export declare function textureStorage1D(texture: GLuint, levels: GLsizei, inter
|
|
|
5231
5227
|
*
|
|
5232
5228
|
* Provided by `GL_VERSION_4_5`.
|
|
5233
5229
|
*
|
|
5234
|
-
* @param texture - `GLuint`, object
|
|
5230
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5235
5231
|
* @param levels - `GLsizei`
|
|
5236
5232
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
5237
5233
|
* @param width - `GLsizei`
|
|
@@ -5244,7 +5240,7 @@ export declare function textureStorage2D(texture: GLuint, levels: GLsizei, inter
|
|
|
5244
5240
|
*
|
|
5245
5241
|
* Provided by `GL_VERSION_4_5`.
|
|
5246
5242
|
*
|
|
5247
|
-
* @param texture - `GLuint`, object
|
|
5243
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5248
5244
|
* @param samples - `GLsizei`
|
|
5249
5245
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
5250
5246
|
* @param width - `GLsizei`
|
|
@@ -5258,7 +5254,7 @@ export declare function textureStorage2DMultisample(texture: GLuint, samples: GL
|
|
|
5258
5254
|
*
|
|
5259
5255
|
* Provided by `GL_VERSION_4_5`.
|
|
5260
5256
|
*
|
|
5261
|
-
* @param texture - `GLuint`, object
|
|
5257
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5262
5258
|
* @param levels - `GLsizei`
|
|
5263
5259
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
5264
5260
|
* @param width - `GLsizei`
|
|
@@ -5272,7 +5268,7 @@ export declare function textureStorage3D(texture: GLuint, levels: GLsizei, inter
|
|
|
5272
5268
|
*
|
|
5273
5269
|
* Provided by `GL_VERSION_4_5`.
|
|
5274
5270
|
*
|
|
5275
|
-
* @param texture - `GLuint`, object
|
|
5271
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5276
5272
|
* @param samples - `GLsizei`
|
|
5277
5273
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
5278
5274
|
* @param width - `GLsizei`
|
|
@@ -5287,7 +5283,7 @@ export declare function textureStorage3DMultisample(texture: GLuint, samples: GL
|
|
|
5287
5283
|
*
|
|
5288
5284
|
* Provided by `GL_VERSION_4_5`.
|
|
5289
5285
|
*
|
|
5290
|
-
* @param texture - `GLuint`, object
|
|
5286
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5291
5287
|
* @param level - `GLint`
|
|
5292
5288
|
* @param xoffset - `GLint`
|
|
5293
5289
|
* @param width - `GLsizei`
|
|
@@ -5302,7 +5298,7 @@ export declare function textureSubImage1D(texture: GLuint, level: GLint, xoffset
|
|
|
5302
5298
|
*
|
|
5303
5299
|
* Provided by `GL_VERSION_4_5`.
|
|
5304
5300
|
*
|
|
5305
|
-
* @param texture - `GLuint`, object
|
|
5301
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5306
5302
|
* @param level - `GLint`
|
|
5307
5303
|
* @param xoffset - `GLint`
|
|
5308
5304
|
* @param yoffset - `GLint`
|
|
@@ -5319,7 +5315,7 @@ export declare function textureSubImage2D(texture: GLuint, level: GLint, xoffset
|
|
|
5319
5315
|
*
|
|
5320
5316
|
* Provided by `GL_VERSION_4_5`.
|
|
5321
5317
|
*
|
|
5322
|
-
* @param texture - `GLuint`, object
|
|
5318
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5323
5319
|
* @param level - `GLint`
|
|
5324
5320
|
* @param xoffset - `GLint`
|
|
5325
5321
|
* @param yoffset - `GLint`
|
|
@@ -5338,9 +5334,9 @@ export declare function textureSubImage3D(texture: GLuint, level: GLint, xoffset
|
|
|
5338
5334
|
*
|
|
5339
5335
|
* Provided by `GL_VERSION_4_3`.
|
|
5340
5336
|
*
|
|
5341
|
-
* @param texture - `GLuint`, object
|
|
5337
|
+
* @param texture - `GLuint`, object class `texture`
|
|
5342
5338
|
* @param target - `GLenum`, group `TextureTarget`
|
|
5343
|
-
* @param origtexture - `GLuint`, object
|
|
5339
|
+
* @param origtexture - `GLuint`, object class `texture`
|
|
5344
5340
|
* @param internalformat - `GLenum`, group `SizedInternalFormat`
|
|
5345
5341
|
* @param minlevel - `GLuint`
|
|
5346
5342
|
* @param numlevels - `GLuint`
|
|
@@ -5354,9 +5350,9 @@ export declare function textureView(texture: GLuint, target: TextureTarget, orig
|
|
|
5354
5350
|
*
|
|
5355
5351
|
* Provided by `GL_VERSION_4_5`.
|
|
5356
5352
|
*
|
|
5357
|
-
* @param xfb - `GLuint`, object
|
|
5353
|
+
* @param xfb - `GLuint`, object class `transform feedback`
|
|
5358
5354
|
* @param index - `GLuint`
|
|
5359
|
-
* @param buffer - `GLuint`, object
|
|
5355
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
5360
5356
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTransformFeedbackBufferBase.xhtml
|
|
5361
5357
|
*/
|
|
5362
5358
|
export declare function transformFeedbackBufferBase(xfb: GLuint, index: GLuint, buffer: GLuint): void;
|
|
@@ -5365,9 +5361,9 @@ export declare function transformFeedbackBufferBase(xfb: GLuint, index: GLuint,
|
|
|
5365
5361
|
*
|
|
5366
5362
|
* Provided by `GL_VERSION_4_5`.
|
|
5367
5363
|
*
|
|
5368
|
-
* @param xfb - `GLuint`, object
|
|
5364
|
+
* @param xfb - `GLuint`, object class `transform feedback`
|
|
5369
5365
|
* @param index - `GLuint`
|
|
5370
|
-
* @param buffer - `GLuint`, object
|
|
5366
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
5371
5367
|
* @param offset - `GLintptr`
|
|
5372
5368
|
* @param size - `GLsizeiptr`
|
|
5373
5369
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTransformFeedbackBufferRange.xhtml
|
|
@@ -5378,7 +5374,7 @@ export declare function transformFeedbackBufferRange(xfb: GLuint, index: GLuint,
|
|
|
5378
5374
|
*
|
|
5379
5375
|
* Provided by `GL_VERSION_3_0`.
|
|
5380
5376
|
*
|
|
5381
|
-
* @param program - `GLuint`, object
|
|
5377
|
+
* @param program - `GLuint`, object class `program`
|
|
5382
5378
|
* @param count - `GLsizei`
|
|
5383
5379
|
* @param varyings - `const GLchar *const*`, length `count`
|
|
5384
5380
|
* @param bufferMode - `GLenum`, group `TransformFeedbackBufferMode`
|
|
@@ -5750,7 +5746,7 @@ export declare function uniform4uiv(location: GLint, count: GLsizei, value: GLui
|
|
|
5750
5746
|
*
|
|
5751
5747
|
* Provided by `GL_VERSION_3_1`.
|
|
5752
5748
|
*
|
|
5753
|
-
* @param program - `GLuint`, object
|
|
5749
|
+
* @param program - `GLuint`, object class `program`
|
|
5754
5750
|
* @param uniformBlockIndex - `GLuint`
|
|
5755
5751
|
* @param uniformBlockBinding - `GLuint`
|
|
5756
5752
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glUniformBlockBinding.xhtml
|
|
@@ -5998,7 +5994,7 @@ export declare function unmapBuffer(target: BufferTargetARB): boolean;
|
|
|
5998
5994
|
*
|
|
5999
5995
|
* Provided by `GL_VERSION_4_5`.
|
|
6000
5996
|
*
|
|
6001
|
-
* @param buffer - `GLuint`, object
|
|
5997
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
6002
5998
|
* @returns `GLboolean`
|
|
6003
5999
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glUnmapNamedBuffer.xhtml
|
|
6004
6000
|
*/
|
|
@@ -6008,7 +6004,7 @@ export declare function unmapNamedBuffer(buffer: GLuint): boolean;
|
|
|
6008
6004
|
*
|
|
6009
6005
|
* Provided by `GL_VERSION_2_0`.
|
|
6010
6006
|
*
|
|
6011
|
-
* @param program - `GLuint`, object
|
|
6007
|
+
* @param program - `GLuint`, object class `program`
|
|
6012
6008
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glUseProgram.xhtml
|
|
6013
6009
|
*/
|
|
6014
6010
|
export declare function useProgram(program: GLuint): void;
|
|
@@ -6017,9 +6013,9 @@ export declare function useProgram(program: GLuint): void;
|
|
|
6017
6013
|
*
|
|
6018
6014
|
* Provided by `GL_VERSION_4_1`.
|
|
6019
6015
|
*
|
|
6020
|
-
* @param pipeline - `GLuint`, object
|
|
6016
|
+
* @param pipeline - `GLuint`, object class `program pipeline`
|
|
6021
6017
|
* @param stages - `GLbitfield`, group `UseProgramStageMask`
|
|
6022
|
-
* @param program - `GLuint`, object
|
|
6018
|
+
* @param program - `GLuint`, object class `program`
|
|
6023
6019
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glUseProgramStages.xhtml
|
|
6024
6020
|
*/
|
|
6025
6021
|
export declare function useProgramStages(pipeline: GLuint, stages: UseProgramStageMask, program: GLuint): void;
|
|
@@ -6028,7 +6024,7 @@ export declare function useProgramStages(pipeline: GLuint, stages: UseProgramSta
|
|
|
6028
6024
|
*
|
|
6029
6025
|
* Provided by `GL_VERSION_2_0`.
|
|
6030
6026
|
*
|
|
6031
|
-
* @param program - `GLuint`, object
|
|
6027
|
+
* @param program - `GLuint`, object class `program`
|
|
6032
6028
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glValidateProgram.xhtml
|
|
6033
6029
|
*/
|
|
6034
6030
|
export declare function validateProgram(program: GLuint): void;
|
|
@@ -6037,7 +6033,7 @@ export declare function validateProgram(program: GLuint): void;
|
|
|
6037
6033
|
*
|
|
6038
6034
|
* Provided by `GL_VERSION_4_1`.
|
|
6039
6035
|
*
|
|
6040
|
-
* @param pipeline - `GLuint`, object
|
|
6036
|
+
* @param pipeline - `GLuint`, object class `program pipeline`
|
|
6041
6037
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glValidateProgramPipeline.xhtml
|
|
6042
6038
|
*/
|
|
6043
6039
|
export declare function validateProgramPipeline(pipeline: GLuint): void;
|
|
@@ -6046,7 +6042,7 @@ export declare function validateProgramPipeline(pipeline: GLuint): void;
|
|
|
6046
6042
|
*
|
|
6047
6043
|
* Provided by `GL_VERSION_4_5`.
|
|
6048
6044
|
*
|
|
6049
|
-
* @param vaobj - `GLuint`, object
|
|
6045
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
6050
6046
|
* @param attribindex - `GLuint`
|
|
6051
6047
|
* @param bindingindex - `GLuint`
|
|
6052
6048
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glVertexArrayAttribBinding.xhtml
|
|
@@ -6057,7 +6053,7 @@ export declare function vertexArrayAttribBinding(vaobj: GLuint, attribindex: GLu
|
|
|
6057
6053
|
*
|
|
6058
6054
|
* Provided by `GL_VERSION_4_5`.
|
|
6059
6055
|
*
|
|
6060
|
-
* @param vaobj - `GLuint`, object
|
|
6056
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
6061
6057
|
* @param attribindex - `GLuint`
|
|
6062
6058
|
* @param size - `GLint`
|
|
6063
6059
|
* @param type - `GLenum`, group `VertexAttribType`
|
|
@@ -6071,7 +6067,7 @@ export declare function vertexArrayAttribFormat(vaobj: GLuint, attribindex: GLui
|
|
|
6071
6067
|
*
|
|
6072
6068
|
* Provided by `GL_VERSION_4_5`.
|
|
6073
6069
|
*
|
|
6074
|
-
* @param vaobj - `GLuint`, object
|
|
6070
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
6075
6071
|
* @param attribindex - `GLuint`
|
|
6076
6072
|
* @param size - `GLint`
|
|
6077
6073
|
* @param type - `GLenum`, group `VertexAttribIType`
|
|
@@ -6084,7 +6080,7 @@ export declare function vertexArrayAttribIFormat(vaobj: GLuint, attribindex: GLu
|
|
|
6084
6080
|
*
|
|
6085
6081
|
* Provided by `GL_VERSION_4_5`.
|
|
6086
6082
|
*
|
|
6087
|
-
* @param vaobj - `GLuint`, object
|
|
6083
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
6088
6084
|
* @param attribindex - `GLuint`
|
|
6089
6085
|
* @param size - `GLint`
|
|
6090
6086
|
* @param type - `GLenum`, group `VertexAttribLType`
|
|
@@ -6097,7 +6093,7 @@ export declare function vertexArrayAttribLFormat(vaobj: GLuint, attribindex: GLu
|
|
|
6097
6093
|
*
|
|
6098
6094
|
* Provided by `GL_VERSION_4_5`.
|
|
6099
6095
|
*
|
|
6100
|
-
* @param vaobj - `GLuint`, object
|
|
6096
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
6101
6097
|
* @param bindingindex - `GLuint`
|
|
6102
6098
|
* @param divisor - `GLuint`
|
|
6103
6099
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glVertexArrayBindingDivisor.xhtml
|
|
@@ -6108,8 +6104,8 @@ export declare function vertexArrayBindingDivisor(vaobj: GLuint, bindingindex: G
|
|
|
6108
6104
|
*
|
|
6109
6105
|
* Provided by `GL_VERSION_4_5`.
|
|
6110
6106
|
*
|
|
6111
|
-
* @param vaobj - `GLuint`, object
|
|
6112
|
-
* @param buffer - `GLuint`, object
|
|
6107
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
6108
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
6113
6109
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glVertexArrayElementBuffer.xhtml
|
|
6114
6110
|
*/
|
|
6115
6111
|
export declare function vertexArrayElementBuffer(vaobj: GLuint, buffer: GLuint): void;
|
|
@@ -6118,9 +6114,9 @@ export declare function vertexArrayElementBuffer(vaobj: GLuint, buffer: GLuint):
|
|
|
6118
6114
|
*
|
|
6119
6115
|
* Provided by `GL_VERSION_4_5`.
|
|
6120
6116
|
*
|
|
6121
|
-
* @param vaobj - `GLuint`, object
|
|
6117
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
6122
6118
|
* @param bindingindex - `GLuint`
|
|
6123
|
-
* @param buffer - `GLuint`, object
|
|
6119
|
+
* @param buffer - `GLuint`, object class `buffer`
|
|
6124
6120
|
* @param offset - `GLintptr`
|
|
6125
6121
|
* @param stride - `GLsizei`
|
|
6126
6122
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glVertexArrayVertexBuffer.xhtml
|
|
@@ -6131,10 +6127,10 @@ export declare function vertexArrayVertexBuffer(vaobj: GLuint, bindingindex: GLu
|
|
|
6131
6127
|
*
|
|
6132
6128
|
* Provided by `GL_VERSION_4_5`.
|
|
6133
6129
|
*
|
|
6134
|
-
* @param vaobj - `GLuint`, object
|
|
6130
|
+
* @param vaobj - `GLuint`, object class `vertex array`
|
|
6135
6131
|
* @param first - `GLuint`
|
|
6136
6132
|
* @param count - `GLsizei`
|
|
6137
|
-
* @param buffers - `const GLuint *`, length `count`, object
|
|
6133
|
+
* @param buffers - `const GLuint *`, length `count`, object class `buffer`
|
|
6138
6134
|
* @param offsets - `const GLintptr *`, length `count`
|
|
6139
6135
|
* @param strides - `const GLsizei *`, length `count`
|
|
6140
6136
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glVertexArrayVertexBuffers.xhtml
|
|
@@ -7073,7 +7069,7 @@ export declare function viewportIndexedfv(index: GLuint, v: GLfloat[] | Float32A
|
|
|
7073
7069
|
*
|
|
7074
7070
|
* Provided by `GL_VERSION_3_2`.
|
|
7075
7071
|
*
|
|
7076
|
-
* @param sync - `GLsync`, object
|
|
7072
|
+
* @param sync - `GLsync`, object class `sync`
|
|
7077
7073
|
* @param flags - `GLbitfield`, group `SyncBehaviorFlags`
|
|
7078
7074
|
* @param timeout - `GLuint64`
|
|
7079
7075
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glWaitSync.xhtml
|
|
@@ -7297,4 +7293,5 @@ export declare function genTransformFeedback(): GLuint;
|
|
|
7297
7293
|
* @see https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGenVertexArrays.xhtml
|
|
7298
7294
|
*/
|
|
7299
7295
|
export declare function genVertexArray(): GLuint;
|
|
7296
|
+
export declare const LIB = "libGL.so.1";
|
|
7300
7297
|
//# sourceMappingURL=commands.d.ts.map
|