void
glShadingRateCombinerOpsExt(
- int combinerOp0,
- int combinerOp1
)
GLAPI void APIENTRY glShadingRateCombinerOpsEXT (GLenum combinerOp0, GLenum combinerOp1)
Implementation
void glShadingRateCombinerOpsExt(int combinerOp0, int combinerOp1) {
final glShadingRateCombinerOpsExtAsFunction = _glShadingRateCombinerOpsExt
.cast<
NativeFunction<Void Function(Uint32 combinerOp0, Uint32 combinerOp1)>
>()
.asFunction<void Function(int combinerOp0, int combinerOp1)>();
return glShadingRateCombinerOpsExtAsFunction(combinerOp0, combinerOp1);
}