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

« back to all changes in this revision

Viewing changes to Psychtoolbox/PsychOpenGL/MOGL/wrap/glVertex4f.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:
8
8
 
9
9
% 25-Mar-2011 -- created (generated automatically from header files)
10
10
 
 
11
% ---protected---
 
12
 
11
13
if nargin~=4,
12
14
    error('invalid number of arguments');
13
15
end
14
16
 
15
 
moglcore( 'glVertex4f', x, y, z, w );
 
17
if ~IsGLES
 
18
    moglcore( 'glVertex4f', x, y, z, w );
 
19
else
 
20
    moglcore( 'ftglVertex4f', x, y, z, w );
 
21
end
16
22
 
17
23
return