Replace drmHandle, drmContext, drmDrawable, drmMagic and related types with
[mesa.git] / src / mesa / drivers / dri / mach64 / mach64_screen.h
1 /* $XFree86$ */ /* -*- mode: c; c-basic-offset: 3 -*- */
2 /*
3 * Copyright 2000 Gareth Hughes
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 "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 (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * GARETH HUGHES BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
21 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 /*
26 * Authors:
27 * Gareth Hughes <gareth@valinux.com>
28 * Leif Delgass <ldelgass@retinalburn.net>
29 * José Fonseca <j_r_fonseca@yahoo.co.uk>
30 */
31
32 #ifndef __MACH64_SCREEN_H__
33 #define __MACH64_SCREEN_H__
34
35 #ifdef GLX_DIRECT_RENDERING
36
37 #include "xmlconfig.h"
38
39 typedef struct {
40 drm_handle_t handle; /* Handle to the DRM region */
41 drmSize size; /* Size of the DRM region */
42 drmAddress *map; /* Mapping of the DRM region */
43 } mach64RegionRec, *mach64RegionPtr;
44
45 typedef struct {
46 int chipset;
47 int width;
48 int height;
49 int mem;
50 int cpp;
51
52 unsigned int frontOffset;
53 unsigned int frontPitch;
54 unsigned int backOffset;
55 unsigned int backPitch;
56
57 unsigned int depthOffset;
58 unsigned int depthPitch;
59
60 int IsPCI;
61 int AGPMode;
62 unsigned int irq; /* IRQ number (0 means none) */
63
64 /* Shared Texture data */
65 int firstTexHeap, numTexHeaps;
66 int texOffset[MACH64_NR_TEX_HEAPS];
67 int texSize[MACH64_NR_TEX_HEAPS];
68 int logTexGranularity[MACH64_NR_TEX_HEAPS];
69
70 mach64RegionRec mmio;
71 mach64RegionRec agpTextures;
72
73 drmBufMapPtr buffers;
74
75 __DRIscreenPrivate *driScreen;
76
77 driOptionCache optionCache;
78 } mach64ScreenRec, *mach64ScreenPtr;
79
80 #endif
81 #endif /* __MACH64_SCREEN_H__ */