glColorFragmentOp1Ati function opengl_glext

void glColorFragmentOp1Ati(
  1. int op,
  2. int dst,
  3. int dstMask,
  4. int dstMod,
  5. int arg1,
  6. int arg1Rep,
  7. int arg1Mod,
)
GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod)

Implementation

void glColorFragmentOp1Ati(
  int op,
  int dst,
  int dstMask,
  int dstMod,
  int arg1,
  int arg1Rep,
  int arg1Mod,
) {
  final glColorFragmentOp1AtiAsFunction = _glColorFragmentOp1Ati
      .cast<
        NativeFunction<
          Void Function(
            Uint32 op,
            Uint32 dst,
            Uint32 dstMask,
            Uint32 dstMod,
            Uint32 arg1,
            Uint32 arg1Rep,
            Uint32 arg1Mod,
          )
        >
      >()
      .asFunction<
        void Function(
          int op,
          int dst,
          int dstMask,
          int dstMod,
          int arg1,
          int arg1Rep,
          int arg1Mod,
        )
      >();
  return glColorFragmentOp1AtiAsFunction(
    op,
    dst,
    dstMask,
    dstMod,
    arg1,
    arg1Rep,
    arg1Mod,
  );
}