2007-08-02 20:36:06 -06:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
* of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
|
|
|
|
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Texture Image-related functions.
|
|
|
|
* \author Brian Paul
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "main/imports.h"
|
|
|
|
#include "main/context.h"
|
2007-08-03 13:29:02 -06:00
|
|
|
#include "main/texstore.h"
|
2007-08-10 08:34:18 +01:00
|
|
|
#include "main/texformat.h"
|
|
|
|
#include "main/enums.h"
|
2007-10-27 17:30:23 +01:00
|
|
|
#include "main/macros.h"
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
#include "pipe/p_context.h"
|
|
|
|
#include "pipe/p_defines.h"
|
|
|
|
#include "st_context.h"
|
2007-08-10 08:37:15 +01:00
|
|
|
#include "st_format.h"
|
2007-08-02 20:36:06 -06:00
|
|
|
|
2007-10-27 17:30:23 +01:00
|
|
|
static GLuint
|
|
|
|
format_bits(
|
|
|
|
struct pipe_format_rgbazs info,
|
|
|
|
GLuint comp )
|
|
|
|
{
|
|
|
|
GLuint size;
|
|
|
|
|
|
|
|
if (info.swizzleX == comp) {
|
|
|
|
size = info.sizeX;
|
|
|
|
}
|
|
|
|
else if (info.swizzleY == comp) {
|
|
|
|
size = info.sizeY;
|
|
|
|
}
|
|
|
|
else if (info.swizzleZ == comp) {
|
|
|
|
size = info.sizeZ;
|
|
|
|
}
|
|
|
|
else if (info.swizzleW == comp) {
|
|
|
|
size = info.sizeW;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
size = 0;
|
|
|
|
}
|
|
|
|
return size << (info.exp8 * 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GLuint
|
|
|
|
format_max_bits(
|
|
|
|
struct pipe_format_rgbazs info )
|
|
|
|
{
|
|
|
|
GLuint size = format_bits( info, PIPE_FORMAT_COMP_R );
|
|
|
|
|
|
|
|
size = MAX2( size, format_bits( info, PIPE_FORMAT_COMP_G ) );
|
|
|
|
size = MAX2( size, format_bits( info, PIPE_FORMAT_COMP_B ) );
|
|
|
|
size = MAX2( size, format_bits( info, PIPE_FORMAT_COMP_A ) );
|
|
|
|
size = MAX2( size, format_bits( info, PIPE_FORMAT_COMP_Z ) );
|
|
|
|
size = MAX2( size, format_bits( info, PIPE_FORMAT_COMP_S ) );
|
|
|
|
return size;
|
|
|
|
}
|
2007-08-02 20:36:06 -06:00
|
|
|
|
2007-10-27 17:30:23 +01:00
|
|
|
static GLuint
|
|
|
|
format_size(
|
|
|
|
struct pipe_format_rgbazs info )
|
|
|
|
{
|
|
|
|
return
|
|
|
|
format_bits( info, PIPE_FORMAT_COMP_R ) +
|
|
|
|
format_bits( info, PIPE_FORMAT_COMP_G ) +
|
|
|
|
format_bits( info, PIPE_FORMAT_COMP_B ) +
|
|
|
|
format_bits( info, PIPE_FORMAT_COMP_A ) +
|
|
|
|
format_bits( info, PIPE_FORMAT_COMP_Z ) +
|
|
|
|
format_bits( info, PIPE_FORMAT_COMP_S );
|
|
|
|
}
|
2007-08-03 13:29:02 -06:00
|
|
|
|
2007-08-10 08:34:18 +01:00
|
|
|
/*
|
|
|
|
* XXX temporary here
|
|
|
|
*/
|
2007-10-27 17:30:23 +01:00
|
|
|
GLboolean
|
|
|
|
st_get_format_info(
|
|
|
|
GLuint format,
|
|
|
|
struct pipe_format_info *pinfo )
|
2007-08-10 08:34:18 +01:00
|
|
|
{
|
2007-10-27 17:30:23 +01:00
|
|
|
union pipe_format fmt;
|
|
|
|
|
|
|
|
fmt.value32 = format;
|
|
|
|
if (fmt.header.layout == PIPE_FORMAT_LAYOUT_RGBAZS) {
|
|
|
|
struct pipe_format_rgbazs info;
|
|
|
|
|
|
|
|
info = fmt.rgbazs;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
printf(
|
|
|
|
"PIPE_FORMAT: X(%u), Y(%u), Z(%u), W(%u)\n",
|
|
|
|
info.sizeX,
|
|
|
|
info.sizeY,
|
|
|
|
info.sizeZ,
|
|
|
|
info.sizeW );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Data type */
|
|
|
|
if (format == PIPE_FORMAT_U_A1_R5_G5_B5 || format == PIPE_FORMAT_U_R5_G6_B5) {
|
|
|
|
pinfo->datatype = GL_UNSIGNED_SHORT;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
GLuint size;
|
|
|
|
|
|
|
|
size = format_max_bits( info );
|
|
|
|
if (size == 8) {
|
2007-10-29 10:36:10 -06:00
|
|
|
if (info.type == PIPE_FORMAT_TYPE_UNORM)
|
|
|
|
pinfo->datatype = GL_UNSIGNED_BYTE;
|
|
|
|
else
|
|
|
|
pinfo->datatype = GL_BYTE;
|
2007-10-27 17:30:23 +01:00
|
|
|
}
|
|
|
|
else if (size == 16) {
|
2007-10-29 10:36:10 -06:00
|
|
|
if (info.type == PIPE_FORMAT_TYPE_UNORM)
|
|
|
|
pinfo->datatype = GL_UNSIGNED_SHORT;
|
|
|
|
else
|
|
|
|
pinfo->datatype = GL_SHORT;
|
2007-10-27 17:30:23 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
assert( size <= 32 );
|
2007-10-29 10:36:10 -06:00
|
|
|
if (info.type == PIPE_FORMAT_TYPE_UNORM)
|
|
|
|
pinfo->datatype = GL_UNSIGNED_INT;
|
|
|
|
else
|
|
|
|
pinfo->datatype = GL_INT;
|
2007-10-27 17:30:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Component bits */
|
|
|
|
pinfo->red_bits = format_bits( info, PIPE_FORMAT_COMP_R );
|
|
|
|
pinfo->green_bits = format_bits( info, PIPE_FORMAT_COMP_G );
|
|
|
|
pinfo->blue_bits = format_bits( info, PIPE_FORMAT_COMP_B );
|
|
|
|
pinfo->alpha_bits = format_bits( info, PIPE_FORMAT_COMP_A );
|
|
|
|
pinfo->depth_bits = format_bits( info, PIPE_FORMAT_COMP_Z );
|
|
|
|
pinfo->stencil_bits = format_bits( info, PIPE_FORMAT_COMP_S );
|
|
|
|
|
|
|
|
/* Format size */
|
|
|
|
pinfo->size = format_size( info ) / 8;
|
|
|
|
|
|
|
|
/* Luminance & Intensity bits */
|
|
|
|
if( info.swizzleX == PIPE_FORMAT_COMP_R && info.swizzleY == PIPE_FORMAT_COMP_R && info.swizzleZ == PIPE_FORMAT_COMP_R ) {
|
|
|
|
if( info.swizzleW == PIPE_FORMAT_COMP_R ) {
|
|
|
|
pinfo->luminance_bits = 0;
|
|
|
|
pinfo->intensity_bits = pinfo->red_bits;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pinfo->luminance_bits = pinfo->red_bits;
|
|
|
|
pinfo->intensity_bits = 0;
|
|
|
|
}
|
|
|
|
pinfo->red_bits = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Base format */
|
|
|
|
if (pinfo->depth_bits) {
|
|
|
|
if (pinfo->stencil_bits) {
|
|
|
|
pinfo->base_format = GL_DEPTH_STENCIL_EXT;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pinfo->base_format = GL_DEPTH_COMPONENT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (pinfo->stencil_bits) {
|
|
|
|
pinfo->base_format = GL_STENCIL_INDEX;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pinfo->base_format = GL_RGBA;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct pipe_format_ycbcr info;
|
|
|
|
|
|
|
|
assert( fmt.header.layout == PIPE_FORMAT_LAYOUT_YCBCR );
|
|
|
|
|
|
|
|
info = fmt.ycbcr;
|
|
|
|
|
|
|
|
/* TODO */
|
|
|
|
assert( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
printf(
|
|
|
|
"ST_FORMAT: R(%u), G(%u), B(%u), A(%u), Z(%u), S(%u)\n",
|
|
|
|
pinfo->red_bits,
|
|
|
|
pinfo->green_bits,
|
|
|
|
pinfo->blue_bits,
|
|
|
|
pinfo->alpha_bits,
|
|
|
|
pinfo->depth_bits,
|
|
|
|
pinfo->stencil_bits );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
pinfo->format = format;
|
|
|
|
|
|
|
|
return GL_TRUE;
|
2007-08-10 08:34:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-14 11:55:31 -06:00
|
|
|
/**
|
|
|
|
* Return bytes per pixel for the given format.
|
|
|
|
*/
|
2007-08-10 13:11:31 -06:00
|
|
|
GLuint
|
|
|
|
st_sizeof_format(GLuint pipeFormat)
|
|
|
|
{
|
2007-10-27 17:30:23 +01:00
|
|
|
struct pipe_format_info info;
|
|
|
|
if (!st_get_format_info( pipeFormat, &info )) {
|
|
|
|
assert( 0 );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return info.size;
|
2007-08-10 13:11:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-14 11:55:31 -06:00
|
|
|
/**
|
|
|
|
* Return bytes per pixel for the given format.
|
|
|
|
*/
|
|
|
|
GLenum
|
|
|
|
st_format_datatype(GLuint pipeFormat)
|
|
|
|
{
|
2007-10-27 17:30:23 +01:00
|
|
|
struct pipe_format_info info;
|
|
|
|
if (!st_get_format_info( pipeFormat, &info )) {
|
|
|
|
assert( 0 );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return info.datatype;
|
2007-10-14 11:55:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-10 13:02:25 -06:00
|
|
|
GLuint
|
|
|
|
st_mesa_format_to_pipe_format(GLuint mesaFormat)
|
|
|
|
{
|
|
|
|
switch (mesaFormat) {
|
|
|
|
/* fix this */
|
|
|
|
case MESA_FORMAT_ARGB8888_REV:
|
|
|
|
case MESA_FORMAT_ARGB8888:
|
|
|
|
return PIPE_FORMAT_U_A8_R8_G8_B8;
|
2007-08-24 13:17:08 -06:00
|
|
|
case MESA_FORMAT_AL88:
|
|
|
|
return PIPE_FORMAT_U_A8_L8;
|
|
|
|
case MESA_FORMAT_A8:
|
|
|
|
return PIPE_FORMAT_U_A8;
|
|
|
|
case MESA_FORMAT_L8:
|
|
|
|
return PIPE_FORMAT_U_L8;
|
|
|
|
case MESA_FORMAT_I8:
|
|
|
|
return PIPE_FORMAT_U_I8;
|
2007-10-02 16:56:02 -06:00
|
|
|
case MESA_FORMAT_Z16:
|
|
|
|
return PIPE_FORMAT_U_Z16;
|
2007-08-10 13:02:25 -06:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-02 20:36:06 -06:00
|
|
|
/**
|
|
|
|
* Search list of formats for first RGBA format.
|
|
|
|
*/
|
|
|
|
static GLuint
|
2007-10-27 15:55:11 +01:00
|
|
|
default_rgba_format(
|
|
|
|
struct pipe_context *pipe )
|
2007-08-02 20:36:06 -06:00
|
|
|
{
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_R8_G8_B8_A8 )) {
|
2007-10-27 15:55:11 +01:00
|
|
|
return PIPE_FORMAT_U_R8_G8_B8_A8;
|
|
|
|
}
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_A8_R8_G8_B8 )) {
|
2007-10-27 15:55:11 +01:00
|
|
|
return PIPE_FORMAT_U_A8_R8_G8_B8;
|
|
|
|
}
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_R5_G6_B5 )) {
|
2007-10-27 15:55:11 +01:00
|
|
|
return PIPE_FORMAT_U_R5_G6_B5;
|
2007-08-02 20:36:06 -06:00
|
|
|
}
|
|
|
|
return PIPE_FORMAT_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-14 11:55:31 -06:00
|
|
|
/**
|
|
|
|
* Search list of formats for first RGBA format with >8 bits/channel.
|
|
|
|
*/
|
|
|
|
static GLuint
|
2007-10-27 15:55:11 +01:00
|
|
|
default_deep_rgba_format(
|
|
|
|
struct pipe_context *pipe )
|
2007-10-14 11:55:31 -06:00
|
|
|
{
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_S_R16_G16_B16_A16 )) {
|
2007-10-27 15:55:11 +01:00
|
|
|
return PIPE_FORMAT_S_R16_G16_B16_A16;
|
2007-10-14 11:55:31 -06:00
|
|
|
}
|
|
|
|
return PIPE_FORMAT_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-02 20:36:06 -06:00
|
|
|
/**
|
|
|
|
* Search list of formats for first depth/Z format.
|
|
|
|
*/
|
|
|
|
static GLuint
|
2007-10-27 15:55:11 +01:00
|
|
|
default_depth_format(
|
|
|
|
struct pipe_context *pipe )
|
2007-08-02 20:36:06 -06:00
|
|
|
{
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_Z16 )) {
|
2007-10-27 15:55:11 +01:00
|
|
|
return PIPE_FORMAT_U_Z16;
|
|
|
|
}
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_Z32 )) {
|
2007-10-27 15:55:11 +01:00
|
|
|
return PIPE_FORMAT_U_Z32;
|
|
|
|
}
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_S8_Z24 )) {
|
2007-10-27 15:55:11 +01:00
|
|
|
return PIPE_FORMAT_S8_Z24;
|
2007-08-02 20:36:06 -06:00
|
|
|
}
|
|
|
|
return PIPE_FORMAT_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Choose the PIPE_FORMAT_ to use for storing a texture image based
|
|
|
|
* on the user's internalFormat, format and type parameters.
|
|
|
|
* We query the pipe device for a list of formats which it supports
|
|
|
|
* and choose from them.
|
|
|
|
* If we find a device that needs a more intricate selection mechanism,
|
|
|
|
* this function _could_ get pushed down into the pipe device.
|
|
|
|
*
|
2007-08-03 13:29:02 -06:00
|
|
|
* Note: also used for glRenderbufferStorageEXT()
|
|
|
|
*
|
|
|
|
* Note: format and type may be GL_NONE (see renderbuffers)
|
|
|
|
*
|
2007-08-02 20:36:06 -06:00
|
|
|
* \return PIPE_FORMAT_NONE if error/problem.
|
|
|
|
*/
|
2007-08-03 13:29:02 -06:00
|
|
|
GLuint
|
|
|
|
st_choose_pipe_format(struct pipe_context *pipe, GLint internalFormat,
|
|
|
|
GLenum format, GLenum type)
|
2007-08-02 20:36:06 -06:00
|
|
|
{
|
|
|
|
switch (internalFormat) {
|
|
|
|
case 4:
|
|
|
|
case GL_RGBA:
|
|
|
|
case GL_COMPRESSED_RGBA:
|
|
|
|
if (format == GL_BGRA) {
|
|
|
|
if (type == GL_UNSIGNED_BYTE || type == GL_UNSIGNED_INT_8_8_8_8_REV) {
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_A8_R8_G8_B8 ))
|
2007-08-02 20:36:06 -06:00
|
|
|
return PIPE_FORMAT_U_A8_R8_G8_B8;
|
|
|
|
}
|
|
|
|
else if (type == GL_UNSIGNED_SHORT_4_4_4_4_REV) {
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_A4_R4_G4_B4 ))
|
2007-08-02 20:36:06 -06:00
|
|
|
return PIPE_FORMAT_U_A4_R4_G4_B4;
|
|
|
|
}
|
|
|
|
else if (type == GL_UNSIGNED_SHORT_1_5_5_5_REV) {
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_A1_R5_G5_B5 ))
|
2007-08-02 20:36:06 -06:00
|
|
|
return PIPE_FORMAT_U_A1_R5_G5_B5;
|
|
|
|
}
|
|
|
|
}
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_rgba_format( pipe );
|
2007-08-03 13:29:02 -06:00
|
|
|
|
2007-08-02 20:36:06 -06:00
|
|
|
case 3:
|
|
|
|
case GL_RGB:
|
|
|
|
case GL_COMPRESSED_RGB:
|
|
|
|
if (format == GL_RGB && type == GL_UNSIGNED_SHORT_5_6_5) {
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_R5_G6_B5 ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_U_R5_G6_B5;
|
2007-08-02 20:36:06 -06:00
|
|
|
}
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_rgba_format( pipe );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_RGBA8:
|
|
|
|
case GL_RGB10_A2:
|
|
|
|
case GL_RGBA12:
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_rgba_format( pipe );
|
2007-10-14 11:55:31 -06:00
|
|
|
case GL_RGBA16:
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_deep_rgba_format( pipe );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_RGBA4:
|
|
|
|
case GL_RGBA2:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_A4_R4_G4_B4 ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_U_A4_R4_G4_B4;
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_rgba_format( pipe );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_RGB5_A1:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_A1_R5_G5_B5 ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_U_A1_R5_G5_B5;
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_rgba_format( pipe );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_RGB8:
|
|
|
|
case GL_RGB10:
|
|
|
|
case GL_RGB12:
|
|
|
|
case GL_RGB16:
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_rgba_format( pipe );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_RGB5:
|
|
|
|
case GL_RGB4:
|
|
|
|
case GL_R3_G3_B2:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_A1_R5_G5_B5 ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_U_A1_R5_G5_B5;
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_rgba_format( pipe );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_ALPHA:
|
|
|
|
case GL_ALPHA4:
|
|
|
|
case GL_ALPHA8:
|
|
|
|
case GL_ALPHA12:
|
|
|
|
case GL_ALPHA16:
|
|
|
|
case GL_COMPRESSED_ALPHA:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_A8 ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_U_A8;
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_rgba_format( pipe );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case 1:
|
|
|
|
case GL_LUMINANCE:
|
|
|
|
case GL_LUMINANCE4:
|
|
|
|
case GL_LUMINANCE8:
|
|
|
|
case GL_LUMINANCE12:
|
|
|
|
case GL_LUMINANCE16:
|
|
|
|
case GL_COMPRESSED_LUMINANCE:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_A8 ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_U_A8;
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_rgba_format( pipe );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case 2:
|
|
|
|
case GL_LUMINANCE_ALPHA:
|
|
|
|
case GL_LUMINANCE4_ALPHA4:
|
|
|
|
case GL_LUMINANCE6_ALPHA2:
|
|
|
|
case GL_LUMINANCE8_ALPHA8:
|
|
|
|
case GL_LUMINANCE12_ALPHA4:
|
|
|
|
case GL_LUMINANCE12_ALPHA12:
|
|
|
|
case GL_LUMINANCE16_ALPHA16:
|
|
|
|
case GL_COMPRESSED_LUMINANCE_ALPHA:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_A8_L8 ))
|
2007-08-24 13:17:08 -06:00
|
|
|
return PIPE_FORMAT_U_A8_L8;
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_rgba_format( pipe );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_INTENSITY:
|
|
|
|
case GL_INTENSITY4:
|
|
|
|
case GL_INTENSITY8:
|
|
|
|
case GL_INTENSITY12:
|
|
|
|
case GL_INTENSITY16:
|
|
|
|
case GL_COMPRESSED_INTENSITY:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_I8 ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_U_I8;
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_rgba_format( pipe );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_YCBCR_MESA:
|
2007-08-03 13:29:02 -06:00
|
|
|
if (type == GL_UNSIGNED_SHORT_8_8_MESA || type == GL_UNSIGNED_BYTE) {
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_YCBCR ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_YCBCR;
|
|
|
|
}
|
|
|
|
else {
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_YCBCR_REV ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_YCBCR_REV;
|
|
|
|
}
|
|
|
|
return PIPE_FORMAT_NONE;
|
2007-08-02 20:36:06 -06:00
|
|
|
|
2007-08-03 13:29:02 -06:00
|
|
|
#if 0
|
2007-08-02 20:36:06 -06:00
|
|
|
case GL_COMPRESSED_RGB_FXT1_3DFX:
|
|
|
|
return &_mesa_texformat_rgb_fxt1;
|
|
|
|
case GL_COMPRESSED_RGBA_FXT1_3DFX:
|
|
|
|
return &_mesa_texformat_rgba_fxt1;
|
|
|
|
|
|
|
|
case GL_RGB_S3TC:
|
|
|
|
case GL_RGB4_S3TC:
|
|
|
|
case GL_COMPRESSED_RGB_S3TC_DXT1_EXT:
|
|
|
|
return &_mesa_texformat_rgb_dxt1;
|
|
|
|
|
|
|
|
case GL_COMPRESSED_RGBA_S3TC_DXT1_EXT:
|
|
|
|
return &_mesa_texformat_rgba_dxt1;
|
|
|
|
|
|
|
|
case GL_RGBA_S3TC:
|
|
|
|
case GL_RGBA4_S3TC:
|
|
|
|
case GL_COMPRESSED_RGBA_S3TC_DXT3_EXT:
|
|
|
|
return &_mesa_texformat_rgba_dxt3;
|
|
|
|
|
|
|
|
case GL_COMPRESSED_RGBA_S3TC_DXT5_EXT:
|
|
|
|
return &_mesa_texformat_rgba_dxt5;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
case GL_DEPTH_COMPONENT16:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_Z16 ))
|
2007-08-02 20:36:06 -06:00
|
|
|
return PIPE_FORMAT_U_Z16;
|
|
|
|
/* fall-through */
|
|
|
|
case GL_DEPTH_COMPONENT24:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_S8_Z24 ))
|
2007-08-02 20:36:06 -06:00
|
|
|
return PIPE_FORMAT_S8_Z24;
|
|
|
|
/* fall-through */
|
|
|
|
case GL_DEPTH_COMPONENT32:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_Z32 ))
|
2007-08-02 20:36:06 -06:00
|
|
|
return PIPE_FORMAT_U_Z32;
|
|
|
|
/* fall-through */
|
|
|
|
case GL_DEPTH_COMPONENT:
|
2007-10-27 15:55:11 +01:00
|
|
|
return default_depth_format( pipe );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
2007-08-03 13:29:02 -06:00
|
|
|
case GL_STENCIL_INDEX:
|
|
|
|
case GL_STENCIL_INDEX1_EXT:
|
|
|
|
case GL_STENCIL_INDEX4_EXT:
|
|
|
|
case GL_STENCIL_INDEX8_EXT:
|
|
|
|
case GL_STENCIL_INDEX16_EXT:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_U_S8 ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_U_S8;
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_S8_Z24 ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_S8_Z24;
|
|
|
|
return PIPE_FORMAT_NONE;
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_DEPTH_STENCIL_EXT:
|
|
|
|
case GL_DEPTH24_STENCIL8_EXT:
|
2007-10-28 17:19:39 +00:00
|
|
|
if (pipe->is_format_supported( pipe, PIPE_FORMAT_S8_Z24 ))
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_S8_Z24;
|
|
|
|
return PIPE_FORMAT_NONE;
|
|
|
|
|
2007-08-02 20:36:06 -06:00
|
|
|
default:
|
|
|
|
return PIPE_FORMAT_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-08-10 08:34:18 +01:00
|
|
|
/* It works out that this function is fine for all the supported
|
|
|
|
* hardware. However, there is still a need to map the formats onto
|
|
|
|
* hardware descriptors.
|
|
|
|
*/
|
|
|
|
/* Note that the i915 can actually support many more formats than
|
|
|
|
* these if we take the step of simply swizzling the colors
|
|
|
|
* immediately after sampling...
|
|
|
|
*/
|
|
|
|
const struct gl_texture_format *
|
|
|
|
st_ChooseTextureFormat(GLcontext * ctx, GLint internalFormat,
|
|
|
|
GLenum format, GLenum type)
|
2007-08-03 13:29:02 -06:00
|
|
|
{
|
|
|
|
#if 0
|
2007-08-10 08:34:18 +01:00
|
|
|
struct intel_context *intel = intel_context(ctx);
|
|
|
|
const GLboolean do32bpt = (intel->intelScreen->front.cpp == 4);
|
|
|
|
#else
|
|
|
|
const GLboolean do32bpt = 1;
|
2007-08-03 13:29:02 -06:00
|
|
|
#endif
|
|
|
|
|
2007-08-10 08:34:18 +01:00
|
|
|
switch (internalFormat) {
|
|
|
|
case 4:
|
|
|
|
case GL_RGBA:
|
|
|
|
case GL_COMPRESSED_RGBA:
|
|
|
|
if (format == GL_BGRA) {
|
|
|
|
if (type == GL_UNSIGNED_BYTE || type == GL_UNSIGNED_INT_8_8_8_8_REV) {
|
|
|
|
return &_mesa_texformat_argb8888;
|
|
|
|
}
|
|
|
|
else if (type == GL_UNSIGNED_SHORT_4_4_4_4_REV) {
|
|
|
|
return &_mesa_texformat_argb4444;
|
|
|
|
}
|
|
|
|
else if (type == GL_UNSIGNED_SHORT_1_5_5_5_REV) {
|
|
|
|
return &_mesa_texformat_argb1555;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return do32bpt ? &_mesa_texformat_argb8888 : &_mesa_texformat_argb4444;
|
2007-08-03 13:29:02 -06:00
|
|
|
|
2007-08-10 08:34:18 +01:00
|
|
|
case 3:
|
|
|
|
case GL_RGB:
|
|
|
|
case GL_COMPRESSED_RGB:
|
|
|
|
if (format == GL_RGB && type == GL_UNSIGNED_SHORT_5_6_5) {
|
|
|
|
return &_mesa_texformat_rgb565;
|
|
|
|
}
|
|
|
|
return do32bpt ? &_mesa_texformat_argb8888 : &_mesa_texformat_rgb565;
|
2007-08-03 13:29:02 -06:00
|
|
|
|
2007-08-10 08:34:18 +01:00
|
|
|
case GL_RGBA8:
|
|
|
|
case GL_RGB10_A2:
|
|
|
|
case GL_RGBA12:
|
|
|
|
case GL_RGBA16:
|
|
|
|
return do32bpt ? &_mesa_texformat_argb8888 : &_mesa_texformat_argb4444;
|
2007-08-03 13:29:02 -06:00
|
|
|
|
2007-08-10 08:34:18 +01:00
|
|
|
case GL_RGBA4:
|
|
|
|
case GL_RGBA2:
|
|
|
|
return &_mesa_texformat_argb4444;
|
2007-08-02 20:36:06 -06:00
|
|
|
|
2007-08-10 08:34:18 +01:00
|
|
|
case GL_RGB5_A1:
|
|
|
|
return &_mesa_texformat_argb1555;
|
2007-08-02 20:36:06 -06:00
|
|
|
|
2007-08-10 08:34:18 +01:00
|
|
|
case GL_RGB8:
|
|
|
|
case GL_RGB10:
|
|
|
|
case GL_RGB12:
|
|
|
|
case GL_RGB16:
|
|
|
|
return &_mesa_texformat_argb8888;
|
2007-08-02 20:36:06 -06:00
|
|
|
|
2007-08-10 08:34:18 +01:00
|
|
|
case GL_RGB5:
|
|
|
|
case GL_RGB4:
|
|
|
|
case GL_R3_G3_B2:
|
|
|
|
return &_mesa_texformat_rgb565;
|
|
|
|
|
|
|
|
case GL_ALPHA:
|
|
|
|
case GL_ALPHA4:
|
|
|
|
case GL_ALPHA8:
|
|
|
|
case GL_ALPHA12:
|
|
|
|
case GL_ALPHA16:
|
|
|
|
case GL_COMPRESSED_ALPHA:
|
|
|
|
return &_mesa_texformat_a8;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
case GL_LUMINANCE:
|
|
|
|
case GL_LUMINANCE4:
|
|
|
|
case GL_LUMINANCE8:
|
|
|
|
case GL_LUMINANCE12:
|
|
|
|
case GL_LUMINANCE16:
|
|
|
|
case GL_COMPRESSED_LUMINANCE:
|
|
|
|
return &_mesa_texformat_l8;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
case GL_LUMINANCE_ALPHA:
|
|
|
|
case GL_LUMINANCE4_ALPHA4:
|
|
|
|
case GL_LUMINANCE6_ALPHA2:
|
|
|
|
case GL_LUMINANCE8_ALPHA8:
|
|
|
|
case GL_LUMINANCE12_ALPHA4:
|
|
|
|
case GL_LUMINANCE12_ALPHA12:
|
|
|
|
case GL_LUMINANCE16_ALPHA16:
|
|
|
|
case GL_COMPRESSED_LUMINANCE_ALPHA:
|
|
|
|
return &_mesa_texformat_al88;
|
|
|
|
|
|
|
|
case GL_INTENSITY:
|
|
|
|
case GL_INTENSITY4:
|
|
|
|
case GL_INTENSITY8:
|
|
|
|
case GL_INTENSITY12:
|
|
|
|
case GL_INTENSITY16:
|
|
|
|
case GL_COMPRESSED_INTENSITY:
|
|
|
|
return &_mesa_texformat_i8;
|
|
|
|
|
|
|
|
case GL_YCBCR_MESA:
|
|
|
|
if (type == GL_UNSIGNED_SHORT_8_8_MESA || type == GL_UNSIGNED_BYTE)
|
|
|
|
return &_mesa_texformat_ycbcr;
|
|
|
|
else
|
|
|
|
return &_mesa_texformat_ycbcr_rev;
|
|
|
|
|
|
|
|
case GL_COMPRESSED_RGB_FXT1_3DFX:
|
|
|
|
return &_mesa_texformat_rgb_fxt1;
|
|
|
|
case GL_COMPRESSED_RGBA_FXT1_3DFX:
|
|
|
|
return &_mesa_texformat_rgba_fxt1;
|
|
|
|
|
|
|
|
case GL_RGB_S3TC:
|
|
|
|
case GL_RGB4_S3TC:
|
|
|
|
case GL_COMPRESSED_RGB_S3TC_DXT1_EXT:
|
|
|
|
return &_mesa_texformat_rgb_dxt1;
|
|
|
|
|
|
|
|
case GL_COMPRESSED_RGBA_S3TC_DXT1_EXT:
|
|
|
|
return &_mesa_texformat_rgba_dxt1;
|
|
|
|
|
|
|
|
case GL_RGBA_S3TC:
|
|
|
|
case GL_RGBA4_S3TC:
|
|
|
|
case GL_COMPRESSED_RGBA_S3TC_DXT3_EXT:
|
|
|
|
return &_mesa_texformat_rgba_dxt3;
|
|
|
|
|
|
|
|
case GL_COMPRESSED_RGBA_S3TC_DXT5_EXT:
|
|
|
|
return &_mesa_texformat_rgba_dxt5;
|
|
|
|
|
|
|
|
case GL_DEPTH_COMPONENT:
|
|
|
|
case GL_DEPTH_COMPONENT16:
|
|
|
|
case GL_DEPTH_COMPONENT24:
|
|
|
|
case GL_DEPTH_COMPONENT32:
|
|
|
|
return &_mesa_texformat_z16;
|
|
|
|
|
|
|
|
case GL_DEPTH_STENCIL_EXT:
|
|
|
|
case GL_DEPTH24_STENCIL8_EXT:
|
|
|
|
return &_mesa_texformat_z24_s8;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "unexpected texture format %s in %s\n",
|
|
|
|
_mesa_lookup_enum_by_nr(internalFormat), __FUNCTION__);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL; /* never get here */
|
2007-08-02 20:36:06 -06:00
|
|
|
}
|