glBlendColorxOes function opengl_glext

void glBlendColorxOes(
  1. int red,
  2. int green,
  3. int blue,
  4. int alpha,
)
GLAPI void APIENTRY glBlendColorxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha)

Implementation

void glBlendColorxOes(int red, int green, int blue, int alpha) {
  final glBlendColorxOesAsFunction = _glBlendColorxOes
      .cast<
        NativeFunction<
          Void Function(Int32 red, Int32 green, Int32 blue, Int32 alpha)
        >
      >()
      .asFunction<void Function(int red, int green, int blue, int alpha)>();
  return glBlendColorxOesAsFunction(red, green, blue, alpha);
}