From: brian Date: Tue, 10 Nov 2009 22:33:31 +0000 (-0700) Subject: mesa: added comment for check_begin_texture_render() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a492ab765a9e36c5f224f0d58e172ca6ecf25a1c;p=mesa.git mesa: added comment for check_begin_texture_render() --- diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index c4454550dbc..2641123857a 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -1149,6 +1149,11 @@ _mesa_IsFramebufferEXT(GLuint framebuffer) } +/** + * Check if any of the attachments of the given framebuffer are textures + * (render to texture). Call ctx->Driver.RenderTexture() for such + * attachments. + */ static void check_begin_texture_render(GLcontext *ctx, struct gl_framebuffer *fb) {