blendColor method

void blendColor(
  1. GLclampf red,
  2. GLclampf green,
  3. GLclampf blue,
  4. GLclampf alpha,
)

The WebGLRenderingContext.blendColor() method of the WebGL API is used to set the source and destination blending factors.

Implementation

external void blendColor(
  GLclampf red,
  GLclampf green,
  GLclampf blue,
  GLclampf alpha,
);