File: glTransformFeedbackVaryings.m

package info (click to toggle)
psychtoolbox-3 3.0.19.14.dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 86,796 kB
  • sloc: ansic: 176,245; cpp: 20,103; objc: 5,393; sh: 2,753; python: 1,397; php: 384; makefile: 193; java: 113
file content (38 lines) | stat: -rw-r--r-- 1,047 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
function glTransformFeedbackVaryings( program, count, varyings, bufferMode )

% glTransformFeedbackVaryings  Interface to OpenGL function glTransformFeedbackVaryings
%
% usage:  glTransformFeedbackVaryings( program, count, varyings, bufferMode )
%
% program = GLSL shader program handle.
%
% count = Number of varyings.
%
% varyings = cell array of 'count' char() name strings of the 'count'
% varyings to return during transform feedback.
%
% bufferMode = The bufferMode to use for transform feedback.
%
%
% C function:  void glTransformFeedbackVaryings(GLuint program, GLsizei count, const GLchar** varyings, GLenum bufferMode)

% 30-Sep-2014 -- created manually by MK

% ---protected---

if nargin~=4,
    error('invalid number of arguments');
end

if length(varyings) ~= count
    error('Number of varying name strings does not match count');
end

instring = '';
for i = 1:count
    instring = [instring char(varyings{i}) char(10) ]; %#ok<AGROW>
end

moglcore( 'glTransformFeedbackVaryings', program, count, instring, bufferMode, 0 );

return