~ubuntu-branches/ubuntu/trusty/psychtoolbox-3/trusty-proposed

« back to all changes in this revision

Viewing changes to Psychtoolbox/PsychOpenGL/MOGL/wrap/glProgramUniform4i.m

  • Committer: Package Import Robot
  • Author(s): Yaroslav Halchenko
  • Date: 2013-11-19 23:34:50 UTC
  • mfrom: (3.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20131119233450-f7nf92vb8qavjmk8
Tags: 3.0.11.20131017.dfsg1-3
Upload to unsable since fresh glew has arrived to sid!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
function glProgramUniform4i( program, location, v0, v1, v2, v3 )
 
2
 
 
3
% glProgramUniform4i  Interface to OpenGL function glProgramUniform4i
 
4
%
 
5
% usage:  glProgramUniform4i( program, location, v0, v1, v2, v3 )
 
6
%
 
7
% C function:  void glProgramUniform4i(GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3)
 
8
 
 
9
% 30-Aug-2012 -- created (generated automatically from header files)
 
10
 
 
11
if nargin~=6,
 
12
    error('invalid number of arguments');
 
13
end
 
14
 
 
15
moglcore( 'glProgramUniform4i', program, location, v0, v1, v2, v3 );
 
16
 
 
17
return