1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
function glDispatchCompute( num_groups_x, num_groups_y, num_groups_z )
% glDispatchCompute Interface to OpenGL function glDispatchCompute
%
% usage: glDispatchCompute( num_groups_x, num_groups_y, num_groups_z )
%
% C function: void glDispatchCompute(GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z)
% 30-Aug-2012 -- created (generated automatically from header files)
if nargin~=3,
error('invalid number of arguments');
end
moglcore( 'glDispatchCompute', num_groups_x, num_groups_y, num_groups_z );
return
|