glDispatchCompute method

void glDispatchCompute(
  1. int num_groups_x,
  2. int num_groups_y,
  3. int num_groups_z
)

Implementation

void glDispatchCompute(
  int num_groups_x,
  int num_groups_y,
  int num_groups_z,
) {
  return (_glDispatchCompute ??=
      _dylib.lookupFunction<_c_glDispatchCompute, _dart_glDispatchCompute>(
          'glDispatchCompute'))(
    num_groups_x,
    num_groups_y,
    num_groups_z,
  );
}