Home | History | Annotate | Download | only in functional

Lines Matching refs:tf

72 	void					draw			(GLuint vao, GLfloat scale, bool tf, Surface* dst);
126 void ScaleProgram::draw (GLuint vao, GLfloat scale, bool tf, Surface* dst)
143 if (tf)
146 if (tf)
313 void attach (GLuint buffer, GLuint tf);
314 void detach (GLuint buffer, GLuint tf);
316 GLuint getAttachment (GLuint tf);
326 void BufferTfAttacher::attach (GLuint buffer, GLuint tf)
328 glBindTransformFeedback(GL_TRANSFORM_FEEDBACK, tf);
334 void BufferTfAttacher::detach (GLuint buffer, GLuint tf)
337 glBindTransformFeedback(GL_TRANSFORM_FEEDBACK, tf);
343 GLuint BufferTfAttacher::getAttachment (GLuint tf)
346 gl().bindTransformFeedback(GL_TRANSFORM_FEEDBACK, tf);
378 void BufferTfOutputAttacher::setupContainer (GLuint seed, GLuint tf)
386 glBindTransformFeedback(GL_TRANSFORM_FEEDBACK, tf);
389 << "// Drew an image with seed " << seed << " with transform feedback to " << tf
504 GLuint tf = 0;
521 GLU_CHECK_CALL(glGenTransformFeedbacks(1, &tf));
522 GLU_CHECK_CALL(glBindTransformFeedback(GL_TRANSFORM_FEEDBACK, tf));
529 glDeleteTransformFeedbacks(1, &tf);
542 GLU_CHECK_CALL(glDeleteTransformFeedbacks(1, &tf));
546 glDeleteTransformFeedbacks(1, &tf);