1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
function glInvalidateTexSubImage( texture, level, xoffset, yoffset, zoffset, width, height, depth )
% glInvalidateTexSubImage Interface to OpenGL function glInvalidateTexSubImage
%
% usage: glInvalidateTexSubImage( texture, level, xoffset, yoffset, zoffset, width, height, depth )
%
% C function: void glInvalidateTexSubImage(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth)
% 30-Aug-2012 -- created (generated automatically from header files)
if nargin~=8,
error('invalid number of arguments');
end
moglcore( 'glInvalidateTexSubImage', texture, level, xoffset, yoffset, zoffset, width, height, depth );
return
|