glDispatchComputeGroupSizeArb function opengl_glext
void
glDispatchComputeGroupSizeArb()
GLAPI void APIENTRY glDispatchComputeGroupSizeARB (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z, GLuint group_size_x, GLuint group_size_y, GLuint group_size_z)
Implementation
void glDispatchComputeGroupSizeArb(
int numGroupsX,
int numGroupsY,
int numGroupsZ,
int groupSizeX,
int groupSizeY,
int groupSizeZ,
) {
final glDispatchComputeGroupSizeArbAsFunction = _glDispatchComputeGroupSizeArb
.cast<
NativeFunction<
Void Function(
Uint32 numGroupsX,
Uint32 numGroupsY,
Uint32 numGroupsZ,
Uint32 groupSizeX,
Uint32 groupSizeY,
Uint32 groupSizeZ,
)
>
>()
.asFunction<
void Function(
int numGroupsX,
int numGroupsY,
int numGroupsZ,
int groupSizeX,
int groupSizeY,
int groupSizeZ,
)
>();
return glDispatchComputeGroupSizeArbAsFunction(
numGroupsX,
numGroupsY,
numGroupsZ,
groupSizeX,
groupSizeY,
groupSizeZ,
);
}