[965] Convert the driver to dri_bufmgr interface and enable TTM.
[mesa.git] / src / mesa / drivers / dri / i965 / intel_blit.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_BLIT_H
29 #define INTEL_BLIT_H
30
31 #include "intel_context.h"
32 #include "intel_ioctl.h"
33
34 extern void intelCopyBuffer( __DRIdrawablePrivate *dpriv,
35 const drm_clip_rect_t *rect );
36 extern void intelClearWithBlit(GLcontext *ctx, GLbitfield mask);
37
38 extern void intelEmitCopyBlit( struct intel_context *intel,
39 GLuint cpp,
40 GLshort src_pitch,
41 dri_bo *src_buffer,
42 GLuint src_offset,
43 GLboolean src_tiled,
44 GLshort dst_pitch,
45 dri_bo *dst_buffer,
46 GLuint dst_offset,
47 GLboolean dst_tiled,
48 GLshort srcx, GLshort srcy,
49 GLshort dstx, GLshort dsty,
50 GLshort w, GLshort h,
51 GLenum logic_op );
52
53 extern void intelEmitFillBlit( struct intel_context *intel,
54 GLuint cpp,
55 GLshort dst_pitch,
56 dri_bo *dst_buffer,
57 GLuint dst_offset,
58 GLboolean dst_tiled,
59 GLshort x, GLshort y,
60 GLshort w, GLshort h,
61 GLuint color );
62
63 void
64 intelEmitImmediateColorExpandBlit(struct intel_context *intel,
65 GLuint cpp,
66 GLubyte *src_bits, GLuint src_size,
67 GLuint fg_color,
68 GLshort dst_pitch,
69 dri_bo *dst_buffer,
70 GLuint dst_offset,
71 GLboolean dst_tiled,
72 GLshort dst_x, GLshort dst_y,
73 GLshort w, GLshort h,
74 GLenum logic_op );
75
76 #endif