Add Intel i965G/Q DRI driver.
[mesa.git] / src / mesa / drivers / dri / i965 / intel_screen.h
1 /**************************************************************************
2 *
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
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 TUNGSTEN GRAPHICS 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 _INTEL_INIT_H_
29 #define _INTEL_INIT_H_
30
31 #include <sys/time.h>
32 #include "dri_util.h"
33 #include "xmlconfig.h"
34 #include "i830_common.h"
35
36 /* XXX: change name or eliminate to avoid conflict with "struct
37 * intel_region"!!!
38 */
39 typedef struct {
40 drm_handle_t handle;
41 drmSize size; /* region size in bytes */
42 char *map; /* memory map */
43 int offset; /* from start of video mem, in bytes */
44 int pitch; /* row stride, in pixels */
45 } intelRegion;
46
47 typedef struct
48 {
49 intelRegion front;
50 intelRegion back;
51 intelRegion rotated;
52 intelRegion depth;
53 intelRegion tex;
54
55 int deviceID;
56 int width;
57 int height;
58 int mem; /* unused */
59
60 int cpp; /* for front and back buffers */
61 int fbFormat;
62
63 int logTextureGranularity;
64
65 __DRIscreenPrivate *driScrnPriv;
66 unsigned int sarea_priv_offset;
67
68 int drmMinor;
69
70 int irq_active;
71 int allow_batchbuffer;
72
73 /* struct matrix23 rotMatrix; */
74
75 int current_rotation; /* 0, 90, 180 or 270 */
76 int rotatedWidth, rotatedHeight;
77
78 /**
79 * Configuration cache with default values for all contexts
80 */
81 driOptionCache optionCache;
82 } intelScreenPrivate;
83
84
85 extern GLboolean
86 intelMapScreenRegions(__DRIscreenPrivate *sPriv);
87
88 extern void
89 intelUnmapScreenRegions(intelScreenPrivate *intelScreen);
90
91 extern void
92 intelUpdateScreenFromSAREA(intelScreenPrivate *intelScreen,
93 volatile drmI830Sarea *sarea);
94
95 extern void
96 intelDestroyContext(__DRIcontextPrivate *driContextPriv);
97
98 extern GLboolean
99 intelUnbindContext(__DRIcontextPrivate *driContextPriv);
100
101 extern GLboolean
102 intelMakeCurrent(__DRIcontextPrivate *driContextPriv,
103 __DRIdrawablePrivate *driDrawPriv,
104 __DRIdrawablePrivate *driReadPriv);
105
106 extern void
107 intelSwapBuffers(__DRIdrawablePrivate *dPriv);
108
109 extern void
110 intelCopySubBuffer( __DRIdrawablePrivate *dPriv,
111 int x, int y, int w, int h );
112
113 #endif