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