glsl2: Add and use new variable mode ir_var_temporary
[mesa/nouveau-pmpeg.git] / src / gallium / state_trackers / dri / common / dri_drawable.h
blob5fd650ac88ec3d1436065c7050afc06331086809
1 /**************************************************************************
3 * Copyright 2009, VMware, Inc.
4 * All Rights Reserved.
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:
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.
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.
26 **************************************************************************/
28 #ifndef DRI_DRAWABLE_H
29 #define DRI_DRAWABLE_H
31 #include "pipe/p_compiler.h"
32 #include "pipe/p_format.h"
33 #include "state_tracker/st_api.h"
35 struct pipe_surface;
36 struct pipe_fence_handle;
37 struct st_framebuffer;
38 struct dri_context;
40 #define DRI_SWAP_FENCES_MAX 8
41 #define DRI_SWAP_FENCES_MASK 7
43 struct dri_drawable
45 struct st_framebuffer_iface base;
46 struct st_visual stvis;
48 /* dri */
49 __DRIdrawable *dPriv;
50 __DRIscreen *sPriv;
52 __DRIbuffer old[8];
53 unsigned old_num;
54 unsigned old_w;
55 unsigned old_h;
57 struct pipe_resource *textures[ST_ATTACHMENT_COUNT];
58 unsigned int texture_mask, texture_stamp;
60 struct pipe_fence_handle *swap_fences[DRI_SWAP_FENCES_MAX];
61 unsigned int head;
62 unsigned int tail;
63 unsigned int desired_fences;
64 unsigned int cur_fences;
66 /* used only by DRI1 */
67 struct pipe_surface *dri1_surface;
70 static INLINE struct dri_drawable *
71 dri_drawable(__DRIdrawable * driDrawPriv)
73 return (struct dri_drawable *)driDrawPriv->driverPrivate;
76 /***********************************************************************
77 * dri_drawable.c
79 boolean
80 dri_create_buffer(__DRIscreen * sPriv,
81 __DRIdrawable * dPriv,
82 const __GLcontextModes * visual, boolean isPixmap);
84 void dri_destroy_buffer(__DRIdrawable * dPriv);
86 void
87 dri_drawable_get_format(struct dri_drawable *drawable,
88 enum st_attachment_type statt,
89 enum pipe_format *format,
90 unsigned *bind);
92 void
93 dri_drawable_validate_att(struct dri_drawable *drawable,
94 enum st_attachment_type statt);
96 #endif
98 /* vim: set sw=3 ts=8 sts=3 expandtab: */