diff options
author | Brian Paul <[email protected]> | 2010-03-10 10:53:21 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-03-10 10:53:21 -0700 |
commit | b318039e9a790d9d90bd524c79af2d9a444d0093 (patch) | |
tree | 391de8bd857b7b46fc9581aabca1950b8f476e62 /src/mesa/main/framebuffer.c | |
parent | 06c44e852f4b38db03772adec769854b2f3096f6 (diff) |
mesa: added new function comments
Diffstat (limited to 'src/mesa/main/framebuffer.c')
-rw-r--r-- | src/mesa/main/framebuffer.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/main/framebuffer.c b/src/mesa/main/framebuffer.c index 6a85162d5da..5a654e5c2a3 100644 --- a/src/mesa/main/framebuffer.c +++ b/src/mesa/main/framebuffer.c @@ -986,6 +986,10 @@ _mesa_dest_buffer_exists(GLcontext *ctx, GLenum format) return GL_TRUE; } + +/** + * Used to answer the GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES query. + */ GLenum _mesa_get_color_read_format(GLcontext *ctx) { @@ -999,6 +1003,10 @@ _mesa_get_color_read_format(GLcontext *ctx) } } + +/** + * Used to answer the GL_IMPLEMENTATION_COLOR_READ_TYPE_OES query. + */ GLenum _mesa_get_color_read_type(GLcontext *ctx) { |