OES_draw_buffers_indexed: disableiOES() method

The disableiOES() method of the OES_draw_buffers_indexed WebGL extension enables blending for a particular draw buffer.

Syntax

js
disableiOES(target, index)

Parameters

target

Must be gl.BLEND.

index

An integer i specifying the draw buffer associated with the constant gl.DRAW_BUFFERi, see WebGL draw buffer constants.

Return value

None (undefined).

Exceptions

Examples

undefined

Disabling blending for draw buffers

The following two calls disable blending for the draw buffers gl.DRAW_BUFFER0 and gl.DRAW_BUFFER1.

js
const ext = gl.getExtension("OES_draw_buffers_indexed");

ext.disableiOES(gl.BLEND, 0);
ext.disableiOES(gl.BLEND, 1);

Specifications

See also