Lines Matching defs:attachment
2176 /** Attach texture to specified attachment
2178 * @param attachment Attachment
2183 void Framebuffer::AttachTexture(GLenum attachment, GLuint texture_id, GLuint width, GLuint height)
2187 AttachTexture(gl, attachment, texture_id, width, height);
2225 /** Attach texture to specified attachment
2228 * @param attachment Attachment
2233 void Framebuffer::AttachTexture(const Functions& gl, GLenum attachment, GLuint texture_id, GLuint width, GLuint height)
2235 gl.framebufferTexture(GL_DRAW_FRAMEBUFFER, attachment, texture_id, 0 /* level */);
6936 /** Prepare framebuffer with single texture as color attachment
6939 * @param color_0_texture Texture that will used as color attachment
6968 * @param image_texture Texture that will used as color attachment
19980 /** Prepare framebuffer with single texture as color attachment
19983 * @param color_0_texture Texture that will used as color attachment