formats.h revision 1c7ec97ec47f294dcfc0c6a87ee26bb3565f95d4
1/* 2 * Mesa 3-D graphics library 3 * Version: 7.7 4 * 5 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved. 6 * Copyright (c) 2008-2009 VMware, Inc. 7 * 8 * Permission is hereby granted, free of charge, to any person obtaining a 9 * copy of this software and associated documentation files (the "Software"), 10 * to deal in the Software without restriction, including without limitation 11 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 12 * and/or sell copies of the Software, and to permit persons to whom the 13 * Software is furnished to do so, subject to the following conditions: 14 * 15 * The above copyright notice and this permission notice shall be included 16 * in all copies or substantial portions of the Software. 17 * 18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 24 */ 25 26/* 27 * Authors: 28 * Brian Paul 29 */ 30 31 32#ifndef FORMATS_H 33#define FORMATS_H 34 35 36#include "main/mtypes.h" 37 38 39 40/** 41 * Mesa texture/renderbuffer image formats. 42 */ 43typedef enum 44{ 45 MESA_FORMAT_NONE = 0, 46 47 /** 48 * \name Basic hardware formats 49 */ 50 /*@{*/ 51 /* msb <------ TEXEL BITS -----------> lsb */ 52 /* ---- ---- ---- ---- ---- ---- ---- ---- */ 53 MESA_FORMAT_RGBA8888, /* RRRR RRRR GGGG GGGG BBBB BBBB AAAA AAAA */ 54 MESA_FORMAT_RGBA8888_REV, /* AAAA AAAA BBBB BBBB GGGG GGGG RRRR RRRR */ 55 MESA_FORMAT_ARGB8888, /* AAAA AAAA RRRR RRRR GGGG GGGG BBBB BBBB */ 56 MESA_FORMAT_ARGB8888_REV, /* BBBB BBBB GGGG GGGG RRRR RRRR AAAA AAAA */ 57 MESA_FORMAT_RGB888, /* RRRR RRRR GGGG GGGG BBBB BBBB */ 58 MESA_FORMAT_BGR888, /* BBBB BBBB GGGG GGGG RRRR RRRR */ 59 MESA_FORMAT_RGB565, /* RRRR RGGG GGGB BBBB */ 60 MESA_FORMAT_RGB565_REV, /* GGGB BBBB RRRR RGGG */ 61 MESA_FORMAT_ARGB4444, /* AAAA RRRR GGGG BBBB */ 62 MESA_FORMAT_ARGB4444_REV, /* GGGG BBBB AAAA RRRR */ 63 MESA_FORMAT_RGBA5551, /* RRRR RGGG GGBB BBBA */ 64 MESA_FORMAT_ARGB1555, /* ARRR RRGG GGGB BBBB */ 65 MESA_FORMAT_ARGB1555_REV, /* GGGB BBBB ARRR RRGG */ 66 MESA_FORMAT_AL88, /* AAAA AAAA LLLL LLLL */ 67 MESA_FORMAT_AL88_REV, /* LLLL LLLL AAAA AAAA */ 68 MESA_FORMAT_RGB332, /* RRRG GGBB */ 69 MESA_FORMAT_A8, /* AAAA AAAA */ 70 MESA_FORMAT_L8, /* LLLL LLLL */ 71 MESA_FORMAT_I8, /* IIII IIII */ 72 MESA_FORMAT_CI8, /* CCCC CCCC */ 73 MESA_FORMAT_YCBCR, /* YYYY YYYY UorV UorV */ 74 MESA_FORMAT_YCBCR_REV, /* UorV UorV YYYY YYYY */ 75 MESA_FORMAT_Z24_S8, /* ZZZZ ZZZZ ZZZZ ZZZZ ZZZZ ZZZZ SSSS SSSS */ 76 MESA_FORMAT_S8_Z24, /* SSSS SSSS ZZZZ ZZZZ ZZZZ ZZZZ ZZZZ ZZZZ */ 77 MESA_FORMAT_Z16, /* ZZZZ ZZZZ ZZZZ ZZZZ */ 78 MESA_FORMAT_Z32, /* ZZZZ ZZZZ ZZZZ ZZZZ ZZZZ ZZZZ ZZZZ ZZZZ */ 79 MESA_FORMAT_S8, /* SSSS SSSS */ 80 /*@}*/ 81 82#if FEATURE_EXT_texture_sRGB 83 /** 84 * \name 8-bit/channel sRGB formats 85 */ 86 /*@{*/ 87 MESA_FORMAT_SRGB8, 88 MESA_FORMAT_SRGBA8, 89 MESA_FORMAT_SARGB8, 90 MESA_FORMAT_SL8, 91 MESA_FORMAT_SLA8, 92#if FEATURE_texture_s3tc 93 MESA_FORMAT_SRGB_DXT1, 94 MESA_FORMAT_SRGBA_DXT1, 95 MESA_FORMAT_SRGBA_DXT3, 96 MESA_FORMAT_SRGBA_DXT5, 97#endif 98 /*@}*/ 99#endif 100 101 /** 102 * \name Compressed texture formats. 103 */ 104 /*@{*/ 105#if FEATURE_texture_fxt1 106 MESA_FORMAT_RGB_FXT1, 107 MESA_FORMAT_RGBA_FXT1, 108#endif 109#if FEATURE_texture_s3tc 110 MESA_FORMAT_RGB_DXT1, 111 MESA_FORMAT_RGBA_DXT1, 112 MESA_FORMAT_RGBA_DXT3, 113 MESA_FORMAT_RGBA_DXT5, 114#endif 115 /*@}*/ 116 117 /** 118 * \name Floating point texture formats. 119 */ 120 /*@{*/ 121 MESA_FORMAT_RGBA_FLOAT32, 122 MESA_FORMAT_RGBA_FLOAT16, 123 MESA_FORMAT_RGB_FLOAT32, 124 MESA_FORMAT_RGB_FLOAT16, 125 MESA_FORMAT_ALPHA_FLOAT32, 126 MESA_FORMAT_ALPHA_FLOAT16, 127 MESA_FORMAT_LUMINANCE_FLOAT32, 128 MESA_FORMAT_LUMINANCE_FLOAT16, 129 MESA_FORMAT_LUMINANCE_ALPHA_FLOAT32, 130 MESA_FORMAT_LUMINANCE_ALPHA_FLOAT16, 131 MESA_FORMAT_INTENSITY_FLOAT32, 132 MESA_FORMAT_INTENSITY_FLOAT16, 133 /*@}*/ 134 135 /** 136 * \name Signed fixed point texture formats. 137 */ 138 /*@{*/ 139 MESA_FORMAT_DUDV8, 140 MESA_FORMAT_SIGNED_RGBA8888, 141 MESA_FORMAT_SIGNED_RGBA8888_REV, 142 /*@}*/ 143 144 MESA_FORMAT_COUNT, 145} gl_format; 146 147 148/** 149 * Information about texture formats. 150 */ 151struct gl_format_info 152{ 153 gl_format Name; 154 155 /** 156 * Base format is one of GL_RGB, GL_RGBA, GL_ALPHA, GL_LUMINANCE, 157 * GL_LUMINANCE_ALPHA, GL_INTENSITY, GL_COLOR_INDEX, GL_DEPTH_COMPONENT. 158 */ 159 GLenum BaseFormat; 160 161 /** 162 * Logical data type: one of GL_UNSIGNED_NORMALIZED, GL_SIGNED_NORMALED, 163 * GL_UNSIGNED_INT, GL_SIGNED_INT, GL_FLOAT. 164 */ 165 GLenum DataType; 166 167 GLubyte RedBits; 168 GLubyte GreenBits; 169 GLubyte BlueBits; 170 GLubyte AlphaBits; 171 GLubyte LuminanceBits; 172 GLubyte IntensityBits; 173 GLubyte IndexBits; 174 GLubyte DepthBits; 175 GLubyte StencilBits; 176 177 /** 178 * To describe compressed formats. If not compressed, Width=Height=1. 179 */ 180 GLubyte BlockWidth, BlockHeight; 181 GLubyte BytesPerBlock; 182}; 183 184 185 186extern GLuint 187_mesa_get_format_bytes(gl_format format); 188 189extern GLint 190_mesa_get_format_bits(gl_format format, GLenum pname); 191 192extern GLenum 193_mesa_get_format_datatype(gl_format format); 194 195extern GLenum 196_mesa_get_format_base_format(gl_format format); 197 198extern GLboolean 199_mesa_is_format_compressed(gl_format format); 200 201extern void 202_mesa_format_to_type_and_comps2(gl_format format, 203 GLenum *datatype, GLuint *comps); 204 205extern GLuint 206_mesa_format_image_size(gl_format format, GLsizei width, 207 GLsizei height, GLsizei depth); 208 209extern void 210_mesa_test_formats(void); 211 212#endif /* FORMATS_H */ 213