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
469 GLuint tf = 0;
470 glGenTransformFeedbacks(1, &tf);
471 glBindTransformFeedback(GL_TRANSFORM_FEEDBACK, tf);
473 glDeleteTransformFeedbacks(1, &tf);
484 glDeleteTransformFeedbacks(1, &tf);