The required DDX and DRI version numbers were switched. This went unnoticed
[mesa.git] / src / mesa / drivers / dri / tdfx / tdfx_tex.h
1 /* -*- mode: c; c-basic-offset: 3 -*-
2 *
3 * Copyright 2000 VA Linux Systems Inc., Fremont, California.
4 *
5 * 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 (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * VA LINUX SYSTEMS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
23 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 */
26 /* $XFree86: xc/lib/GL/mesa/src/drv/tdfx/tdfx_tex.h,v 1.2 2002/02/22 21:45:04 dawes Exp $ */
27
28 /*
29 * Original rewrite:
30 * Gareth Hughes <gareth@valinux.com>, 29 Sep - 1 Oct 2000
31 *
32 * Authors:
33 * Gareth Hughes <gareth@valinux.com>
34 * Brian Paul <brianp@valinux.com>
35 *
36 */
37
38 #ifndef _TDFX_TEX_H_
39 #define _TDFX_TEX_H_
40
41
42 #define tdfxDDIsCompressedFormatMacro(internalFormat) \
43 (((internalFormat) == GL_COMPRESSED_RGB_FXT1_3DFX) || \
44 ((internalFormat) == GL_COMPRESSED_RGBA_FXT1_3DFX))
45 #define tdfxDDIsCompressedGlideFormatMacro(internalFormat) \
46 ((internalFormat) == GR_TEXFMT_ARGB_CMP_FXT1)
47
48
49
50 extern void
51 tdfxTexValidate(GLcontext * ctx, struct gl_texture_object *tObj);
52
53
54 #if 000 /* DEAD? */
55 extern void
56 fxDDTexUseGlobalPalette(GLcontext * ctx, GLboolean state);
57 #endif
58
59 extern GLboolean
60 tdfxTestProxyTexImage(GLcontext *ctx, GLenum target,
61 GLint level, GLint internalFormat,
62 GLenum format, GLenum type,
63 GLint width, GLint height,
64 GLint depth, GLint border);
65
66 extern GLvoid *
67 tdfxDDGetTexImage(GLcontext * ctx, GLenum target, GLint level,
68 const struct gl_texture_object *texObj,
69 GLenum * formatOut, GLenum * typeOut,
70 GLboolean * freeImageOut);
71
72 extern void
73 tdfxDDGetCompressedTexImage( GLcontext *ctx, GLenum target,
74 GLint lod, void *image,
75 const struct gl_texture_object *texObj,
76 struct gl_texture_image *texImage );
77
78 extern GLint
79 tdfxSpecificCompressedTexFormat(GLcontext *ctx,
80 GLint internalFormat,
81 GLint numDimensions);
82
83 extern GLint
84 tdfxBaseCompressedTexFormat(GLcontext *ctx,
85 GLint internalFormat);
86
87 extern GLboolean
88 tdfxDDIsCompressedFormat(GLcontext *ctx, GLint internalFormat);
89
90 extern GLsizei
91 tdfxDDCompressedImageSize(GLcontext *ctx,
92 GLenum intFormat,
93 GLuint numDimensions,
94 GLuint width,
95 GLuint height,
96 GLuint depth);
97
98
99 extern void
100 tdfxInitTextureFuncs( struct dd_function_table *functions );
101
102 #endif