revert 213 commits (to 56092) from the last month. 10 still need work to resolve...
[AROS.git] / workbench / libs / mesa / src / mesa / main / teximage.h
blob19abc649898f80bef37bf4341d3f705dce345ed5
1 /**
2 * \file teximage.h
3 * Texture images manipulation functions.
4 */
6 /*
7 * Mesa 3-D graphics library
8 * Version: 6.5
10 * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
19 * The above copyright notice and this permission notice shall be included
20 * in all copies or substantial portions of the Software.
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
26 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
27 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 #ifndef TEXIMAGE_H
32 #define TEXIMAGE_H
35 #include "mtypes.h"
36 #include "formats.h"
39 extern void *
40 _mesa_alloc_texmemory(GLsizei bytes);
42 extern void
43 _mesa_free_texmemory(void *m);
46 /** \name Internal functions */
47 /*@{*/
49 extern GLint
50 _mesa_base_tex_format( struct gl_context *ctx, GLint internalFormat );
53 extern GLboolean
54 _mesa_is_proxy_texture(GLenum target);
57 extern struct gl_texture_image *
58 _mesa_new_texture_image( struct gl_context *ctx );
61 extern void
62 _mesa_delete_texture_image( struct gl_context *ctx,
63 struct gl_texture_image *teximage );
65 extern void
66 _mesa_free_texture_image_data( struct gl_context *ctx,
67 struct gl_texture_image *texImage );
70 extern void
71 _mesa_init_teximage_fields(struct gl_context *ctx, GLenum target,
72 struct gl_texture_image *img,
73 GLsizei width, GLsizei height, GLsizei depth,
74 GLint border, GLenum internalFormat,
75 gl_format format);
78 extern gl_format
79 _mesa_choose_texture_format(struct gl_context *ctx,
80 struct gl_texture_object *texObj,
81 GLenum target, GLint level,
82 GLenum internalFormat, GLenum format, GLenum type);
85 extern void
86 _mesa_clear_texture_image(struct gl_context *ctx,
87 struct gl_texture_image *texImage);
90 extern void
91 _mesa_set_tex_image(struct gl_texture_object *tObj,
92 GLenum target, GLint level,
93 struct gl_texture_image *texImage);
96 extern struct gl_texture_object *
97 _mesa_select_tex_object(struct gl_context *ctx,
98 const struct gl_texture_unit *texUnit,
99 GLenum target);
101 extern struct gl_texture_object *
102 _mesa_get_current_tex_object(struct gl_context *ctx, GLenum target);
105 extern struct gl_texture_image *
106 _mesa_select_tex_image(struct gl_context *ctx,
107 const struct gl_texture_object *texObj,
108 GLenum target, GLint level);
111 extern struct gl_texture_image *
112 _mesa_get_tex_image(struct gl_context *ctx, struct gl_texture_object *texObj,
113 GLenum target, GLint level);
116 extern struct gl_texture_image *
117 _mesa_get_proxy_tex_image(struct gl_context *ctx, GLenum target, GLint level);
120 extern GLint
121 _mesa_max_texture_levels(struct gl_context *ctx, GLenum target);
124 extern GLboolean
125 _mesa_test_proxy_teximage(struct gl_context *ctx, GLenum target, GLint level,
126 GLint internalFormat, GLenum format, GLenum type,
127 GLint width, GLint height, GLint depth, GLint border);
130 extern GLuint
131 _mesa_tex_target_to_face(GLenum target);
133 extern GLint
134 _mesa_get_texture_dimensions(GLenum target);
137 * Lock a texture for updating. See also _mesa_lock_context_textures().
139 static INLINE void
140 _mesa_lock_texture(struct gl_context *ctx, struct gl_texture_object *texObj)
142 _glthread_LOCK_MUTEX(ctx->Shared->TexMutex);
143 ctx->Shared->TextureStateStamp++;
144 (void) texObj;
147 static INLINE void
148 _mesa_unlock_texture(struct gl_context *ctx, struct gl_texture_object *texObj)
150 _glthread_UNLOCK_MUTEX(ctx->Shared->TexMutex);
153 /*@}*/
156 /** \name API entry point functions */
157 /*@{*/
159 extern void GLAPIENTRY
160 _mesa_TexImage1D( GLenum target, GLint level, GLint internalformat,
161 GLsizei width, GLint border,
162 GLenum format, GLenum type, const GLvoid *pixels );
165 extern void GLAPIENTRY
166 _mesa_TexImage2D( GLenum target, GLint level, GLint internalformat,
167 GLsizei width, GLsizei height, GLint border,
168 GLenum format, GLenum type, const GLvoid *pixels );
171 extern void GLAPIENTRY
172 _mesa_TexImage3D( GLenum target, GLint level, GLint internalformat,
173 GLsizei width, GLsizei height, GLsizei depth, GLint border,
174 GLenum format, GLenum type, const GLvoid *pixels );
177 extern void GLAPIENTRY
178 _mesa_TexImage3DEXT( GLenum target, GLint level, GLenum internalformat,
179 GLsizei width, GLsizei height, GLsizei depth,
180 GLint border, GLenum format, GLenum type,
181 const GLvoid *pixels );
183 extern void GLAPIENTRY
184 _mesa_EGLImageTargetTexture2DOES( GLenum target, GLeglImageOES image );
186 extern void GLAPIENTRY
187 _mesa_TexSubImage1D( GLenum target, GLint level, GLint xoffset,
188 GLsizei width,
189 GLenum format, GLenum type,
190 const GLvoid *pixels );
193 extern void GLAPIENTRY
194 _mesa_TexSubImage2D( GLenum target, GLint level,
195 GLint xoffset, GLint yoffset,
196 GLsizei width, GLsizei height,
197 GLenum format, GLenum type,
198 const GLvoid *pixels );
201 extern void GLAPIENTRY
202 _mesa_TexSubImage3D( GLenum target, GLint level,
203 GLint xoffset, GLint yoffset, GLint zoffset,
204 GLsizei width, GLsizei height, GLsizei depth,
205 GLenum format, GLenum type,
206 const GLvoid *pixels );
209 extern void GLAPIENTRY
210 _mesa_CopyTexImage1D( GLenum target, GLint level, GLenum internalformat,
211 GLint x, GLint y, GLsizei width, GLint border );
214 extern void GLAPIENTRY
215 _mesa_CopyTexImage2D( GLenum target, GLint level,
216 GLenum internalformat, GLint x, GLint y,
217 GLsizei width, GLsizei height, GLint border );
220 extern void GLAPIENTRY
221 _mesa_CopyTexSubImage1D( GLenum target, GLint level, GLint xoffset,
222 GLint x, GLint y, GLsizei width );
225 extern void GLAPIENTRY
226 _mesa_CopyTexSubImage2D( GLenum target, GLint level,
227 GLint xoffset, GLint yoffset,
228 GLint x, GLint y, GLsizei width, GLsizei height );
231 extern void GLAPIENTRY
232 _mesa_CopyTexSubImage3D( GLenum target, GLint level,
233 GLint xoffset, GLint yoffset, GLint zoffset,
234 GLint x, GLint y, GLsizei width, GLsizei height );
238 extern void GLAPIENTRY
239 _mesa_CompressedTexImage1DARB(GLenum target, GLint level,
240 GLenum internalformat, GLsizei width,
241 GLint border, GLsizei imageSize,
242 const GLvoid *data);
244 extern void GLAPIENTRY
245 _mesa_CompressedTexImage2DARB(GLenum target, GLint level,
246 GLenum internalformat, GLsizei width,
247 GLsizei height, GLint border, GLsizei imageSize,
248 const GLvoid *data);
250 extern void GLAPIENTRY
251 _mesa_CompressedTexImage3DARB(GLenum target, GLint level,
252 GLenum internalformat, GLsizei width,
253 GLsizei height, GLsizei depth, GLint border,
254 GLsizei imageSize, const GLvoid *data);
256 #ifdef VMS
257 #define _mesa_CompressedTexSubImage1DARB _mesa_CompressedTexSubImage1DAR
258 #define _mesa_CompressedTexSubImage2DARB _mesa_CompressedTexSubImage2DAR
259 #define _mesa_CompressedTexSubImage3DARB _mesa_CompressedTexSubImage3DAR
260 #endif
261 extern void GLAPIENTRY
262 _mesa_CompressedTexSubImage1DARB(GLenum target, GLint level, GLint xoffset,
263 GLsizei width, GLenum format,
264 GLsizei imageSize, const GLvoid *data);
266 extern void GLAPIENTRY
267 _mesa_CompressedTexSubImage2DARB(GLenum target, GLint level, GLint xoffset,
268 GLint yoffset, GLsizei width, GLsizei height,
269 GLenum format, GLsizei imageSize,
270 const GLvoid *data);
272 extern void GLAPIENTRY
273 _mesa_CompressedTexSubImage3DARB(GLenum target, GLint level, GLint xoffset,
274 GLint yoffset, GLint zoffset, GLsizei width,
275 GLsizei height, GLsizei depth, GLenum format,
276 GLsizei imageSize, const GLvoid *data);
279 extern void GLAPIENTRY
280 _mesa_TexBuffer(GLenum target, GLenum internalFormat, GLuint buffer);
283 /*@}*/
285 #endif