1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
function glCombinerOutputNV( stage, portion, abOutput, cdOutput, sumOutput, scale, bias, abDotProduct, cdDotProduct, muxSum )
% glCombinerOutputNV Interface to OpenGL function glCombinerOutputNV
%
% usage: glCombinerOutputNV( stage, portion, abOutput, cdOutput, sumOutput, scale, bias, abDotProduct, cdDotProduct, muxSum )
%
% C function: void glCombinerOutputNV(GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum)
% 30-Sep-2014 -- created (generated automatically from header files)
if nargin~=10,
error('invalid number of arguments');
end
moglcore( 'glCombinerOutputNV', stage, portion, abOutput, cdOutput, sumOutput, scale, bias, abDotProduct, cdDotProduct, muxSum );
return
|