blendEquationSeparate method

void blendEquationSeparate(
  1. int modeRGB,
  2. int modeAlpha
)

Implementation

void blendEquationSeparate(int modeRGB, int modeAlpha){
  startCheck("blendEquationSeparate");
  glBlendEquationSeparate(_gl, modeRGB, modeAlpha);
  checkError('blendEquationSeparate');
}