WebGL2RenderingContextBase

Undocumented in source.
@safe nothrow
struct WebGL2RenderingContextBase {}

Constructors

this
this(Handle h)
Undocumented in source.

Alias This

handle

Members

Functions

activeTexture
void activeTexture(uint texture)
Undocumented in source. Be warned that the author may not have intended to support it.
attachShader
void attachShader(WebGLProgram program, WebGLShader shader)
Undocumented in source. Be warned that the author may not have intended to support it.
beginQuery
void beginQuery(uint target, WebGLQuery query)
Undocumented in source. Be warned that the author may not have intended to support it.
beginTransformFeedback
void beginTransformFeedback(uint primitiveMode)
Undocumented in source. Be warned that the author may not have intended to support it.
bindAttribLocation
void bindAttribLocation(WebGLProgram program, uint index, string name)
Undocumented in source. Be warned that the author may not have intended to support it.
bindBuffer
void bindBuffer(uint target, Optional!(T1) buffer)
Undocumented in source. Be warned that the author may not have intended to support it.
bindBufferBase
void bindBufferBase(uint target, uint index, Optional!(T2) buffer)
Undocumented in source. Be warned that the author may not have intended to support it.
bindBufferRange
void bindBufferRange(uint target, uint index, Optional!(T2) buffer, int offset, int size)
Undocumented in source. Be warned that the author may not have intended to support it.
bindFramebuffer
void bindFramebuffer(uint target, Optional!(T1) framebuffer)
Undocumented in source. Be warned that the author may not have intended to support it.
bindRenderbuffer
void bindRenderbuffer(uint target, Optional!(T1) renderbuffer)
Undocumented in source. Be warned that the author may not have intended to support it.
bindSampler
void bindSampler(uint unit, Optional!(T1) sampler)
Undocumented in source. Be warned that the author may not have intended to support it.
bindTexture
void bindTexture(uint target, Optional!(T1) texture)
Undocumented in source. Be warned that the author may not have intended to support it.
bindTransformFeedback
void bindTransformFeedback(uint target, Optional!(T1) tf)
Undocumented in source. Be warned that the author may not have intended to support it.
bindVertexArray
void bindVertexArray(Optional!(T0) array)
Undocumented in source. Be warned that the author may not have intended to support it.
blendColor
void blendColor(float red, float green, float blue, float alpha)
Undocumented in source. Be warned that the author may not have intended to support it.
blendEquation
void blendEquation(uint mode)
Undocumented in source. Be warned that the author may not have intended to support it.
blendEquationSeparate
void blendEquationSeparate(uint modeRGB, uint modeAlpha)
Undocumented in source. Be warned that the author may not have intended to support it.
blendFunc
void blendFunc(uint sfactor, uint dfactor)
Undocumented in source. Be warned that the author may not have intended to support it.
blendFuncSeparate
void blendFuncSeparate(uint srcRGB, uint dstRGB, uint srcAlpha, uint dstAlpha)
Undocumented in source. Be warned that the author may not have intended to support it.
blitFramebuffer
void blitFramebuffer(int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, uint mask, uint filter)
Undocumented in source. Be warned that the author may not have intended to support it.
bufferData
void bufferData(uint target, int size, uint usage)
Undocumented in source. Be warned that the author may not have intended to support it.
bufferData
void bufferData(uint target, ArrayBufferView srcData, uint usage)
Undocumented in source. Be warned that the author may not have intended to support it.
bufferData
void bufferData(uint target, ArrayBufferView srcData, uint usage, uint srcOffset, uint length)
Undocumented in source. Be warned that the author may not have intended to support it.
bufferData
void bufferData(uint target, ArrayBufferView srcData, uint usage, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
bufferData
void bufferData(uint target, Optional!(T1) srcData, uint usage)
Undocumented in source. Be warned that the author may not have intended to support it.
bufferSubData
void bufferSubData(uint target, int dstByteOffset, ArrayBufferView srcData, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
bufferSubData
void bufferSubData(uint target, int dstByteOffset, ArrayBufferView srcData, uint srcOffset, uint length)
Undocumented in source. Be warned that the author may not have intended to support it.
bufferSubData
void bufferSubData(uint target, int offset, ArrayBufferView srcData)
Undocumented in source. Be warned that the author may not have intended to support it.
bufferSubData
void bufferSubData(uint target, int offset, ArrayBuffer srcData)
Undocumented in source. Be warned that the author may not have intended to support it.
canvas
auto canvas()
Undocumented in source. Be warned that the author may not have intended to support it.
checkFramebufferStatus
uint checkFramebufferStatus(uint target)
Undocumented in source. Be warned that the author may not have intended to support it.
clear
void clear(uint mask)
Undocumented in source. Be warned that the author may not have intended to support it.
clearBufferfi
void clearBufferfi(uint buffer, int drawbuffer, float depth, int stencil)
Undocumented in source. Be warned that the author may not have intended to support it.
clearBufferfv
void clearBufferfv(uint buffer, int drawbuffer, Float32List values, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
clearBufferfv
void clearBufferfv(uint buffer, int drawbuffer, Float32List values)
Undocumented in source. Be warned that the author may not have intended to support it.
clearBufferiv
void clearBufferiv(uint buffer, int drawbuffer, Int32List values, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
clearBufferiv
void clearBufferiv(uint buffer, int drawbuffer, Int32List values)
Undocumented in source. Be warned that the author may not have intended to support it.
clearBufferuiv
void clearBufferuiv(uint buffer, int drawbuffer, Uint32List values, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
clearBufferuiv
void clearBufferuiv(uint buffer, int drawbuffer, Uint32List values)
Undocumented in source. Be warned that the author may not have intended to support it.
clearColor
void clearColor(float red, float green, float blue, float alpha)
Undocumented in source. Be warned that the author may not have intended to support it.
clearDepth
void clearDepth(float depth)
Undocumented in source. Be warned that the author may not have intended to support it.
clearStencil
void clearStencil(int s)
Undocumented in source. Be warned that the author may not have intended to support it.
clientWaitSync
uint clientWaitSync(WebGLSync sync, uint flags, uint timeout)
Undocumented in source. Be warned that the author may not have intended to support it.
colorMask
void colorMask(bool red, bool green, bool blue, bool alpha)
Undocumented in source. Be warned that the author may not have intended to support it.
compileShader
void compileShader(WebGLShader shader)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexImage2D
void compressedTexImage2D(uint target, int level, uint internalformat, int width, int height, int border, ArrayBufferView srcData, uint srcOffset, uint srcLengthOverride)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexImage2D
void compressedTexImage2D(uint target, int level, uint internalformat, int width, int height, int border, ArrayBufferView srcData, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexImage2D
void compressedTexImage2D(uint target, int level, uint internalformat, int width, int height, int border, ArrayBufferView srcData)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexImage2D
void compressedTexImage2D(uint target, int level, uint internalformat, int width, int height, int border, int imageSize, int offset)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexImage3D
void compressedTexImage3D(uint target, int level, uint internalformat, int width, int height, int depth, int border, int imageSize, int offset)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexImage3D
void compressedTexImage3D(uint target, int level, uint internalformat, int width, int height, int depth, int border, ArrayBufferView srcData, uint srcOffset, uint srcLengthOverride)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexImage3D
void compressedTexImage3D(uint target, int level, uint internalformat, int width, int height, int depth, int border, ArrayBufferView srcData)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexImage3D
void compressedTexImage3D(uint target, int level, uint internalformat, int width, int height, int depth, int border, ArrayBufferView srcData, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexSubImage2D
void compressedTexSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, ArrayBufferView srcData)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexSubImage2D
void compressedTexSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, ArrayBufferView srcData, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexSubImage2D
void compressedTexSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, ArrayBufferView srcData, uint srcOffset, uint srcLengthOverride)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexSubImage2D
void compressedTexSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, int imageSize, int offset)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexSubImage3D
void compressedTexSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, ArrayBufferView srcData)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexSubImage3D
void compressedTexSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, ArrayBufferView srcData, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexSubImage3D
void compressedTexSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, ArrayBufferView srcData, uint srcOffset, uint srcLengthOverride)
Undocumented in source. Be warned that the author may not have intended to support it.
compressedTexSubImage3D
void compressedTexSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, int imageSize, int offset)
Undocumented in source. Be warned that the author may not have intended to support it.
copyBufferSubData
void copyBufferSubData(uint readTarget, uint writeTarget, int readOffset, int writeOffset, int size)
Undocumented in source. Be warned that the author may not have intended to support it.
copyTexImage2D
void copyTexImage2D(uint target, int level, uint internalformat, int x, int y, int width, int height, int border)
Undocumented in source. Be warned that the author may not have intended to support it.
copyTexSubImage2D
void copyTexSubImage2D(uint target, int level, int xoffset, int yoffset, int x, int y, int width, int height)
Undocumented in source. Be warned that the author may not have intended to support it.
copyTexSubImage3D
void copyTexSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int x, int y, int width, int height)
Undocumented in source. Be warned that the author may not have intended to support it.
createBuffer
auto createBuffer()
Undocumented in source. Be warned that the author may not have intended to support it.
createFramebuffer
auto createFramebuffer()
Undocumented in source. Be warned that the author may not have intended to support it.
createProgram
auto createProgram()
Undocumented in source. Be warned that the author may not have intended to support it.
createQuery
auto createQuery()
Undocumented in source. Be warned that the author may not have intended to support it.
createRenderbuffer
auto createRenderbuffer()
Undocumented in source. Be warned that the author may not have intended to support it.
createSampler
auto createSampler()
Undocumented in source. Be warned that the author may not have intended to support it.
createShader
auto createShader(uint type)
Undocumented in source. Be warned that the author may not have intended to support it.
createTexture
auto createTexture()
Undocumented in source. Be warned that the author may not have intended to support it.
createTransformFeedback
auto createTransformFeedback()
Undocumented in source. Be warned that the author may not have intended to support it.
createVertexArray
auto createVertexArray()
Undocumented in source. Be warned that the author may not have intended to support it.
cullFace
void cullFace(uint mode)
Undocumented in source. Be warned that the author may not have intended to support it.
deleteBuffer
void deleteBuffer(Optional!(T0) buffer)
Undocumented in source. Be warned that the author may not have intended to support it.
deleteFramebuffer
void deleteFramebuffer(Optional!(T0) framebuffer)
Undocumented in source. Be warned that the author may not have intended to support it.
deleteProgram
void deleteProgram(Optional!(T0) program)
Undocumented in source. Be warned that the author may not have intended to support it.
deleteQuery
void deleteQuery(Optional!(T0) query)
Undocumented in source. Be warned that the author may not have intended to support it.
deleteRenderbuffer
void deleteRenderbuffer(Optional!(T0) renderbuffer)
Undocumented in source. Be warned that the author may not have intended to support it.
deleteSampler
void deleteSampler(Optional!(T0) sampler)
Undocumented in source. Be warned that the author may not have intended to support it.
deleteShader
void deleteShader(Optional!(T0) shader)
Undocumented in source. Be warned that the author may not have intended to support it.
deleteSync
void deleteSync(Optional!(T0) sync)
Undocumented in source. Be warned that the author may not have intended to support it.
deleteTexture
void deleteTexture(Optional!(T0) texture)
Undocumented in source. Be warned that the author may not have intended to support it.
deleteTransformFeedback
void deleteTransformFeedback(Optional!(T0) tf)
Undocumented in source. Be warned that the author may not have intended to support it.
deleteVertexArray
void deleteVertexArray(Optional!(T0) vertexArray)
Undocumented in source. Be warned that the author may not have intended to support it.
depthFunc
void depthFunc(uint func)
Undocumented in source. Be warned that the author may not have intended to support it.
depthMask
void depthMask(bool flag)
Undocumented in source. Be warned that the author may not have intended to support it.
depthRange
void depthRange(float zNear, float zFar)
Undocumented in source. Be warned that the author may not have intended to support it.
detachShader
void detachShader(WebGLProgram program, WebGLShader shader)
Undocumented in source. Be warned that the author may not have intended to support it.
disable
void disable(uint cap)
Undocumented in source. Be warned that the author may not have intended to support it.
disableVertexAttribArray
void disableVertexAttribArray(uint index)
Undocumented in source. Be warned that the author may not have intended to support it.
drawArrays
void drawArrays(uint mode, int first, int count)
Undocumented in source. Be warned that the author may not have intended to support it.
drawArraysInstanced
void drawArraysInstanced(uint mode, int first, int count, int instanceCount)
Undocumented in source. Be warned that the author may not have intended to support it.
drawBuffers
void drawBuffers(Sequence!(uint) buffers)
Undocumented in source. Be warned that the author may not have intended to support it.
drawElements
void drawElements(uint mode, int count, uint type, int offset)
Undocumented in source. Be warned that the author may not have intended to support it.
drawElementsInstanced
void drawElementsInstanced(uint mode, int count, uint type, int offset, int instanceCount)
Undocumented in source. Be warned that the author may not have intended to support it.
drawRangeElements
void drawRangeElements(uint mode, uint start, uint end, int count, uint type, int offset)
Undocumented in source. Be warned that the author may not have intended to support it.
drawingBufferHeight
int drawingBufferHeight()
Undocumented in source. Be warned that the author may not have intended to support it.
drawingBufferWidth
int drawingBufferWidth()
Undocumented in source. Be warned that the author may not have intended to support it.
enable
void enable(uint cap)
Undocumented in source. Be warned that the author may not have intended to support it.
enableVertexAttribArray
void enableVertexAttribArray(uint index)
Undocumented in source. Be warned that the author may not have intended to support it.
endQuery
void endQuery(uint target)
Undocumented in source. Be warned that the author may not have intended to support it.
endTransformFeedback
void endTransformFeedback()
Undocumented in source. Be warned that the author may not have intended to support it.
fenceSync
auto fenceSync(uint condition, uint flags)
Undocumented in source. Be warned that the author may not have intended to support it.
finish
void finish()
Undocumented in source. Be warned that the author may not have intended to support it.
flush
void flush()
Undocumented in source. Be warned that the author may not have intended to support it.
framebufferRenderbuffer
void framebufferRenderbuffer(uint target, uint attachment, uint renderbuffertarget, Optional!(T3) renderbuffer)
Undocumented in source. Be warned that the author may not have intended to support it.
framebufferTexture2D
void framebufferTexture2D(uint target, uint attachment, uint textarget, Optional!(T3) texture, int level)
Undocumented in source. Be warned that the author may not have intended to support it.
framebufferTextureLayer
void framebufferTextureLayer(uint target, uint attachment, Optional!(T2) texture, int level, int layer)
Undocumented in source. Be warned that the author may not have intended to support it.
frontFace
void frontFace(uint mode)
Undocumented in source. Be warned that the author may not have intended to support it.
generateMipmap
void generateMipmap(uint target)
Undocumented in source. Be warned that the author may not have intended to support it.
getActiveAttrib
auto getActiveAttrib(WebGLProgram program, uint index)
Undocumented in source. Be warned that the author may not have intended to support it.
getActiveUniform
auto getActiveUniform(WebGLProgram program, uint index)
Undocumented in source. Be warned that the author may not have intended to support it.
getActiveUniformBlockName
Optional!(string) getActiveUniformBlockName(WebGLProgram program, uint uniformBlockIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getActiveUniformBlockParameter
auto getActiveUniformBlockParameter(WebGLProgram program, uint uniformBlockIndex, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getActiveUniforms
auto getActiveUniforms(WebGLProgram program, Sequence!(uint) uniformIndices, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getAttachedShaders
auto getAttachedShaders(WebGLProgram program)
Undocumented in source. Be warned that the author may not have intended to support it.
getAttribLocation
int getAttribLocation(WebGLProgram program, string name)
Undocumented in source. Be warned that the author may not have intended to support it.
getBufferParameter
auto getBufferParameter(uint target, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getBufferSubData
void getBufferSubData(uint target, int srcByteOffset, ArrayBufferView dstData, uint dstOffset, uint length)
Undocumented in source. Be warned that the author may not have intended to support it.
getBufferSubData
void getBufferSubData(uint target, int srcByteOffset, ArrayBufferView dstData)
Undocumented in source. Be warned that the author may not have intended to support it.
getBufferSubData
void getBufferSubData(uint target, int srcByteOffset, ArrayBufferView dstData, uint dstOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
getContextAttributes
auto getContextAttributes()
Undocumented in source. Be warned that the author may not have intended to support it.
getError
uint getError()
Undocumented in source. Be warned that the author may not have intended to support it.
getExtension
auto getExtension(string name)
Undocumented in source. Be warned that the author may not have intended to support it.
getFragDataLocation
int getFragDataLocation(WebGLProgram program, string name)
Undocumented in source. Be warned that the author may not have intended to support it.
getFramebufferAttachmentParameter
auto getFramebufferAttachmentParameter(uint target, uint attachment, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getIndexedParameter
auto getIndexedParameter(uint target, uint index)
Undocumented in source. Be warned that the author may not have intended to support it.
getInternalformatParameter
auto getInternalformatParameter(uint target, uint internalformat, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getParameter
auto getParameter(uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getProgramInfoLog
Optional!(string) getProgramInfoLog(WebGLProgram program)
Undocumented in source. Be warned that the author may not have intended to support it.
getProgramParameter
auto getProgramParameter(WebGLProgram program, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getQuery
auto getQuery(uint target, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getQueryParameter
auto getQueryParameter(WebGLQuery query, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getRenderbufferParameter
auto getRenderbufferParameter(uint target, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getSamplerParameter
auto getSamplerParameter(WebGLSampler sampler, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getShaderInfoLog
Optional!(string) getShaderInfoLog(WebGLShader shader)
Undocumented in source. Be warned that the author may not have intended to support it.
getShaderParameter
auto getShaderParameter(WebGLShader shader, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getShaderPrecisionFormat
auto getShaderPrecisionFormat(uint shadertype, uint precisiontype)
Undocumented in source. Be warned that the author may not have intended to support it.
getShaderSource
Optional!(string) getShaderSource(WebGLShader shader)
Undocumented in source. Be warned that the author may not have intended to support it.
getSupportedExtensions
auto getSupportedExtensions()
Undocumented in source. Be warned that the author may not have intended to support it.
getSyncParameter
auto getSyncParameter(WebGLSync sync, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getTexParameter
auto getTexParameter(uint target, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getTransformFeedbackVarying
auto getTransformFeedbackVarying(WebGLProgram program, uint index)
Undocumented in source. Be warned that the author may not have intended to support it.
getUniform
auto getUniform(WebGLProgram program, WebGLUniformLocation location)
Undocumented in source. Be warned that the author may not have intended to support it.
getUniformBlockIndex
uint getUniformBlockIndex(WebGLProgram program, string uniformBlockName)
Undocumented in source. Be warned that the author may not have intended to support it.
getUniformIndices
auto getUniformIndices(WebGLProgram program, Sequence!(string) uniformNames)
Undocumented in source. Be warned that the author may not have intended to support it.
getUniformLocation
auto getUniformLocation(WebGLProgram program, string name)
Undocumented in source. Be warned that the author may not have intended to support it.
getVertexAttrib
auto getVertexAttrib(uint index, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
getVertexAttribOffset
int getVertexAttribOffset(uint index, uint pname)
Undocumented in source. Be warned that the author may not have intended to support it.
hint
void hint(uint target, uint mode)
Undocumented in source. Be warned that the author may not have intended to support it.
invalidateFramebuffer
void invalidateFramebuffer(uint target, Sequence!(uint) attachments)
Undocumented in source. Be warned that the author may not have intended to support it.
invalidateSubFramebuffer
void invalidateSubFramebuffer(uint target, Sequence!(uint) attachments, int x, int y, int width, int height)
Undocumented in source. Be warned that the author may not have intended to support it.
isBuffer
bool isBuffer(Optional!(T0) buffer)
Undocumented in source. Be warned that the author may not have intended to support it.
isContextLost
bool isContextLost()
Undocumented in source. Be warned that the author may not have intended to support it.
isEnabled
bool isEnabled(uint cap)
Undocumented in source. Be warned that the author may not have intended to support it.
isFramebuffer
bool isFramebuffer(Optional!(T0) framebuffer)
Undocumented in source. Be warned that the author may not have intended to support it.
isProgram
bool isProgram(Optional!(T0) program)
Undocumented in source. Be warned that the author may not have intended to support it.
isQuery
bool isQuery(Optional!(T0) query)
Undocumented in source. Be warned that the author may not have intended to support it.
isRenderbuffer
bool isRenderbuffer(Optional!(T0) renderbuffer)
Undocumented in source. Be warned that the author may not have intended to support it.
isSampler
bool isSampler(Optional!(T0) sampler)
Undocumented in source. Be warned that the author may not have intended to support it.
isShader
bool isShader(Optional!(T0) shader)
Undocumented in source. Be warned that the author may not have intended to support it.
isSync
bool isSync(Optional!(T0) sync)
Undocumented in source. Be warned that the author may not have intended to support it.
isTexture
bool isTexture(Optional!(T0) texture)
Undocumented in source. Be warned that the author may not have intended to support it.
isTransformFeedback
bool isTransformFeedback(Optional!(T0) tf)
Undocumented in source. Be warned that the author may not have intended to support it.
isVertexArray
bool isVertexArray(Optional!(T0) vertexArray)
Undocumented in source. Be warned that the author may not have intended to support it.
lineWidth
void lineWidth(float width)
Undocumented in source. Be warned that the author may not have intended to support it.
linkProgram
void linkProgram(WebGLProgram program)
Undocumented in source. Be warned that the author may not have intended to support it.
pauseTransformFeedback
void pauseTransformFeedback()
Undocumented in source. Be warned that the author may not have intended to support it.
pixelStorei
void pixelStorei(uint pname, int param)
Undocumented in source. Be warned that the author may not have intended to support it.
polygonOffset
void polygonOffset(float factor, float units)
Undocumented in source. Be warned that the author may not have intended to support it.
readBuffer
void readBuffer(uint src)
Undocumented in source. Be warned that the author may not have intended to support it.
readPixels
void readPixels(int x, int y, int width, int height, uint format, uint type, Optional!(T6) dstData)
Undocumented in source. Be warned that the author may not have intended to support it.
readPixels
void readPixels(int x, int y, int width, int height, uint format, uint type, int offset)
Undocumented in source. Be warned that the author may not have intended to support it.
readPixels
void readPixels(int x, int y, int width, int height, uint format, uint type, ArrayBufferView dstData, uint dstOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
renderbufferStorage
void renderbufferStorage(uint target, uint internalformat, int width, int height)
Undocumented in source. Be warned that the author may not have intended to support it.
renderbufferStorageMultisample
void renderbufferStorageMultisample(uint target, int samples, uint internalformat, int width, int height)
Undocumented in source. Be warned that the author may not have intended to support it.
resumeTransformFeedback
void resumeTransformFeedback()
Undocumented in source. Be warned that the author may not have intended to support it.
sampleCoverage
void sampleCoverage(float value, bool invert)
Undocumented in source. Be warned that the author may not have intended to support it.
samplerParameterf
void samplerParameterf(WebGLSampler sampler, uint pname, float param)
Undocumented in source. Be warned that the author may not have intended to support it.
samplerParameteri
void samplerParameteri(WebGLSampler sampler, uint pname, int param)
Undocumented in source. Be warned that the author may not have intended to support it.
scissor
void scissor(int x, int y, int width, int height)
Undocumented in source. Be warned that the author may not have intended to support it.
shaderSource
void shaderSource(WebGLShader shader, string source)
Undocumented in source. Be warned that the author may not have intended to support it.
stencilFunc
void stencilFunc(uint func, int ref_, uint mask)
Undocumented in source. Be warned that the author may not have intended to support it.
stencilFuncSeparate
void stencilFuncSeparate(uint face, uint func, int ref_, uint mask)
Undocumented in source. Be warned that the author may not have intended to support it.
stencilMask
void stencilMask(uint mask)
Undocumented in source. Be warned that the author may not have intended to support it.
stencilMaskSeparate
void stencilMaskSeparate(uint face, uint mask)
Undocumented in source. Be warned that the author may not have intended to support it.
stencilOp
void stencilOp(uint fail, uint zfail, uint zpass)
Undocumented in source. Be warned that the author may not have intended to support it.
stencilOpSeparate
void stencilOpSeparate(uint face, uint fail, uint zfail, uint zpass)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, int width, int height, int border, uint format, uint type, HTMLImageElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, int width, int height, int border, uint format, uint type, HTMLCanvasElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, int width, int height, int border, uint format, uint type, int pboOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, int width, int height, int border, uint format, uint type, HTMLVideoElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, int width, int height, int border, uint format, uint type, ImageBitmap source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, int width, int height, int border, uint format, uint type, ImageData source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, int width, int height, int border, uint format, uint type, ArrayBufferView srcData, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, int width, int height, int border, uint format, uint type, Optional!(T8) pixels)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, uint format, uint type, HTMLCanvasElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, uint format, uint type, HTMLImageElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, uint format, uint type, HTMLVideoElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, uint format, uint type, ImageBitmap source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage2D
void texImage2D(uint target, int level, int internalformat, uint format, uint type, ImageData source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage3D
void texImage3D(uint target, int level, int internalformat, int width, int height, int depth, int border, uint format, uint type, int pboOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage3D
void texImage3D(uint target, int level, int internalformat, int width, int height, int depth, int border, uint format, uint type, HTMLCanvasElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage3D
void texImage3D(uint target, int level, int internalformat, int width, int height, int depth, int border, uint format, uint type, HTMLImageElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage3D
void texImage3D(uint target, int level, int internalformat, int width, int height, int depth, int border, uint format, uint type, HTMLVideoElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage3D
void texImage3D(uint target, int level, int internalformat, int width, int height, int depth, int border, uint format, uint type, ImageBitmap source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage3D
void texImage3D(uint target, int level, int internalformat, int width, int height, int depth, int border, uint format, uint type, ImageData source)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage3D
void texImage3D(uint target, int level, int internalformat, int width, int height, int depth, int border, uint format, uint type, Optional!(T9) srcData)
Undocumented in source. Be warned that the author may not have intended to support it.
texImage3D
void texImage3D(uint target, int level, int internalformat, int width, int height, int depth, int border, uint format, uint type, ArrayBufferView srcData, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
texParameterf
void texParameterf(uint target, uint pname, float param)
Undocumented in source. Be warned that the author may not have intended to support it.
texParameteri
void texParameteri(uint target, uint pname, int param)
Undocumented in source. Be warned that the author may not have intended to support it.
texStorage2D
void texStorage2D(uint target, int levels, uint internalformat, int width, int height)
Undocumented in source. Be warned that the author may not have intended to support it.
texStorage3D
void texStorage3D(uint target, int levels, uint internalformat, int width, int height, int depth)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, uint format, uint type, ImageData source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, uint format, uint type, ImageBitmap source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, uint type, int pboOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, uint type, HTMLCanvasElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, uint format, uint type, HTMLVideoElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, uint type, HTMLImageElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, uint type, HTMLVideoElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, uint type, ImageBitmap source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, uint type, ImageData source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, uint type, ArrayBufferView srcData, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, int width, int height, uint format, uint type, Optional!(T8) pixels)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, uint format, uint type, HTMLCanvasElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage2D
void texSubImage2D(uint target, int level, int xoffset, int yoffset, uint format, uint type, HTMLImageElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage3D
void texSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, uint type, int pboOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage3D
void texSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, uint type, HTMLCanvasElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage3D
void texSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, uint type, HTMLImageElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage3D
void texSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, uint type, HTMLVideoElement source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage3D
void texSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, uint type, ImageBitmap source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage3D
void texSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, uint type, ImageData source)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage3D
void texSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, uint type, Optional!(T10) srcData, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
texSubImage3D
void texSubImage3D(uint target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, uint format, uint type, Optional!(T10) srcData)
Undocumented in source. Be warned that the author may not have intended to support it.
transformFeedbackVaryings
void transformFeedbackVaryings(WebGLProgram program, Sequence!(string) varyings, uint bufferMode)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1f
void uniform1f(Optional!(T0) location, float x)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1fv
void uniform1fv(Optional!(T0) location, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1fv
void uniform1fv(Optional!(T0) location, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1fv
void uniform1fv(Optional!(T0) location, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1i
void uniform1i(Optional!(T0) location, int x)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1iv
void uniform1iv(Optional!(T0) location, Int32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1iv
void uniform1iv(Optional!(T0) location, Int32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1iv
void uniform1iv(Optional!(T0) location, Int32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1ui
void uniform1ui(Optional!(T0) location, uint v0)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1uiv
void uniform1uiv(Optional!(T0) location, Uint32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1uiv
void uniform1uiv(Optional!(T0) location, Uint32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform1uiv
void uniform1uiv(Optional!(T0) location, Uint32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2f
void uniform2f(Optional!(T0) location, float x, float y)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2fv
void uniform2fv(Optional!(T0) location, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2fv
void uniform2fv(Optional!(T0) location, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2fv
void uniform2fv(Optional!(T0) location, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2i
void uniform2i(Optional!(T0) location, int x, int y)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2iv
void uniform2iv(Optional!(T0) location, Int32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2iv
void uniform2iv(Optional!(T0) location, Int32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2iv
void uniform2iv(Optional!(T0) location, Int32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2ui
void uniform2ui(Optional!(T0) location, uint v0, uint v1)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2uiv
void uniform2uiv(Optional!(T0) location, Uint32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2uiv
void uniform2uiv(Optional!(T0) location, Uint32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform2uiv
void uniform2uiv(Optional!(T0) location, Uint32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3f
void uniform3f(Optional!(T0) location, float x, float y, float z)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3fv
void uniform3fv(Optional!(T0) location, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3fv
void uniform3fv(Optional!(T0) location, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3fv
void uniform3fv(Optional!(T0) location, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3i
void uniform3i(Optional!(T0) location, int x, int y, int z)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3iv
void uniform3iv(Optional!(T0) location, Int32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3iv
void uniform3iv(Optional!(T0) location, Int32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3iv
void uniform3iv(Optional!(T0) location, Int32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3ui
void uniform3ui(Optional!(T0) location, uint v0, uint v1, uint v2)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3uiv
void uniform3uiv(Optional!(T0) location, Uint32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3uiv
void uniform3uiv(Optional!(T0) location, Uint32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform3uiv
void uniform3uiv(Optional!(T0) location, Uint32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4f
void uniform4f(Optional!(T0) location, float x, float y, float z, float w)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4fv
void uniform4fv(Optional!(T0) location, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4fv
void uniform4fv(Optional!(T0) location, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4fv
void uniform4fv(Optional!(T0) location, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4i
void uniform4i(Optional!(T0) location, int x, int y, int z, int w)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4iv
void uniform4iv(Optional!(T0) location, Int32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4iv
void uniform4iv(Optional!(T0) location, Int32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4iv
void uniform4iv(Optional!(T0) location, Int32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4ui
void uniform4ui(Optional!(T0) location, uint v0, uint v1, uint v2, uint v3)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4uiv
void uniform4uiv(Optional!(T0) location, Uint32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4uiv
void uniform4uiv(Optional!(T0) location, Uint32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniform4uiv
void uniform4uiv(Optional!(T0) location, Uint32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformBlockBinding
void uniformBlockBinding(WebGLProgram program, uint uniformBlockIndex, uint uniformBlockBinding)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix2fv
void uniformMatrix2fv(Optional!(T0) location, bool transpose, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix2fv
void uniformMatrix2fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix2fv
void uniformMatrix2fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix2x3fv
void uniformMatrix2x3fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix2x3fv
void uniformMatrix2x3fv(Optional!(T0) location, bool transpose, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix2x3fv
void uniformMatrix2x3fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix2x4fv
void uniformMatrix2x4fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix2x4fv
void uniformMatrix2x4fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix2x4fv
void uniformMatrix2x4fv(Optional!(T0) location, bool transpose, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix3fv
void uniformMatrix3fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix3fv
void uniformMatrix3fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix3fv
void uniformMatrix3fv(Optional!(T0) location, bool transpose, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix3x2fv
void uniformMatrix3x2fv(Optional!(T0) location, bool transpose, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix3x2fv
void uniformMatrix3x2fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix3x2fv
void uniformMatrix3x2fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix3x4fv
void uniformMatrix3x4fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix3x4fv
void uniformMatrix3x4fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix3x4fv
void uniformMatrix3x4fv(Optional!(T0) location, bool transpose, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix4fv
void uniformMatrix4fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix4fv
void uniformMatrix4fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix4fv
void uniformMatrix4fv(Optional!(T0) location, bool transpose, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix4x2fv
void uniformMatrix4x2fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix4x2fv
void uniformMatrix4x2fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix4x2fv
void uniformMatrix4x2fv(Optional!(T0) location, bool transpose, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix4x3fv
void uniformMatrix4x3fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset, uint srcLength)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix4x3fv
void uniformMatrix4x3fv(Optional!(T0) location, bool transpose, Float32List data, uint srcOffset)
Undocumented in source. Be warned that the author may not have intended to support it.
uniformMatrix4x3fv
void uniformMatrix4x3fv(Optional!(T0) location, bool transpose, Float32List data)
Undocumented in source. Be warned that the author may not have intended to support it.
useProgram
void useProgram(Optional!(T0) program)
Undocumented in source. Be warned that the author may not have intended to support it.
validateProgram
void validateProgram(WebGLProgram program)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttrib1f
void vertexAttrib1f(uint indx, float x)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttrib1fv
void vertexAttrib1fv(uint indx, Float32List values)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttrib2f
void vertexAttrib2f(uint indx, float x, float y)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttrib2fv
void vertexAttrib2fv(uint indx, Float32List values)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttrib3f
void vertexAttrib3f(uint indx, float x, float y, float z)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttrib3fv
void vertexAttrib3fv(uint indx, Float32List values)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttrib4f
void vertexAttrib4f(uint indx, float x, float y, float z, float w)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttrib4fv
void vertexAttrib4fv(uint indx, Float32List values)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttribDivisor
void vertexAttribDivisor(uint index, uint divisor)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttribI4i
void vertexAttribI4i(uint index, int x, int y, int z, int w)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttribI4iv
void vertexAttribI4iv(uint index, Int32List values)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttribI4ui
void vertexAttribI4ui(uint index, uint x, uint y, uint z, uint w)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttribI4uiv
void vertexAttribI4uiv(uint index, Uint32List values)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttribIPointer
void vertexAttribIPointer(uint index, int size, uint type, int stride, int offset)
Undocumented in source. Be warned that the author may not have intended to support it.
vertexAttribPointer
void vertexAttribPointer(uint indx, int size, uint type, bool normalized, int stride, int offset)
Undocumented in source. Be warned that the author may not have intended to support it.
viewport
void viewport(int x, int y, int width, int height)
Undocumented in source. Be warned that the author may not have intended to support it.
waitSync
void waitSync(WebGLSync sync, uint flags, int timeout)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

ACTIVE_ATTRIBUTES
enum uint ACTIVE_ATTRIBUTES;
Undocumented in source.
ACTIVE_TEXTURE
enum uint ACTIVE_TEXTURE;
Undocumented in source.
ACTIVE_UNIFORMS
enum uint ACTIVE_UNIFORMS;
Undocumented in source.
ACTIVE_UNIFORM_BLOCKS
enum uint ACTIVE_UNIFORM_BLOCKS;
Undocumented in source.
ALIASED_LINE_WIDTH_RANGE
enum uint ALIASED_LINE_WIDTH_RANGE;
Undocumented in source.
ALIASED_POINT_SIZE_RANGE
enum uint ALIASED_POINT_SIZE_RANGE;
Undocumented in source.
ALPHA
enum uint ALPHA;
Undocumented in source.
ALPHA_BITS
enum uint ALPHA_BITS;
Undocumented in source.
ALREADY_SIGNALED
enum uint ALREADY_SIGNALED;
Undocumented in source.
ALWAYS
enum uint ALWAYS;
Undocumented in source.
ANY_SAMPLES_PASSED
enum uint ANY_SAMPLES_PASSED;
Undocumented in source.
ANY_SAMPLES_PASSED_CONSERVATIVE
enum uint ANY_SAMPLES_PASSED_CONSERVATIVE;
Undocumented in source.
ARRAY_BUFFER
enum uint ARRAY_BUFFER;
Undocumented in source.
ARRAY_BUFFER_BINDING
enum uint ARRAY_BUFFER_BINDING;
Undocumented in source.
ATTACHED_SHADERS
enum uint ATTACHED_SHADERS;
Undocumented in source.
BACK
enum uint BACK;
Undocumented in source.
BLEND
enum uint BLEND;
Undocumented in source.
BLEND_COLOR
enum uint BLEND_COLOR;
Undocumented in source.
BLEND_DST_ALPHA
enum uint BLEND_DST_ALPHA;
Undocumented in source.
BLEND_DST_RGB
enum uint BLEND_DST_RGB;
Undocumented in source.
BLEND_EQUATION
enum uint BLEND_EQUATION;
Undocumented in source.
BLEND_EQUATION_ALPHA
enum uint BLEND_EQUATION_ALPHA;
Undocumented in source.
BLEND_EQUATION_RGB
enum uint BLEND_EQUATION_RGB;
Undocumented in source.
BLEND_SRC_ALPHA
enum uint BLEND_SRC_ALPHA;
Undocumented in source.
BLEND_SRC_RGB
enum uint BLEND_SRC_RGB;
Undocumented in source.
BLUE_BITS
enum uint BLUE_BITS;
Undocumented in source.
BOOL
enum uint BOOL;
Undocumented in source.
BOOL_VEC2
enum uint BOOL_VEC2;
Undocumented in source.
BOOL_VEC3
enum uint BOOL_VEC3;
Undocumented in source.
BOOL_VEC4
enum uint BOOL_VEC4;
Undocumented in source.
BROWSER_DEFAULT_WEBGL
enum uint BROWSER_DEFAULT_WEBGL;
Undocumented in source.
BUFFER_SIZE
enum uint BUFFER_SIZE;
Undocumented in source.
BUFFER_USAGE
enum uint BUFFER_USAGE;
Undocumented in source.
BYTE
enum uint BYTE;
Undocumented in source.
CCW
enum uint CCW;
Undocumented in source.
CLAMP_TO_EDGE
enum uint CLAMP_TO_EDGE;
Undocumented in source.
COLOR
enum uint COLOR;
Undocumented in source.
COLOR_ATTACHMENT0
enum uint COLOR_ATTACHMENT0;
Undocumented in source.
COLOR_ATTACHMENT1
enum uint COLOR_ATTACHMENT1;
Undocumented in source.
COLOR_ATTACHMENT10
enum uint COLOR_ATTACHMENT10;
Undocumented in source.
COLOR_ATTACHMENT11
enum uint COLOR_ATTACHMENT11;
Undocumented in source.
COLOR_ATTACHMENT12
enum uint COLOR_ATTACHMENT12;
Undocumented in source.
COLOR_ATTACHMENT13
enum uint COLOR_ATTACHMENT13;
Undocumented in source.
COLOR_ATTACHMENT14
enum uint COLOR_ATTACHMENT14;
Undocumented in source.
COLOR_ATTACHMENT15
enum uint COLOR_ATTACHMENT15;
Undocumented in source.
COLOR_ATTACHMENT2
enum uint COLOR_ATTACHMENT2;
Undocumented in source.
COLOR_ATTACHMENT3
enum uint COLOR_ATTACHMENT3;
Undocumented in source.
COLOR_ATTACHMENT4
enum uint COLOR_ATTACHMENT4;
Undocumented in source.
COLOR_ATTACHMENT5
enum uint COLOR_ATTACHMENT5;
Undocumented in source.
COLOR_ATTACHMENT6
enum uint COLOR_ATTACHMENT6;
Undocumented in source.
COLOR_ATTACHMENT7
enum uint COLOR_ATTACHMENT7;
Undocumented in source.
COLOR_ATTACHMENT8
enum uint COLOR_ATTACHMENT8;
Undocumented in source.
COLOR_ATTACHMENT9
enum uint COLOR_ATTACHMENT9;
Undocumented in source.
COLOR_BUFFER_BIT
enum uint COLOR_BUFFER_BIT;
Undocumented in source.
COLOR_CLEAR_VALUE
enum uint COLOR_CLEAR_VALUE;
Undocumented in source.
COLOR_WRITEMASK
enum uint COLOR_WRITEMASK;
Undocumented in source.
COMPARE_REF_TO_TEXTURE
enum uint COMPARE_REF_TO_TEXTURE;
Undocumented in source.
COMPILE_STATUS
enum uint COMPILE_STATUS;
Undocumented in source.
COMPRESSED_TEXTURE_FORMATS
enum uint COMPRESSED_TEXTURE_FORMATS;
Undocumented in source.
CONDITION_SATISFIED
enum uint CONDITION_SATISFIED;
Undocumented in source.
CONSTANT_ALPHA
enum uint CONSTANT_ALPHA;
Undocumented in source.
CONSTANT_COLOR
enum uint CONSTANT_COLOR;
Undocumented in source.
CONTEXT_LOST_WEBGL
enum uint CONTEXT_LOST_WEBGL;
Undocumented in source.
COPY_READ_BUFFER
enum uint COPY_READ_BUFFER;
Undocumented in source.
COPY_READ_BUFFER_BINDING
enum uint COPY_READ_BUFFER_BINDING;
Undocumented in source.
COPY_WRITE_BUFFER
enum uint COPY_WRITE_BUFFER;
Undocumented in source.
COPY_WRITE_BUFFER_BINDING
enum uint COPY_WRITE_BUFFER_BINDING;
Undocumented in source.
CULL_FACE
enum uint CULL_FACE;
Undocumented in source.
CULL_FACE_MODE
enum uint CULL_FACE_MODE;
Undocumented in source.
CURRENT_PROGRAM
enum uint CURRENT_PROGRAM;
Undocumented in source.
CURRENT_QUERY
enum uint CURRENT_QUERY;
Undocumented in source.
CURRENT_VERTEX_ATTRIB
enum uint CURRENT_VERTEX_ATTRIB;
Undocumented in source.
CW
enum uint CW;
Undocumented in source.
DECR
enum uint DECR;
Undocumented in source.
DECR_WRAP
enum uint DECR_WRAP;
Undocumented in source.
DELETE_STATUS
enum uint DELETE_STATUS;
Undocumented in source.
DEPTH
enum uint DEPTH;
Undocumented in source.
DEPTH24_STENCIL8
enum uint DEPTH24_STENCIL8;
Undocumented in source.
DEPTH32F_STENCIL8
enum uint DEPTH32F_STENCIL8;
Undocumented in source.
DEPTH_ATTACHMENT
enum uint DEPTH_ATTACHMENT;
Undocumented in source.
DEPTH_BITS
enum uint DEPTH_BITS;
Undocumented in source.
DEPTH_BUFFER_BIT
enum uint DEPTH_BUFFER_BIT;
Undocumented in source.
DEPTH_CLEAR_VALUE
enum uint DEPTH_CLEAR_VALUE;
Undocumented in source.
DEPTH_COMPONENT
enum uint DEPTH_COMPONENT;
Undocumented in source.
DEPTH_COMPONENT16
enum uint DEPTH_COMPONENT16;
Undocumented in source.
DEPTH_COMPONENT24
enum uint DEPTH_COMPONENT24;
Undocumented in source.
DEPTH_COMPONENT32F
enum uint DEPTH_COMPONENT32F;
Undocumented in source.
DEPTH_FUNC
enum uint DEPTH_FUNC;
Undocumented in source.
DEPTH_RANGE
enum uint DEPTH_RANGE;
Undocumented in source.
DEPTH_STENCIL
enum uint DEPTH_STENCIL;
Undocumented in source.
DEPTH_STENCIL_ATTACHMENT
enum uint DEPTH_STENCIL_ATTACHMENT;
Undocumented in source.
DEPTH_TEST
enum uint DEPTH_TEST;
Undocumented in source.
DEPTH_WRITEMASK
enum uint DEPTH_WRITEMASK;
Undocumented in source.
DITHER
enum uint DITHER;
Undocumented in source.
DONT_CARE
enum uint DONT_CARE;
Undocumented in source.
DRAW_BUFFER0
enum uint DRAW_BUFFER0;
Undocumented in source.
DRAW_BUFFER1
enum uint DRAW_BUFFER1;
Undocumented in source.
DRAW_BUFFER10
enum uint DRAW_BUFFER10;
Undocumented in source.
DRAW_BUFFER11
enum uint DRAW_BUFFER11;
Undocumented in source.
DRAW_BUFFER12
enum uint DRAW_BUFFER12;
Undocumented in source.
DRAW_BUFFER13
enum uint DRAW_BUFFER13;
Undocumented in source.
DRAW_BUFFER14
enum uint DRAW_BUFFER14;
Undocumented in source.
DRAW_BUFFER15
enum uint DRAW_BUFFER15;
Undocumented in source.
DRAW_BUFFER2
enum uint DRAW_BUFFER2;
Undocumented in source.
DRAW_BUFFER3
enum uint DRAW_BUFFER3;
Undocumented in source.
DRAW_BUFFER4
enum uint DRAW_BUFFER4;
Undocumented in source.
DRAW_BUFFER5
enum uint DRAW_BUFFER5;
Undocumented in source.
DRAW_BUFFER6
enum uint DRAW_BUFFER6;
Undocumented in source.
DRAW_BUFFER7
enum uint DRAW_BUFFER7;
Undocumented in source.
DRAW_BUFFER8
enum uint DRAW_BUFFER8;
Undocumented in source.
DRAW_BUFFER9
enum uint DRAW_BUFFER9;
Undocumented in source.
DRAW_FRAMEBUFFER
enum uint DRAW_FRAMEBUFFER;
Undocumented in source.
DRAW_FRAMEBUFFER_BINDING
enum uint DRAW_FRAMEBUFFER_BINDING;
Undocumented in source.
DST_ALPHA
enum uint DST_ALPHA;
Undocumented in source.
DST_COLOR
enum uint DST_COLOR;
Undocumented in source.
DYNAMIC_COPY
enum uint DYNAMIC_COPY;
Undocumented in source.
DYNAMIC_DRAW
enum uint DYNAMIC_DRAW;
Undocumented in source.
DYNAMIC_READ
enum uint DYNAMIC_READ;
Undocumented in source.
ELEMENT_ARRAY_BUFFER
enum uint ELEMENT_ARRAY_BUFFER;
Undocumented in source.
ELEMENT_ARRAY_BUFFER_BINDING
enum uint ELEMENT_ARRAY_BUFFER_BINDING;
Undocumented in source.
EQUAL
enum uint EQUAL;
Undocumented in source.
FASTEST
enum uint FASTEST;
Undocumented in source.
FLOAT
enum uint FLOAT;
Undocumented in source.
FLOAT_32_UNSIGNED_INT_24_8_REV
enum uint FLOAT_32_UNSIGNED_INT_24_8_REV;
Undocumented in source.
FLOAT_MAT2
enum uint FLOAT_MAT2;
Undocumented in source.
FLOAT_MAT2x3
enum uint FLOAT_MAT2x3;
Undocumented in source.
FLOAT_MAT2x4
enum uint FLOAT_MAT2x4;
Undocumented in source.
FLOAT_MAT3
enum uint FLOAT_MAT3;
Undocumented in source.
FLOAT_MAT3x2
enum uint FLOAT_MAT3x2;
Undocumented in source.
FLOAT_MAT3x4
enum uint FLOAT_MAT3x4;
Undocumented in source.
FLOAT_MAT4
enum uint FLOAT_MAT4;
Undocumented in source.
FLOAT_MAT4x2
enum uint FLOAT_MAT4x2;
Undocumented in source.
FLOAT_MAT4x3
enum uint FLOAT_MAT4x3;
Undocumented in source.
FLOAT_VEC2
enum uint FLOAT_VEC2;
Undocumented in source.
FLOAT_VEC3
enum uint FLOAT_VEC3;
Undocumented in source.
FLOAT_VEC4
enum uint FLOAT_VEC4;
Undocumented in source.
FRAGMENT_SHADER
enum uint FRAGMENT_SHADER;
Undocumented in source.
FRAGMENT_SHADER_DERIVATIVE_HINT
enum uint FRAGMENT_SHADER_DERIVATIVE_HINT;
Undocumented in source.
FRAMEBUFFER
enum uint FRAMEBUFFER;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE
enum uint FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_BLUE_SIZE
enum uint FRAMEBUFFER_ATTACHMENT_BLUE_SIZE;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING
enum uint FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE
enum uint FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE
enum uint FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_GREEN_SIZE
enum uint FRAMEBUFFER_ATTACHMENT_GREEN_SIZE;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_OBJECT_NAME
enum uint FRAMEBUFFER_ATTACHMENT_OBJECT_NAME;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE
enum uint FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_RED_SIZE
enum uint FRAMEBUFFER_ATTACHMENT_RED_SIZE;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE
enum uint FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE
enum uint FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER
enum uint FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER;
Undocumented in source.
FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL
enum uint FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL;
Undocumented in source.
FRAMEBUFFER_BINDING
enum uint FRAMEBUFFER_BINDING;
Undocumented in source.
FRAMEBUFFER_COMPLETE
enum uint FRAMEBUFFER_COMPLETE;
Undocumented in source.
FRAMEBUFFER_DEFAULT
enum uint FRAMEBUFFER_DEFAULT;
Undocumented in source.
FRAMEBUFFER_INCOMPLETE_ATTACHMENT
enum uint FRAMEBUFFER_INCOMPLETE_ATTACHMENT;
Undocumented in source.
FRAMEBUFFER_INCOMPLETE_DIMENSIONS
enum uint FRAMEBUFFER_INCOMPLETE_DIMENSIONS;
Undocumented in source.
FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT
enum uint FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT;
Undocumented in source.
FRAMEBUFFER_INCOMPLETE_MULTISAMPLE
enum uint FRAMEBUFFER_INCOMPLETE_MULTISAMPLE;
Undocumented in source.
FRAMEBUFFER_UNSUPPORTED
enum uint FRAMEBUFFER_UNSUPPORTED;
Undocumented in source.
FRONT
enum uint FRONT;
Undocumented in source.
FRONT_AND_BACK
enum uint FRONT_AND_BACK;
Undocumented in source.
FRONT_FACE
enum uint FRONT_FACE;
Undocumented in source.
FUNC_ADD
enum uint FUNC_ADD;
Undocumented in source.
FUNC_REVERSE_SUBTRACT
enum uint FUNC_REVERSE_SUBTRACT;
Undocumented in source.
FUNC_SUBTRACT
enum uint FUNC_SUBTRACT;
Undocumented in source.
GENERATE_MIPMAP_HINT
enum uint GENERATE_MIPMAP_HINT;
Undocumented in source.
GEQUAL
enum uint GEQUAL;
Undocumented in source.
GREATER
enum uint GREATER;
Undocumented in source.
GREEN_BITS
enum uint GREEN_BITS;
Undocumented in source.
HALF_FLOAT
enum uint HALF_FLOAT;
Undocumented in source.
HIGH_FLOAT
enum uint HIGH_FLOAT;
Undocumented in source.
HIGH_INT
enum uint HIGH_INT;
Undocumented in source.
IMPLEMENTATION_COLOR_READ_FORMAT
enum uint IMPLEMENTATION_COLOR_READ_FORMAT;
Undocumented in source.
IMPLEMENTATION_COLOR_READ_TYPE
enum uint IMPLEMENTATION_COLOR_READ_TYPE;
Undocumented in source.
INCR
enum uint INCR;
Undocumented in source.
INCR_WRAP
enum uint INCR_WRAP;
Undocumented in source.
INT
enum uint INT;
Undocumented in source.
INTERLEAVED_ATTRIBS
enum uint INTERLEAVED_ATTRIBS;
Undocumented in source.
INT_2_10_10_10_REV
enum uint INT_2_10_10_10_REV;
Undocumented in source.
INT_SAMPLER_2D
enum uint INT_SAMPLER_2D;
Undocumented in source.
INT_SAMPLER_2D_ARRAY
enum uint INT_SAMPLER_2D_ARRAY;
Undocumented in source.
INT_SAMPLER_3D
enum uint INT_SAMPLER_3D;
Undocumented in source.
INT_SAMPLER_CUBE
enum uint INT_SAMPLER_CUBE;
Undocumented in source.
INT_VEC2
enum uint INT_VEC2;
Undocumented in source.
INT_VEC3
enum uint INT_VEC3;
Undocumented in source.
INT_VEC4
enum uint INT_VEC4;
Undocumented in source.
INVALID_ENUM
enum uint INVALID_ENUM;
Undocumented in source.
INVALID_FRAMEBUFFER_OPERATION
enum uint INVALID_FRAMEBUFFER_OPERATION;
Undocumented in source.
INVALID_INDEX
enum uint INVALID_INDEX;
Undocumented in source.
INVALID_OPERATION
enum uint INVALID_OPERATION;
Undocumented in source.
INVALID_VALUE
enum uint INVALID_VALUE;
Undocumented in source.
INVERT
enum uint INVERT;
Undocumented in source.
KEEP
enum uint KEEP;
Undocumented in source.
LEQUAL
enum uint LEQUAL;
Undocumented in source.
LESS
enum uint LESS;
Undocumented in source.
LINEAR
enum uint LINEAR;
Undocumented in source.
LINEAR_MIPMAP_LINEAR
enum uint LINEAR_MIPMAP_LINEAR;
Undocumented in source.
LINEAR_MIPMAP_NEAREST
enum uint LINEAR_MIPMAP_NEAREST;
Undocumented in source.
LINES
enum uint LINES;
Undocumented in source.
LINE_LOOP
enum uint LINE_LOOP;
Undocumented in source.
LINE_STRIP
enum uint LINE_STRIP;
Undocumented in source.
LINE_WIDTH
enum uint LINE_WIDTH;
Undocumented in source.
LINK_STATUS
enum uint LINK_STATUS;
Undocumented in source.
LOW_FLOAT
enum uint LOW_FLOAT;
Undocumented in source.
LOW_INT
enum uint LOW_INT;
Undocumented in source.
LUMINANCE
enum uint LUMINANCE;
Undocumented in source.
LUMINANCE_ALPHA
enum uint LUMINANCE_ALPHA;
Undocumented in source.
MAX
enum uint MAX;
Undocumented in source.
MAX_3D_TEXTURE_SIZE
enum uint MAX_3D_TEXTURE_SIZE;
Undocumented in source.
MAX_ARRAY_TEXTURE_LAYERS
enum uint MAX_ARRAY_TEXTURE_LAYERS;
Undocumented in source.
MAX_CLIENT_WAIT_TIMEOUT_WEBGL
enum uint MAX_CLIENT_WAIT_TIMEOUT_WEBGL;
Undocumented in source.
MAX_COLOR_ATTACHMENTS
enum uint MAX_COLOR_ATTACHMENTS;
Undocumented in source.
MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS
enum uint MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS;
Undocumented in source.
MAX_COMBINED_TEXTURE_IMAGE_UNITS
enum uint MAX_COMBINED_TEXTURE_IMAGE_UNITS;
Undocumented in source.
MAX_COMBINED_UNIFORM_BLOCKS
enum uint MAX_COMBINED_UNIFORM_BLOCKS;
Undocumented in source.
MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS
enum uint MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS;
Undocumented in source.
MAX_CUBE_MAP_TEXTURE_SIZE
enum uint MAX_CUBE_MAP_TEXTURE_SIZE;
Undocumented in source.
MAX_DRAW_BUFFERS
enum uint MAX_DRAW_BUFFERS;
Undocumented in source.
MAX_ELEMENTS_INDICES
enum uint MAX_ELEMENTS_INDICES;
Undocumented in source.
MAX_ELEMENTS_VERTICES
enum uint MAX_ELEMENTS_VERTICES;
Undocumented in source.
MAX_ELEMENT_INDEX
enum uint MAX_ELEMENT_INDEX;
Undocumented in source.
MAX_FRAGMENT_INPUT_COMPONENTS
enum uint MAX_FRAGMENT_INPUT_COMPONENTS;
Undocumented in source.
MAX_FRAGMENT_UNIFORM_BLOCKS
enum uint MAX_FRAGMENT_UNIFORM_BLOCKS;
Undocumented in source.
MAX_FRAGMENT_UNIFORM_COMPONENTS
enum uint MAX_FRAGMENT_UNIFORM_COMPONENTS;
Undocumented in source.
MAX_FRAGMENT_UNIFORM_VECTORS
enum uint MAX_FRAGMENT_UNIFORM_VECTORS;
Undocumented in source.
MAX_PROGRAM_TEXEL_OFFSET
enum uint MAX_PROGRAM_TEXEL_OFFSET;
Undocumented in source.
MAX_RENDERBUFFER_SIZE
enum uint MAX_RENDERBUFFER_SIZE;
Undocumented in source.
MAX_SAMPLES
enum uint MAX_SAMPLES;
Undocumented in source.
MAX_SERVER_WAIT_TIMEOUT
enum uint MAX_SERVER_WAIT_TIMEOUT;
Undocumented in source.
MAX_TEXTURE_IMAGE_UNITS
enum uint MAX_TEXTURE_IMAGE_UNITS;
Undocumented in source.
MAX_TEXTURE_LOD_BIAS
enum uint MAX_TEXTURE_LOD_BIAS;
Undocumented in source.
MAX_TEXTURE_SIZE
enum uint MAX_TEXTURE_SIZE;
Undocumented in source.
MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS
enum uint MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS;
Undocumented in source.
MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS
enum uint MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS;
Undocumented in source.
MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS
enum uint MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS;
Undocumented in source.
MAX_UNIFORM_BLOCK_SIZE
enum uint MAX_UNIFORM_BLOCK_SIZE;
Undocumented in source.
MAX_UNIFORM_BUFFER_BINDINGS
enum uint MAX_UNIFORM_BUFFER_BINDINGS;
Undocumented in source.
MAX_VARYING_COMPONENTS
enum uint MAX_VARYING_COMPONENTS;
Undocumented in source.
MAX_VARYING_VECTORS
enum uint MAX_VARYING_VECTORS;
Undocumented in source.
MAX_VERTEX_ATTRIBS
enum uint MAX_VERTEX_ATTRIBS;
Undocumented in source.
MAX_VERTEX_OUTPUT_COMPONENTS
enum uint MAX_VERTEX_OUTPUT_COMPONENTS;
Undocumented in source.
MAX_VERTEX_TEXTURE_IMAGE_UNITS
enum uint MAX_VERTEX_TEXTURE_IMAGE_UNITS;
Undocumented in source.
MAX_VERTEX_UNIFORM_BLOCKS
enum uint MAX_VERTEX_UNIFORM_BLOCKS;
Undocumented in source.
MAX_VERTEX_UNIFORM_COMPONENTS
enum uint MAX_VERTEX_UNIFORM_COMPONENTS;
Undocumented in source.
MAX_VERTEX_UNIFORM_VECTORS
enum uint MAX_VERTEX_UNIFORM_VECTORS;
Undocumented in source.
MAX_VIEWPORT_DIMS
enum uint MAX_VIEWPORT_DIMS;
Undocumented in source.
MEDIUM_FLOAT
enum uint MEDIUM_FLOAT;
Undocumented in source.
MEDIUM_INT
enum uint MEDIUM_INT;
Undocumented in source.
MIN
enum uint MIN;
Undocumented in source.
MIN_PROGRAM_TEXEL_OFFSET
enum uint MIN_PROGRAM_TEXEL_OFFSET;
Undocumented in source.
MIRRORED_REPEAT
enum uint MIRRORED_REPEAT;
Undocumented in source.
NEAREST
enum uint NEAREST;
Undocumented in source.
NEAREST_MIPMAP_LINEAR
enum uint NEAREST_MIPMAP_LINEAR;
Undocumented in source.
NEAREST_MIPMAP_NEAREST
enum uint NEAREST_MIPMAP_NEAREST;
Undocumented in source.
NEVER
enum uint NEVER;
Undocumented in source.
NICEST
enum uint NICEST;
Undocumented in source.
NONE
enum uint NONE;
Undocumented in source.
NOTEQUAL
enum uint NOTEQUAL;
Undocumented in source.
NO_ERROR
enum uint NO_ERROR;
Undocumented in source.
OBJECT_TYPE
enum uint OBJECT_TYPE;
Undocumented in source.
ONE
enum uint ONE;
Undocumented in source.
ONE_MINUS_CONSTANT_ALPHA
enum uint ONE_MINUS_CONSTANT_ALPHA;
Undocumented in source.
ONE_MINUS_CONSTANT_COLOR
enum uint ONE_MINUS_CONSTANT_COLOR;
Undocumented in source.
ONE_MINUS_DST_ALPHA
enum uint ONE_MINUS_DST_ALPHA;
Undocumented in source.
ONE_MINUS_DST_COLOR
enum uint ONE_MINUS_DST_COLOR;
Undocumented in source.
ONE_MINUS_SRC_ALPHA
enum uint ONE_MINUS_SRC_ALPHA;
Undocumented in source.
ONE_MINUS_SRC_COLOR
enum uint ONE_MINUS_SRC_COLOR;
Undocumented in source.
OUT_OF_MEMORY
enum uint OUT_OF_MEMORY;
Undocumented in source.
PACK_ALIGNMENT
enum uint PACK_ALIGNMENT;
Undocumented in source.
PACK_ROW_LENGTH
enum uint PACK_ROW_LENGTH;
Undocumented in source.
PACK_SKIP_PIXELS
enum uint PACK_SKIP_PIXELS;
Undocumented in source.
PACK_SKIP_ROWS
enum uint PACK_SKIP_ROWS;
Undocumented in source.
PIXEL_PACK_BUFFER
enum uint PIXEL_PACK_BUFFER;
Undocumented in source.
PIXEL_PACK_BUFFER_BINDING
enum uint PIXEL_PACK_BUFFER_BINDING;
Undocumented in source.
PIXEL_UNPACK_BUFFER
enum uint PIXEL_UNPACK_BUFFER;
Undocumented in source.
PIXEL_UNPACK_BUFFER_BINDING
enum uint PIXEL_UNPACK_BUFFER_BINDING;
Undocumented in source.
POINTS
enum uint POINTS;
Undocumented in source.
POLYGON_OFFSET_FACTOR
enum uint POLYGON_OFFSET_FACTOR;
Undocumented in source.
POLYGON_OFFSET_FILL
enum uint POLYGON_OFFSET_FILL;
Undocumented in source.
POLYGON_OFFSET_UNITS
enum uint POLYGON_OFFSET_UNITS;
Undocumented in source.
QUERY_RESULT
enum uint QUERY_RESULT;
Undocumented in source.
QUERY_RESULT_AVAILABLE
enum uint QUERY_RESULT_AVAILABLE;
Undocumented in source.
R11F_G11F_B10F
enum uint R11F_G11F_B10F;
Undocumented in source.
R16F
enum uint R16F;
Undocumented in source.
R16I
enum uint R16I;
Undocumented in source.
R16UI
enum uint R16UI;
Undocumented in source.
R32F
enum uint R32F;
Undocumented in source.
R32I
enum uint R32I;
Undocumented in source.
R32UI
enum uint R32UI;
Undocumented in source.
R8
enum uint R8;
Undocumented in source.
R8I
enum uint R8I;
Undocumented in source.
R8UI
enum uint R8UI;
Undocumented in source.
R8_SNORM
enum uint R8_SNORM;
Undocumented in source.
RASTERIZER_DISCARD
enum uint RASTERIZER_DISCARD;
Undocumented in source.
READ_BUFFER
enum uint READ_BUFFER;
Undocumented in source.
READ_FRAMEBUFFER
enum uint READ_FRAMEBUFFER;
Undocumented in source.
READ_FRAMEBUFFER_BINDING
enum uint READ_FRAMEBUFFER_BINDING;
Undocumented in source.
RED
enum uint RED;
Undocumented in source.
RED_BITS
enum uint RED_BITS;
Undocumented in source.
RED_INTEGER
enum uint RED_INTEGER;
Undocumented in source.
RENDERBUFFER
enum uint RENDERBUFFER;
Undocumented in source.
RENDERBUFFER_ALPHA_SIZE
enum uint RENDERBUFFER_ALPHA_SIZE;
Undocumented in source.
RENDERBUFFER_BINDING
enum uint RENDERBUFFER_BINDING;
Undocumented in source.
RENDERBUFFER_BLUE_SIZE
enum uint RENDERBUFFER_BLUE_SIZE;
Undocumented in source.
RENDERBUFFER_DEPTH_SIZE
enum uint RENDERBUFFER_DEPTH_SIZE;
Undocumented in source.
RENDERBUFFER_GREEN_SIZE
enum uint RENDERBUFFER_GREEN_SIZE;
Undocumented in source.
RENDERBUFFER_HEIGHT
enum uint RENDERBUFFER_HEIGHT;
Undocumented in source.
RENDERBUFFER_INTERNAL_FORMAT
enum uint RENDERBUFFER_INTERNAL_FORMAT;
Undocumented in source.
RENDERBUFFER_RED_SIZE
enum uint RENDERBUFFER_RED_SIZE;
Undocumented in source.
RENDERBUFFER_SAMPLES
enum uint RENDERBUFFER_SAMPLES;
Undocumented in source.
RENDERBUFFER_STENCIL_SIZE
enum uint RENDERBUFFER_STENCIL_SIZE;
Undocumented in source.
RENDERBUFFER_WIDTH
enum uint RENDERBUFFER_WIDTH;
Undocumented in source.
RENDERER
enum uint RENDERER;
Undocumented in source.
REPEAT
enum uint REPEAT;
Undocumented in source.
REPLACE
enum uint REPLACE;
Undocumented in source.
RG
enum uint RG;
Undocumented in source.
RG16F
enum uint RG16F;
Undocumented in source.
RG16I
enum uint RG16I;
Undocumented in source.
RG16UI
enum uint RG16UI;
Undocumented in source.
RG32F
enum uint RG32F;
Undocumented in source.
RG32I
enum uint RG32I;
Undocumented in source.
RG32UI
enum uint RG32UI;
Undocumented in source.
RG8
enum uint RG8;
Undocumented in source.
RG8I
enum uint RG8I;
Undocumented in source.
RG8UI
enum uint RG8UI;
Undocumented in source.
RG8_SNORM
enum uint RG8_SNORM;
Undocumented in source.
RGB
enum uint RGB;
Undocumented in source.
RGB10_A2
enum uint RGB10_A2;
Undocumented in source.
RGB10_A2UI
enum uint RGB10_A2UI;
Undocumented in source.
RGB16F
enum uint RGB16F;
Undocumented in source.
RGB16I
enum uint RGB16I;
Undocumented in source.
RGB16UI
enum uint RGB16UI;
Undocumented in source.
RGB32F
enum uint RGB32F;
Undocumented in source.
RGB32I
enum uint RGB32I;
Undocumented in source.
RGB32UI
enum uint RGB32UI;
Undocumented in source.
RGB565
enum uint RGB565;
Undocumented in source.
RGB5_A1
enum uint RGB5_A1;
Undocumented in source.
RGB8
enum uint RGB8;
Undocumented in source.
RGB8I
enum uint RGB8I;
Undocumented in source.
RGB8UI
enum uint RGB8UI;
Undocumented in source.
RGB8_SNORM
enum uint RGB8_SNORM;
Undocumented in source.
RGB9_E5
enum uint RGB9_E5;
Undocumented in source.
RGBA
enum uint RGBA;
Undocumented in source.
RGBA16F
enum uint RGBA16F;
Undocumented in source.
RGBA16I
enum uint RGBA16I;
Undocumented in source.
RGBA16UI
enum uint RGBA16UI;
Undocumented in source.
RGBA32F
enum uint RGBA32F;
Undocumented in source.
RGBA32I
enum uint RGBA32I;
Undocumented in source.
RGBA32UI
enum uint RGBA32UI;
Undocumented in source.
RGBA4
enum uint RGBA4;
Undocumented in source.
RGBA8
enum uint RGBA8;
Undocumented in source.
RGBA8I
enum uint RGBA8I;
Undocumented in source.
RGBA8UI
enum uint RGBA8UI;
Undocumented in source.
RGBA8_SNORM
enum uint RGBA8_SNORM;
Undocumented in source.
RGBA_INTEGER
enum uint RGBA_INTEGER;
Undocumented in source.
RGB_INTEGER
enum uint RGB_INTEGER;
Undocumented in source.
RG_INTEGER
enum uint RG_INTEGER;
Undocumented in source.
SAMPLER_2D
enum uint SAMPLER_2D;
Undocumented in source.
SAMPLER_2D_ARRAY
enum uint SAMPLER_2D_ARRAY;
Undocumented in source.
SAMPLER_2D_ARRAY_SHADOW
enum uint SAMPLER_2D_ARRAY_SHADOW;
Undocumented in source.
SAMPLER_2D_SHADOW
enum uint SAMPLER_2D_SHADOW;
Undocumented in source.
SAMPLER_3D
enum uint SAMPLER_3D;
Undocumented in source.
SAMPLER_BINDING
enum uint SAMPLER_BINDING;
Undocumented in source.
SAMPLER_CUBE
enum uint SAMPLER_CUBE;
Undocumented in source.
SAMPLER_CUBE_SHADOW
enum uint SAMPLER_CUBE_SHADOW;
Undocumented in source.
SAMPLES
enum uint SAMPLES;
Undocumented in source.
SAMPLE_ALPHA_TO_COVERAGE
enum uint SAMPLE_ALPHA_TO_COVERAGE;
Undocumented in source.
SAMPLE_BUFFERS
enum uint SAMPLE_BUFFERS;
Undocumented in source.
SAMPLE_COVERAGE
enum uint SAMPLE_COVERAGE;
Undocumented in source.
SAMPLE_COVERAGE_INVERT
enum uint SAMPLE_COVERAGE_INVERT;
Undocumented in source.
SAMPLE_COVERAGE_VALUE
enum uint SAMPLE_COVERAGE_VALUE;
Undocumented in source.
SCISSOR_BOX
enum uint SCISSOR_BOX;
Undocumented in source.
SCISSOR_TEST
enum uint SCISSOR_TEST;
Undocumented in source.
SEPARATE_ATTRIBS
enum uint SEPARATE_ATTRIBS;
Undocumented in source.
SHADER_TYPE
enum uint SHADER_TYPE;
Undocumented in source.
SHADING_LANGUAGE_VERSION
enum uint SHADING_LANGUAGE_VERSION;
Undocumented in source.
SHORT
enum uint SHORT;
Undocumented in source.
SIGNALED
enum uint SIGNALED;
Undocumented in source.
SIGNED_NORMALIZED
enum uint SIGNED_NORMALIZED;
Undocumented in source.
SRC_ALPHA
enum uint SRC_ALPHA;
Undocumented in source.
SRC_ALPHA_SATURATE
enum uint SRC_ALPHA_SATURATE;
Undocumented in source.
SRC_COLOR
enum uint SRC_COLOR;
Undocumented in source.
SRGB
enum uint SRGB;
Undocumented in source.
SRGB8
enum uint SRGB8;
Undocumented in source.
SRGB8_ALPHA8
enum uint SRGB8_ALPHA8;
Undocumented in source.
STATIC_COPY
enum uint STATIC_COPY;
Undocumented in source.
STATIC_DRAW
enum uint STATIC_DRAW;
Undocumented in source.
STATIC_READ
enum uint STATIC_READ;
Undocumented in source.
STENCIL
enum uint STENCIL;
Undocumented in source.
STENCIL_ATTACHMENT
enum uint STENCIL_ATTACHMENT;
Undocumented in source.
STENCIL_BACK_FAIL
enum uint STENCIL_BACK_FAIL;
Undocumented in source.
STENCIL_BACK_FUNC
enum uint STENCIL_BACK_FUNC;
Undocumented in source.
STENCIL_BACK_PASS_DEPTH_FAIL
enum uint STENCIL_BACK_PASS_DEPTH_FAIL;
Undocumented in source.
STENCIL_BACK_PASS_DEPTH_PASS
enum uint STENCIL_BACK_PASS_DEPTH_PASS;
Undocumented in source.
STENCIL_BACK_REF
enum uint STENCIL_BACK_REF;
Undocumented in source.
STENCIL_BACK_VALUE_MASK
enum uint STENCIL_BACK_VALUE_MASK;
Undocumented in source.
STENCIL_BACK_WRITEMASK
enum uint STENCIL_BACK_WRITEMASK;
Undocumented in source.
STENCIL_BITS
enum uint STENCIL_BITS;
Undocumented in source.
STENCIL_BUFFER_BIT
enum uint STENCIL_BUFFER_BIT;
Undocumented in source.
STENCIL_CLEAR_VALUE
enum uint STENCIL_CLEAR_VALUE;
Undocumented in source.
STENCIL_FAIL
enum uint STENCIL_FAIL;
Undocumented in source.
STENCIL_FUNC
enum uint STENCIL_FUNC;
Undocumented in source.
STENCIL_INDEX8
enum uint STENCIL_INDEX8;
Undocumented in source.
STENCIL_PASS_DEPTH_FAIL
enum uint STENCIL_PASS_DEPTH_FAIL;
Undocumented in source.
STENCIL_PASS_DEPTH_PASS
enum uint STENCIL_PASS_DEPTH_PASS;
Undocumented in source.
STENCIL_REF
enum uint STENCIL_REF;
Undocumented in source.
STENCIL_TEST
enum uint STENCIL_TEST;
Undocumented in source.
STENCIL_VALUE_MASK
enum uint STENCIL_VALUE_MASK;
Undocumented in source.
STENCIL_WRITEMASK
enum uint STENCIL_WRITEMASK;
Undocumented in source.
STREAM_COPY
enum uint STREAM_COPY;
Undocumented in source.
STREAM_DRAW
enum uint STREAM_DRAW;
Undocumented in source.
STREAM_READ
enum uint STREAM_READ;
Undocumented in source.
SUBPIXEL_BITS
enum uint SUBPIXEL_BITS;
Undocumented in source.
SYNC_CONDITION
enum uint SYNC_CONDITION;
Undocumented in source.
SYNC_FENCE
enum uint SYNC_FENCE;
Undocumented in source.
SYNC_FLAGS
enum uint SYNC_FLAGS;
Undocumented in source.
SYNC_FLUSH_COMMANDS_BIT
enum uint SYNC_FLUSH_COMMANDS_BIT;
Undocumented in source.
SYNC_GPU_COMMANDS_COMPLETE
enum uint SYNC_GPU_COMMANDS_COMPLETE;
Undocumented in source.
SYNC_STATUS
enum uint SYNC_STATUS;
Undocumented in source.
TEXTURE
enum uint TEXTURE;
Undocumented in source.
TEXTURE0
enum uint TEXTURE0;
Undocumented in source.
TEXTURE1
enum uint TEXTURE1;
Undocumented in source.
TEXTURE10
enum uint TEXTURE10;
Undocumented in source.
TEXTURE11
enum uint TEXTURE11;
Undocumented in source.
TEXTURE12
enum uint TEXTURE12;
Undocumented in source.
TEXTURE13
enum uint TEXTURE13;
Undocumented in source.
TEXTURE14
enum uint TEXTURE14;
Undocumented in source.
TEXTURE15
enum uint TEXTURE15;
Undocumented in source.
TEXTURE16
enum uint TEXTURE16;
Undocumented in source.
TEXTURE17
enum uint TEXTURE17;
Undocumented in source.
TEXTURE18
enum uint TEXTURE18;
Undocumented in source.
TEXTURE19
enum uint TEXTURE19;
Undocumented in source.
TEXTURE2
enum uint TEXTURE2;
Undocumented in source.
TEXTURE20
enum uint TEXTURE20;
Undocumented in source.
TEXTURE21
enum uint TEXTURE21;
Undocumented in source.
TEXTURE22
enum uint TEXTURE22;
Undocumented in source.
TEXTURE23
enum uint TEXTURE23;
Undocumented in source.
TEXTURE24
enum uint TEXTURE24;
Undocumented in source.
TEXTURE25
enum uint TEXTURE25;
Undocumented in source.
TEXTURE26
enum uint TEXTURE26;
Undocumented in source.
TEXTURE27
enum uint TEXTURE27;
Undocumented in source.
TEXTURE28
enum uint TEXTURE28;
Undocumented in source.
TEXTURE29
enum uint TEXTURE29;
Undocumented in source.
TEXTURE3
enum uint TEXTURE3;
Undocumented in source.
TEXTURE30
enum uint TEXTURE30;
Undocumented in source.
TEXTURE31
enum uint TEXTURE31;
Undocumented in source.
TEXTURE4
enum uint TEXTURE4;
Undocumented in source.
TEXTURE5
enum uint TEXTURE5;
Undocumented in source.
TEXTURE6
enum uint TEXTURE6;
Undocumented in source.
TEXTURE7
enum uint TEXTURE7;
Undocumented in source.
TEXTURE8
enum uint TEXTURE8;
Undocumented in source.
TEXTURE9
enum uint TEXTURE9;
Undocumented in source.
TEXTURE_2D
enum uint TEXTURE_2D;
Undocumented in source.
TEXTURE_2D_ARRAY
enum uint TEXTURE_2D_ARRAY;
Undocumented in source.
TEXTURE_3D
enum uint TEXTURE_3D;
Undocumented in source.
TEXTURE_BASE_LEVEL
enum uint TEXTURE_BASE_LEVEL;
Undocumented in source.
TEXTURE_BINDING_2D
enum uint TEXTURE_BINDING_2D;
Undocumented in source.
TEXTURE_BINDING_2D_ARRAY
enum uint TEXTURE_BINDING_2D_ARRAY;
Undocumented in source.
TEXTURE_BINDING_3D
enum uint TEXTURE_BINDING_3D;
Undocumented in source.
TEXTURE_BINDING_CUBE_MAP
enum uint TEXTURE_BINDING_CUBE_MAP;
Undocumented in source.
TEXTURE_COMPARE_FUNC
enum uint TEXTURE_COMPARE_FUNC;
Undocumented in source.
TEXTURE_COMPARE_MODE
enum uint TEXTURE_COMPARE_MODE;
Undocumented in source.
TEXTURE_CUBE_MAP
enum uint TEXTURE_CUBE_MAP;
Undocumented in source.
TEXTURE_CUBE_MAP_NEGATIVE_X
enum uint TEXTURE_CUBE_MAP_NEGATIVE_X;
Undocumented in source.
TEXTURE_CUBE_MAP_NEGATIVE_Y
enum uint TEXTURE_CUBE_MAP_NEGATIVE_Y;
Undocumented in source.
TEXTURE_CUBE_MAP_NEGATIVE_Z
enum uint TEXTURE_CUBE_MAP_NEGATIVE_Z;
Undocumented in source.
TEXTURE_CUBE_MAP_POSITIVE_X
enum uint TEXTURE_CUBE_MAP_POSITIVE_X;
Undocumented in source.
TEXTURE_CUBE_MAP_POSITIVE_Y
enum uint TEXTURE_CUBE_MAP_POSITIVE_Y;
Undocumented in source.
TEXTURE_CUBE_MAP_POSITIVE_Z
enum uint TEXTURE_CUBE_MAP_POSITIVE_Z;
Undocumented in source.
TEXTURE_IMMUTABLE_FORMAT
enum uint TEXTURE_IMMUTABLE_FORMAT;
Undocumented in source.
TEXTURE_IMMUTABLE_LEVELS
enum uint TEXTURE_IMMUTABLE_LEVELS;
Undocumented in source.
TEXTURE_MAG_FILTER
enum uint TEXTURE_MAG_FILTER;
Undocumented in source.
TEXTURE_MAX_LEVEL
enum uint TEXTURE_MAX_LEVEL;
Undocumented in source.
TEXTURE_MAX_LOD
enum uint TEXTURE_MAX_LOD;
Undocumented in source.
TEXTURE_MIN_FILTER
enum uint TEXTURE_MIN_FILTER;
Undocumented in source.
TEXTURE_MIN_LOD
enum uint TEXTURE_MIN_LOD;
Undocumented in source.
TEXTURE_WRAP_R
enum uint TEXTURE_WRAP_R;
Undocumented in source.
TEXTURE_WRAP_S
enum uint TEXTURE_WRAP_S;
Undocumented in source.
TEXTURE_WRAP_T
enum uint TEXTURE_WRAP_T;
Undocumented in source.
TIMEOUT_EXPIRED
enum uint TIMEOUT_EXPIRED;
Undocumented in source.
TIMEOUT_IGNORED
enum int TIMEOUT_IGNORED;
Undocumented in source.
TRANSFORM_FEEDBACK
enum uint TRANSFORM_FEEDBACK;
Undocumented in source.
TRANSFORM_FEEDBACK_ACTIVE
enum uint TRANSFORM_FEEDBACK_ACTIVE;
Undocumented in source.
TRANSFORM_FEEDBACK_BINDING
enum uint TRANSFORM_FEEDBACK_BINDING;
Undocumented in source.
TRANSFORM_FEEDBACK_BUFFER
enum uint TRANSFORM_FEEDBACK_BUFFER;
Undocumented in source.
TRANSFORM_FEEDBACK_BUFFER_BINDING
enum uint TRANSFORM_FEEDBACK_BUFFER_BINDING;
Undocumented in source.
TRANSFORM_FEEDBACK_BUFFER_MODE
enum uint TRANSFORM_FEEDBACK_BUFFER_MODE;
Undocumented in source.
TRANSFORM_FEEDBACK_BUFFER_SIZE
enum uint TRANSFORM_FEEDBACK_BUFFER_SIZE;
Undocumented in source.
TRANSFORM_FEEDBACK_BUFFER_START
enum uint TRANSFORM_FEEDBACK_BUFFER_START;
Undocumented in source.
TRANSFORM_FEEDBACK_PAUSED
enum uint TRANSFORM_FEEDBACK_PAUSED;
Undocumented in source.
TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN
enum uint TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN;
Undocumented in source.
TRANSFORM_FEEDBACK_VARYINGS
enum uint TRANSFORM_FEEDBACK_VARYINGS;
Undocumented in source.
TRIANGLES
enum uint TRIANGLES;
Undocumented in source.
TRIANGLE_FAN
enum uint TRIANGLE_FAN;
Undocumented in source.
TRIANGLE_STRIP
enum uint TRIANGLE_STRIP;
Undocumented in source.
UNIFORM_ARRAY_STRIDE
enum uint UNIFORM_ARRAY_STRIDE;
Undocumented in source.
UNIFORM_BLOCK_ACTIVE_UNIFORMS
enum uint UNIFORM_BLOCK_ACTIVE_UNIFORMS;
Undocumented in source.
UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES
enum uint UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES;
Undocumented in source.
UNIFORM_BLOCK_BINDING
enum uint UNIFORM_BLOCK_BINDING;
Undocumented in source.
UNIFORM_BLOCK_DATA_SIZE
enum uint UNIFORM_BLOCK_DATA_SIZE;
Undocumented in source.
UNIFORM_BLOCK_INDEX
enum uint UNIFORM_BLOCK_INDEX;
Undocumented in source.
UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER
enum uint UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER;
Undocumented in source.
UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER
enum uint UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER;
Undocumented in source.
UNIFORM_BUFFER
enum uint UNIFORM_BUFFER;
Undocumented in source.
UNIFORM_BUFFER_BINDING
enum uint UNIFORM_BUFFER_BINDING;
Undocumented in source.
UNIFORM_BUFFER_OFFSET_ALIGNMENT
enum uint UNIFORM_BUFFER_OFFSET_ALIGNMENT;
Undocumented in source.
UNIFORM_BUFFER_SIZE
enum uint UNIFORM_BUFFER_SIZE;
Undocumented in source.
UNIFORM_BUFFER_START
enum uint UNIFORM_BUFFER_START;
Undocumented in source.
UNIFORM_IS_ROW_MAJOR
enum uint UNIFORM_IS_ROW_MAJOR;
Undocumented in source.
UNIFORM_MATRIX_STRIDE
enum uint UNIFORM_MATRIX_STRIDE;
Undocumented in source.
UNIFORM_OFFSET
enum uint UNIFORM_OFFSET;
Undocumented in source.
UNIFORM_SIZE
enum uint UNIFORM_SIZE;
Undocumented in source.
UNIFORM_TYPE
enum uint UNIFORM_TYPE;
Undocumented in source.
UNPACK_ALIGNMENT
enum uint UNPACK_ALIGNMENT;
Undocumented in source.
UNPACK_COLORSPACE_CONVERSION_WEBGL
enum uint UNPACK_COLORSPACE_CONVERSION_WEBGL;
Undocumented in source.
UNPACK_FLIP_Y_WEBGL
enum uint UNPACK_FLIP_Y_WEBGL;
Undocumented in source.
UNPACK_IMAGE_HEIGHT
enum uint UNPACK_IMAGE_HEIGHT;
Undocumented in source.
UNPACK_PREMULTIPLY_ALPHA_WEBGL
enum uint UNPACK_PREMULTIPLY_ALPHA_WEBGL;
Undocumented in source.
UNPACK_ROW_LENGTH
enum uint UNPACK_ROW_LENGTH;
Undocumented in source.
UNPACK_SKIP_IMAGES
enum uint UNPACK_SKIP_IMAGES;
Undocumented in source.
UNPACK_SKIP_PIXELS
enum uint UNPACK_SKIP_PIXELS;
Undocumented in source.
UNPACK_SKIP_ROWS
enum uint UNPACK_SKIP_ROWS;
Undocumented in source.
UNSIGNALED
enum uint UNSIGNALED;
Undocumented in source.
UNSIGNED_BYTE
enum uint UNSIGNED_BYTE;
Undocumented in source.
UNSIGNED_INT
enum uint UNSIGNED_INT;
Undocumented in source.
UNSIGNED_INT_10F_11F_11F_REV
enum uint UNSIGNED_INT_10F_11F_11F_REV;
Undocumented in source.
UNSIGNED_INT_24_8
enum uint UNSIGNED_INT_24_8;
Undocumented in source.
UNSIGNED_INT_2_10_10_10_REV
enum uint UNSIGNED_INT_2_10_10_10_REV;
Undocumented in source.
UNSIGNED_INT_5_9_9_9_REV
enum uint UNSIGNED_INT_5_9_9_9_REV;
Undocumented in source.
UNSIGNED_INT_SAMPLER_2D
enum uint UNSIGNED_INT_SAMPLER_2D;
Undocumented in source.
UNSIGNED_INT_SAMPLER_2D_ARRAY
enum uint UNSIGNED_INT_SAMPLER_2D_ARRAY;
Undocumented in source.
UNSIGNED_INT_SAMPLER_3D
enum uint UNSIGNED_INT_SAMPLER_3D;
Undocumented in source.
UNSIGNED_INT_SAMPLER_CUBE
enum uint UNSIGNED_INT_SAMPLER_CUBE;
Undocumented in source.
UNSIGNED_INT_VEC2
enum uint UNSIGNED_INT_VEC2;
Undocumented in source.
UNSIGNED_INT_VEC3
enum uint UNSIGNED_INT_VEC3;
Undocumented in source.
UNSIGNED_INT_VEC4
enum uint UNSIGNED_INT_VEC4;
Undocumented in source.
UNSIGNED_NORMALIZED
enum uint UNSIGNED_NORMALIZED;
Undocumented in source.
UNSIGNED_SHORT
enum uint UNSIGNED_SHORT;
Undocumented in source.
UNSIGNED_SHORT_4_4_4_4
enum uint UNSIGNED_SHORT_4_4_4_4;
Undocumented in source.
UNSIGNED_SHORT_5_5_5_1
enum uint UNSIGNED_SHORT_5_5_5_1;
Undocumented in source.
UNSIGNED_SHORT_5_6_5
enum uint UNSIGNED_SHORT_5_6_5;
Undocumented in source.
VALIDATE_STATUS
enum uint VALIDATE_STATUS;
Undocumented in source.
VENDOR
enum uint VENDOR;
Undocumented in source.
VERSION
enum uint VERSION;
Undocumented in source.
VERTEX_ARRAY_BINDING
enum uint VERTEX_ARRAY_BINDING;
Undocumented in source.
VERTEX_ATTRIB_ARRAY_BUFFER_BINDING
enum uint VERTEX_ATTRIB_ARRAY_BUFFER_BINDING;
Undocumented in source.
VERTEX_ATTRIB_ARRAY_DIVISOR
enum uint VERTEX_ATTRIB_ARRAY_DIVISOR;
Undocumented in source.
VERTEX_ATTRIB_ARRAY_ENABLED
enum uint VERTEX_ATTRIB_ARRAY_ENABLED;
Undocumented in source.
VERTEX_ATTRIB_ARRAY_INTEGER
enum uint VERTEX_ATTRIB_ARRAY_INTEGER;
Undocumented in source.
VERTEX_ATTRIB_ARRAY_NORMALIZED
enum uint VERTEX_ATTRIB_ARRAY_NORMALIZED;
Undocumented in source.
VERTEX_ATTRIB_ARRAY_POINTER
enum uint VERTEX_ATTRIB_ARRAY_POINTER;
Undocumented in source.
VERTEX_ATTRIB_ARRAY_SIZE
enum uint VERTEX_ATTRIB_ARRAY_SIZE;
Undocumented in source.
VERTEX_ATTRIB_ARRAY_STRIDE
enum uint VERTEX_ATTRIB_ARRAY_STRIDE;
Undocumented in source.
VERTEX_ATTRIB_ARRAY_TYPE
enum uint VERTEX_ATTRIB_ARRAY_TYPE;
Undocumented in source.
VERTEX_SHADER
enum uint VERTEX_SHADER;
Undocumented in source.
VIEWPORT
enum uint VIEWPORT;
Undocumented in source.
WAIT_FAILED
enum uint WAIT_FAILED;
Undocumented in source.
ZERO
enum uint ZERO;
Undocumented in source.
handle
JsHandle handle;
Undocumented in source.

Meta