1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
function values = glGetMinmax( target, reset, format, type )
% glGetMinmax Interface to OpenGL function glGetMinmax
%
% usage: values = glGetMinmax( target, reset, format, type )
%
% C function: void glGetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid* values)
% 25-Mar-2011 -- created (generated automatically from header files)
% ---allocate---
if nargin~=4,
error('invalid number of arguments');
end
values = (0);
moglcore( 'glGetMinmax', target, reset, format, type, values );
return
|