86ebf80061a7a273ada71e6425935872d5b6c9d1
[platform/upstream/mesa.git] / src / gallium / frontends / dri / dri_drawable.h
1 /**************************************************************************
2  *
3  * Copyright 2009, VMware, Inc.
4  * 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
8  * "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sub license, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice (including the
15  * next paragraph) shall be included in all copies or substantial portions
16  * of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21  * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25  *
26  **************************************************************************/
27
28 #ifndef DRI_DRAWABLE_H
29 #define DRI_DRAWABLE_H
30
31 #include "pipe/p_compiler.h"
32 #include "util/format/u_formats.h"
33 #include "frontend/api.h"
34 #include "dri_util.h"
35
36 struct pipe_surface;
37 struct st_framebuffer;
38 struct dri_context;
39
40 struct dri_drawable
41 {
42    struct st_framebuffer_iface base;
43    struct st_visual stvis;
44
45    struct dri_screen *screen;
46
47    __DRIbuffer old[__DRI_BUFFER_COUNT];
48    unsigned old_num;
49    unsigned old_w;
50    unsigned old_h;
51
52    struct pipe_box *damage_rects;
53    unsigned int num_damage_rects;
54
55    struct pipe_resource *textures[ST_ATTACHMENT_COUNT];
56    struct pipe_resource *msaa_textures[ST_ATTACHMENT_COUNT];
57    unsigned int texture_mask, texture_stamp;
58    int swap_interval;
59
60    struct pipe_fence_handle *throttle_fence;
61    bool flushing; /* prevents recursion in dri_flush */
62
63    /**
64     * Private data from the loader.  We just hold on to it and pass
65     * it back when calling into loader provided functions.
66     */
67    void *loaderPrivate;
68
69    /**
70     * Reference count for number of context's currently bound to this
71     * drawable.
72     *
73     * Once it reaches zero, the drawable can be destroyed.
74     *
75     * \note This behavior will change with GLX 1.3.
76     */
77    int refcount;
78
79    /**
80     * Increased when the loader calls invalidate.
81     *
82     * If this changes, the drawable information (below) should be retrieved
83     * from the loader.
84     */
85    unsigned int lastStamp;
86    int w, h;
87
88    /* kopper */
89    struct kopper_loader_info info;
90    __DRIimage   *image; //texture_from_pixmap
91    bool is_window;
92
93    /* hooks filled in by dri2 & drisw */
94    void (*allocate_textures)(struct dri_context *ctx,
95                              struct dri_drawable *drawable,
96                              const enum st_attachment_type *statts,
97                              unsigned count);
98
99    void (*update_drawable_info)(struct dri_drawable *drawable);
100
101    bool (*flush_frontbuffer)(struct dri_context *ctx,
102                              struct dri_drawable *drawable,
103                              enum st_attachment_type statt);
104
105    void (*update_tex_buffer)(struct dri_drawable *drawable,
106                              struct dri_context *ctx,
107                              struct pipe_resource *res);
108    void (*flush_swapbuffers)(struct dri_context *ctx,
109                              struct dri_drawable *drawable);
110
111    void (*swap_buffers)(struct dri_drawable *drawable);
112 };
113
114 /* Typecast the opaque pointer to our own type. */
115 static inline struct dri_drawable *
116 dri_drawable(__DRIdrawable *drawable)
117 {
118    return (struct dri_drawable *)drawable;
119 }
120
121 /* Typecast our own type to the opaque pointer. */
122 static inline __DRIdrawable *
123 opaque_dri_drawable(struct dri_drawable *drawable)
124 {
125    return (__DRIdrawable *)drawable;
126 }
127
128 static inline void
129 dri_get_drawable(struct dri_drawable *drawable)
130 {
131     drawable->refcount++;
132 }
133
134 /***********************************************************************
135  * dri_drawable.c
136  */
137 struct dri_drawable *
138 dri_create_drawable(struct dri_screen *screen, const struct gl_config *visual,
139                     bool isPixmap, void *loaderPrivate);
140
141 void
142 dri_put_drawable(struct dri_drawable *drawable);
143
144 void
145 dri_drawable_get_format(struct dri_drawable *drawable,
146                         enum st_attachment_type statt,
147                         enum pipe_format *format,
148                         unsigned *bind);
149
150 void
151 dri_pipe_blit(struct pipe_context *pipe,
152               struct pipe_resource *dst,
153               struct pipe_resource *src);
154
155 void
156 dri_flush(__DRIcontext *cPriv,
157           __DRIdrawable *dPriv,
158           unsigned flags,
159           enum __DRI2throttleReason reason);
160
161 void
162 dri_flush_drawable(__DRIdrawable *dPriv);
163
164 extern const __DRItexBufferExtension driTexBufferExtension;
165 extern const __DRI2throttleExtension dri2ThrottleExtension;
166 #endif
167
168 /* vim: set sw=3 ts=8 sts=3 expandtab: */