Firefox Tomorrow

web api instance method

OES_draw_buffers_indexed: disableiOES() method

View on MDN ↗

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

Syntax

disableiOES(target, index)

Parameters

  • target
    • : Must be gl.BLEND.
  • index

Return value

None (undefined).

Exceptions

  • If target is not gl.BLEND, a gl.INVALID_ENUM error is thrown.
  • If index is not a valid value, a gl.INVALID_VALUE error is thrown.

Examples

Disabling blending for draw buffers

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

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

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

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also