add missing license texts
[mesa.git] / src / mesa / drivers / dri / i915 / intel_ioctl.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_IOCTL_H
29 #define INTEL_IOCTL_H
30
31 #include "intel_context.h"
32
33 extern void intelWaitAgeLocked( intelContextPtr intel, int age, GLboolean unlock );
34
35 extern void intelClear(GLcontext *ctx, GLbitfield mask, GLboolean all,
36 GLint cx, GLint cy, GLint cw, GLint ch);
37
38 extern void intelPageFlip( const __DRIdrawablePrivate *dpriv );
39 extern void intelWaitForIdle( intelContextPtr intel );
40 extern void intelFlushBatch( intelContextPtr intel, GLboolean refill );
41 extern void intelFlushBatchLocked( intelContextPtr intel,
42 GLboolean ignore_cliprects,
43 GLboolean refill,
44 GLboolean allow_unlock);
45 extern void intelRefillBatchLocked( intelContextPtr intel, GLboolean allow_unlock );
46 extern void intelFinish( GLcontext *ctx );
47 extern void intelFlush( GLcontext *ctx );
48
49 extern void *intelAllocateAGP( intelContextPtr intel, GLsizei size );
50 extern void intelFreeAGP( intelContextPtr intel, void *pointer );
51
52 extern void *intelAllocateMemoryMESA( __DRInativeDisplay *dpy, int scrn,
53 GLsizei size, GLfloat readfreq,
54 GLfloat writefreq, GLfloat priority );
55
56 extern void intelFreeMemoryMESA( __DRInativeDisplay *dpy, int scrn,
57 GLvoid *pointer );
58
59 extern GLuint intelGetMemoryOffsetMESA( __DRInativeDisplay *dpy, int scrn, const GLvoid *pointer );
60 extern GLboolean intelIsAgpMemory( intelContextPtr intel, const GLvoid *pointer,
61 GLint size );
62
63 extern GLuint intelAgpOffsetFromVirtual( intelContextPtr intel, const GLvoid *p );
64
65
66 #endif