Small optimization for big-endian (e.g., PowerPC) systems.
[mesa.git] / src / mesa / drivers / dri / mach64 / mach64_tex.h
1 /* $XFree86$ */ /* -*- mode: c; c-basic-offset: 3 -*- */
2 /*
3 * Copyright 2000 Gareth Hughes
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 "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 (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * GARETH HUGHES BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
21 * IN 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 * Authors:
27 * Gareth Hughes <gareth@valinux.com>
28 * Leif Delgass <ldelgass@retinalburn.net>
29 * José Fonseca <j_r_fonseca@yahoo.co.uk>
30 */
31
32 #ifndef __MACH64_TEX_H__
33 #define __MACH64_TEX_H__
34
35 #ifdef GLX_DIRECT_RENDERING
36
37 extern void mach64UpdateTextureState( GLcontext *ctx );
38
39 extern void mach64SwapOutTexObj( mach64ContextPtr mach64ctx,
40 mach64TexObjPtr t );
41
42 extern void mach64UploadTexImages( mach64ContextPtr mach64ctx,
43 mach64TexObjPtr t );
44
45 extern void mach64UploadMultiTexImages( mach64ContextPtr mach64ctx,
46 mach64TexObjPtr t0, mach64TexObjPtr t1 );
47
48 extern void mach64AgeTextures( mach64ContextPtr mach64ctx, int heap );
49 extern void mach64DestroyTexObj( mach64ContextPtr mach64ctx,
50 mach64TexObjPtr t );
51
52 extern void mach64UpdateTexLRU( mach64ContextPtr mach64ctx,
53 mach64TexObjPtr t );
54
55 extern void mach64PrintLocalLRU( mach64ContextPtr mach64ctx, int heap );
56 extern void mach64PrintGlobalLRU( mach64ContextPtr mach64ctx, int heap );
57
58 extern void mach64EmitTexStateLocked( mach64ContextPtr mmesa,
59 mach64TexObjPtr t0,
60 mach64TexObjPtr t1 );
61
62 extern void mach64InitTextureFuncs( struct dd_function_table *functions );
63
64 /* ================================================================
65 * Color conversion macros:
66 */
67
68 #define MACH64PACKCOLOR332(r, g, b) \
69 (((r) & 0xe0) | (((g) & 0xe0) >> 3) | (((b) & 0xc0) >> 6))
70
71 #define MACH64PACKCOLOR1555(r, g, b, a) \
72 ((((r) & 0xf8) << 7) | (((g) & 0xf8) << 2) | (((b) & 0xf8) >> 3) | \
73 ((a) ? 0x8000 : 0))
74
75 #define MACH64PACKCOLOR565(r, g, b) \
76 ((((r) & 0xf8) << 8) | (((g) & 0xfc) << 3) | (((b) & 0xf8) >> 3))
77
78 #define MACH64PACKCOLOR888(r, g, b) \
79 (((r) << 16) | ((g) << 8) | (b))
80
81 #define MACH64PACKCOLOR8888(r, g, b, a) \
82 (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
83
84 #define MACH64PACKCOLOR4444(r, g, b, a) \
85 ((((a) & 0xf0) << 8) | (((r) & 0xf0) << 4) | ((g) & 0xf0) | ((b) >> 4))
86
87 static __inline__ GLuint mach64PackColor( GLuint cpp,
88 GLubyte r, GLubyte g,
89 GLubyte b, GLubyte a )
90 {
91 switch ( cpp ) {
92 case 2:
93 return MACH64PACKCOLOR565( r, g, b );
94 case 4:
95 return MACH64PACKCOLOR8888( r, g, b, a );
96 default:
97 return 0;
98 }
99 }
100
101 #endif
102 #endif