OSDN Git Service

fd3460dd30b59c5af17a8a89099812d95513c0b9
[android-x86/external-mesa.git] / src / gallium / state_trackers / dri / common / 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 "pipe/p_format.h"
33 #include "state_tracker/st_api.h"
34
35 struct pipe_surface;
36 struct st_framebuffer;
37 struct dri_context;
38
39 struct dri_drawable
40 {
41    struct st_framebuffer_iface base;
42    struct st_visual stvis;
43
44    struct dri_screen *screen;
45
46    /* dri */
47    __DRIdrawable *dPriv;
48    __DRIscreen *sPriv;
49
50    __DRIbuffer old[8];
51    unsigned old_num;
52    unsigned old_w;
53    unsigned old_h;
54
55    struct pipe_resource *textures[ST_ATTACHMENT_COUNT];
56    unsigned int texture_mask, texture_stamp;
57
58    /* used only by DRISW */
59    struct pipe_surface *drisw_surface;
60
61    /* hooks filled in by dri2 & drisw */
62    void (*allocate_textures)(struct dri_drawable *drawable,
63                              const enum st_attachment_type *statts,
64                              unsigned count);
65
66    void (*update_drawable_info)(struct dri_drawable *drawable);
67
68    void (*flush_frontbuffer)(struct dri_drawable *drawable,
69                              enum st_attachment_type statt);
70 };
71
72 static INLINE struct dri_drawable *
73 dri_drawable(__DRIdrawable * driDrawPriv)
74 {
75    return (struct dri_drawable *) (driDrawPriv)
76       ? driDrawPriv->driverPrivate : NULL;
77 }
78
79 /***********************************************************************
80  * dri_drawable.c
81  */
82 boolean
83 dri_create_buffer(__DRIscreen * sPriv,
84                   __DRIdrawable * dPriv,
85                   const struct gl_config * visual, boolean isPixmap);
86
87 void dri_destroy_buffer(__DRIdrawable * dPriv);
88
89 void
90 dri_drawable_get_format(struct dri_drawable *drawable,
91                         enum st_attachment_type statt,
92                         enum pipe_format *format,
93                         unsigned *bind);
94
95 extern const __DRItexBufferExtension driTexBufferExtension;
96
97 #endif
98
99 /* vim: set sw=3 ts=8 sts=3 expandtab: */