web api instance method
OES_draw_buffers_indexed: enableiOES() method
The enableiOES() method of the OES_draw_buffers_indexed WebGL extension enables blending for a particular draw buffer.
Syntax
enableiOES(target, index)
Parameters
target- : Must be
gl.BLEND.
- : Must be
index- : An integer
ispecifying the draw buffer associated with the constantgl.DRAW_BUFFERi, see WebGL draw buffer constants.
- : An integer
Return value
None (undefined).
Exceptions
- If
targetis notgl.BLEND, agl.INVALID_ENUMerror is thrown. - If
indexis not a valid value, agl.INVALID_VALUEerror is thrown.
Examples
Enabling blending for draw buffers
The following two calls enable blending for the draw buffers gl.DRAW_BUFFER0 and gl.DRAW_BUFFER1.
const ext = gl.getExtension("OES_draw_buffers_indexed");
ext.enableiOES(gl.BLEND, 0);
ext.enableiOES(gl.BLEND, 1);
You can use getParameter() to see how many draw buffers are available.
const maxDrawBuffers = gl.getParameter(gl.MAX_DRAW_BUFFERS);
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.