Merge branch 'mesa_7_6_branch'
[mesa.git] / src / mesa / drivers / common / meta.h
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.6
4 *
5 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * 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 #ifndef META_H
27 #define META_H
28
29
30 extern void
31 _mesa_meta_init(GLcontext *ctx);
32
33 extern void
34 _mesa_meta_free(GLcontext *ctx);
35
36 extern void
37 _mesa_meta_BlitFramebuffer(GLcontext *ctx,
38 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
39 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
40 GLbitfield mask, GLenum filter);
41
42 extern void
43 _mesa_meta_Clear(GLcontext *ctx, GLbitfield buffers);
44
45 extern void
46 _mesa_meta_CopyPixels(GLcontext *ctx, GLint srcx, GLint srcy,
47 GLsizei width, GLsizei height,
48 GLint dstx, GLint dsty, GLenum type);
49
50 extern void
51 _mesa_meta_DrawPixels(GLcontext *ctx,
52 GLint x, GLint y, GLsizei width, GLsizei height,
53 GLenum format, GLenum type,
54 const struct gl_pixelstore_attrib *unpack,
55 const GLvoid *pixels);
56
57 extern void
58 _mesa_meta_Bitmap(GLcontext *ctx,
59 GLint x, GLint y, GLsizei width, GLsizei height,
60 const struct gl_pixelstore_attrib *unpack,
61 const GLubyte *bitmap);
62
63 extern void
64 _mesa_meta_GenerateMipmap(GLcontext *ctx, GLenum target,
65 struct gl_texture_object *texObj);
66
67 extern void
68 _mesa_meta_CopyTexImage1D(GLcontext *ctx, GLenum target, GLint level,
69 GLenum internalFormat, GLint x, GLint y,
70 GLsizei width, GLint border);
71
72 extern void
73 _mesa_meta_CopyTexImage2D(GLcontext *ctx, GLenum target, GLint level,
74 GLenum internalFormat, GLint x, GLint y,
75 GLsizei width, GLsizei height, GLint border);
76
77 extern void
78 _mesa_meta_CopyTexSubImage1D(GLcontext *ctx, GLenum target, GLint level,
79 GLint xoffset,
80 GLint x, GLint y, GLsizei width);
81
82 extern void
83 _mesa_meta_CopyTexSubImage2D(GLcontext *ctx, GLenum target, GLint level,
84 GLint xoffset, GLint yoffset,
85 GLint x, GLint y,
86 GLsizei width, GLsizei height);
87
88 extern void
89 _mesa_meta_CopyTexSubImage3D(GLcontext *ctx, GLenum target, GLint level,
90 GLint xoffset, GLint yoffset, GLint zoffset,
91 GLint x, GLint y,
92 GLsizei width, GLsizei height);
93
94 extern void
95 _mesa_meta_CopyColorTable(GLcontext *ctx,
96 GLenum target, GLenum internalformat,
97 GLint x, GLint y, GLsizei width);
98
99 extern void
100 _mesa_meta_CopyColorSubTable(GLcontext *ctx,GLenum target, GLsizei start,
101 GLint x, GLint y, GLsizei width);
102
103 extern void
104 _mesa_meta_CopyConvolutionFilter1D(GLcontext *ctx, GLenum target,
105 GLenum internalFormat,
106 GLint x, GLint y, GLsizei width);
107
108 extern void
109 _mesa_meta_CopyConvolutionFilter2D(GLcontext *ctx, GLenum target,
110 GLenum internalFormat, GLint x, GLint y,
111 GLsizei width, GLsizei height);
112
113
114 #endif /* META_H */