1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
function glDrawElements( mode, count, type, indices )
% glDrawElements Interface to OpenGL function glDrawElements
%
% usage: glDrawElements( mode, count, type, indices )
%
% C function: void glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid* indices)
% 05-Mar-2006 -- created (generated automatically from header files)
% ---protected---
if nargin~=4,
error('invalid number of arguments');
end
moglcore( 'glDrawElements', mode, count, type, indices );
return
|