xref: /third_party/mesa3d/src/mesa/main/image.h (revision bf215546)
1/*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2008  Brian Paul   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 shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26#ifndef IMAGE_H
27#define IMAGE_H
28
29
30#include "glheader.h"
31
32struct gl_context;
33struct gl_pixelstore_attrib;
34struct gl_framebuffer;
35
36extern void
37_mesa_swap2(GLushort *p, GLuint n);
38
39extern void
40_mesa_swap4(GLuint *p, GLuint n);
41
42
43extern GLintptr
44_mesa_image_offset( GLuint dimensions,
45                    const struct gl_pixelstore_attrib *packing,
46                    GLsizei width, GLsizei height,
47                    GLenum format, GLenum type,
48                    GLint img, GLint row, GLint column );
49
50extern GLvoid *
51_mesa_image_address( GLuint dimensions,
52                     const struct gl_pixelstore_attrib *packing,
53                     const GLvoid *image,
54                     GLsizei width, GLsizei height,
55                     GLenum format, GLenum type,
56                     GLint img, GLint row, GLint column );
57
58extern GLvoid *
59_mesa_image_address1d( const struct gl_pixelstore_attrib *packing,
60                       const GLvoid *image,
61                       GLsizei width,
62                       GLenum format, GLenum type,
63                       GLint column );
64
65extern GLvoid *
66_mesa_image_address2d( const struct gl_pixelstore_attrib *packing,
67                       const GLvoid *image,
68                       GLsizei width, GLsizei height,
69                       GLenum format, GLenum type,
70                       GLint row, GLint column );
71
72extern GLvoid *
73_mesa_image_address3d( const struct gl_pixelstore_attrib *packing,
74                       const GLvoid *image,
75                       GLsizei width, GLsizei height,
76                       GLenum format, GLenum type,
77                       GLint img, GLint row, GLint column );
78
79
80extern GLint
81_mesa_image_row_stride( const struct gl_pixelstore_attrib *packing,
82                        GLint width, GLenum format, GLenum type );
83
84
85extern GLint
86_mesa_image_image_stride( const struct gl_pixelstore_attrib *packing,
87                          GLint width, GLint height,
88                          GLenum format, GLenum type );
89
90
91extern void
92_mesa_expand_bitmap(GLsizei width, GLsizei height,
93                    const struct gl_pixelstore_attrib *unpack,
94                    const GLubyte *bitmap,
95                    GLubyte *destBuffer, GLint destStride,
96                    GLubyte onValue);
97
98
99extern GLboolean
100_mesa_clip_drawpixels(const struct gl_context *ctx,
101                      GLint *destX, GLint *destY,
102                      GLsizei *width, GLsizei *height,
103                      struct gl_pixelstore_attrib *unpack);
104
105
106extern GLboolean
107_mesa_clip_readpixels(const struct gl_context *ctx,
108                      GLint *srcX, GLint *srcY,
109                      GLsizei *width, GLsizei *height,
110                      struct gl_pixelstore_attrib *pack);
111
112extern GLboolean
113_mesa_clip_copytexsubimage(const struct gl_context *ctx,
114                           GLint *destX, GLint *destY,
115                           GLint *srcX, GLint *srcY,
116                           GLsizei *width, GLsizei *height);
117
118extern GLboolean
119_mesa_clip_to_region(GLint xmin, GLint ymin,
120                     GLint xmax, GLint ymax,
121                     GLint *x, GLint *y,
122                     GLsizei *width, GLsizei *height );
123
124extern GLboolean
125_mesa_clip_blit(struct gl_context *ctx,
126                const struct gl_framebuffer *readFb,
127                const struct gl_framebuffer *drawFb,
128                GLint *srcX0, GLint *srcY0, GLint *srcX1, GLint *srcY1,
129                GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1);
130
131void
132_mesa_swap_bytes_2d_image(GLenum format, GLenum type,
133                          const struct gl_pixelstore_attrib *packing,
134                          GLsizei width, GLsizei height,
135                          GLvoid *dst, const GLvoid *src);
136
137#endif
138