merge current trunk into vbo branch
[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);
36
37 extern void intelPageFlip( const __DRIdrawablePrivate *dpriv );
38
39 extern void intelRotateWindow(intelContextPtr intel,
40 __DRIdrawablePrivate *dPriv, GLuint srcBuffer);
41
42 extern void intelWaitForIdle( intelContextPtr intel );
43 extern void intelFlushBatch( intelContextPtr intel, GLboolean refill );
44 extern void intelFlushBatchLocked( intelContextPtr intel,
45 GLboolean ignore_cliprects,
46 GLboolean refill,
47 GLboolean allow_unlock);
48 extern void intelRefillBatchLocked( intelContextPtr intel, GLboolean allow_unlock );
49 extern void intelFinish( GLcontext *ctx );
50 extern void intelFlush( GLcontext *ctx );
51 extern void intelglFlush( GLcontext *ctx );
52
53 extern void *intelAllocateAGP( intelContextPtr intel, GLsizei size );
54 extern void intelFreeAGP( intelContextPtr intel, void *pointer );
55
56 extern void *intelAllocateMemoryMESA( __DRInativeDisplay *dpy, int scrn,
57 GLsizei size, GLfloat readfreq,
58 GLfloat writefreq, GLfloat priority );
59
60 extern void intelFreeMemoryMESA( __DRInativeDisplay *dpy, int scrn,
61 GLvoid *pointer );
62
63 extern GLuint intelGetMemoryOffsetMESA( __DRInativeDisplay *dpy, int scrn, const GLvoid *pointer );
64 extern GLboolean intelIsAgpMemory( intelContextPtr intel, const GLvoid *pointer,
65 GLint size );
66
67 extern GLuint intelAgpOffsetFromVirtual( intelContextPtr intel, const GLvoid *p );
68
69 extern void intelWaitIrq( intelContextPtr intel, int seq );
70 extern u_int32_t intelGetLastFrame (intelContextPtr intel);
71 extern int intelEmitIrqLocked( intelContextPtr intel );
72 #endif