framebuffer.h revision af69d88d
1/*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2006  Brian Paul   All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26#ifndef FRAMEBUFFER_H
27#define FRAMEBUFFER_H
28
29#include "glheader.h"
30
31struct gl_config;
32struct gl_context;
33struct gl_renderbuffer;
34
35extern struct gl_framebuffer *
36_mesa_create_framebuffer(const struct gl_config *visual);
37
38extern struct gl_framebuffer *
39_mesa_new_framebuffer(struct gl_context *ctx, GLuint name);
40
41extern void
42_mesa_initialize_window_framebuffer(struct gl_framebuffer *fb,
43				     const struct gl_config *visual);
44
45extern void
46_mesa_initialize_user_framebuffer(struct gl_framebuffer *fb, GLuint name);
47
48extern void
49_mesa_destroy_framebuffer(struct gl_framebuffer *buffer);
50
51extern void
52_mesa_free_framebuffer_data(struct gl_framebuffer *buffer);
53
54extern void
55_mesa_reference_framebuffer_(struct gl_framebuffer **ptr,
56                             struct gl_framebuffer *fb);
57
58static inline void
59_mesa_reference_framebuffer(struct gl_framebuffer **ptr,
60                            struct gl_framebuffer *fb)
61{
62   if (*ptr != fb)
63      _mesa_reference_framebuffer_(ptr, fb);
64}
65
66extern void
67_mesa_resize_framebuffer(struct gl_context *ctx, struct gl_framebuffer *fb,
68                         GLuint width, GLuint height);
69
70
71extern void
72_mesa_resizebuffers( struct gl_context *ctx );
73
74extern void
75_mesa_scissor_bounding_box(const struct gl_context *ctx,
76                           const struct gl_framebuffer *buffer,
77                           unsigned idx, int *bbox);
78
79extern void
80_mesa_update_draw_buffer_bounds(struct gl_context *ctx);
81
82extern void
83_mesa_update_framebuffer_visual(struct gl_context *ctx,
84				struct gl_framebuffer *fb);
85
86extern void
87_mesa_update_framebuffer(struct gl_context *ctx);
88
89extern GLboolean
90_mesa_source_buffer_exists(struct gl_context *ctx, GLenum format);
91
92extern GLboolean
93_mesa_dest_buffer_exists(struct gl_context *ctx, GLenum format);
94
95extern GLenum
96_mesa_get_color_read_type(struct gl_context *ctx);
97
98extern GLenum
99_mesa_get_color_read_format(struct gl_context *ctx);
100
101extern struct gl_renderbuffer *
102_mesa_get_read_renderbuffer_for_format(const struct gl_context *ctx,
103                                       GLenum format);
104
105extern void
106_mesa_print_framebuffer(const struct gl_framebuffer *fb);
107
108#endif /* FRAMEBUFFER_H */
109