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"
|
2008-02-27 13:58:06 -07:00
|
|
|
#include "pipe/p_screen.h"
|
2007-08-02 20:36:06 -06:00
|
|
|
#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(
|
2007-11-06 10:17:59 +01:00
|
|
|
pipe_format_rgbazs_t info,
|
2007-10-27 17:30:23 +01:00
|
|
|
GLuint comp )
|
|
|
|
{
|
2008-06-13 14:49:04 +02:00
|
|
|
return pf_get_component_bits( (enum pipe_format) info, comp );
|
2007-10-27 17:30:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static GLuint
|
|
|
|
format_max_bits(
|
2007-11-06 10:17:59 +01:00
|
|
|
pipe_format_rgbazs_t info )
|
2007-10-27 17:30:23 +01:00
|
|
|
{
|
|
|
|
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(
|
2007-11-06 10:17:59 +01:00
|
|
|
pipe_format_rgbazs_t info )
|
2007-10-27 17:30:23 +01:00
|
|
|
{
|
|
|
|
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
|
2007-12-07 16:46:30 -07:00
|
|
|
st_get_format_info(enum pipe_format format, struct pipe_format_info *pinfo)
|
2007-08-10 08:34:18 +01:00
|
|
|
{
|
2007-11-06 10:17:59 +01:00
|
|
|
if (pf_layout(format) == PIPE_FORMAT_LAYOUT_RGBAZS) {
|
|
|
|
pipe_format_rgbazs_t info;
|
2007-10-27 17:30:23 +01:00
|
|
|
|
2007-11-06 10:17:59 +01:00
|
|
|
info = format;
|
2007-10-27 17:30:23 +01:00
|
|
|
|
|
|
|
#if 0
|
2007-11-24 16:02:31 +00:00
|
|
|
{
|
|
|
|
char fmtname[256];
|
|
|
|
|
|
|
|
pf_sprint_name( fmtname, format );
|
|
|
|
printf(
|
|
|
|
"%s\n",
|
|
|
|
fmtname );
|
|
|
|
}
|
2007-10-27 17:30:23 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Data type */
|
2007-12-07 16:15:14 -07:00
|
|
|
if (format == PIPE_FORMAT_A1R5G5B5_UNORM || format == PIPE_FORMAT_R5G6B5_UNORM) {
|
2007-10-27 17:30:23 +01:00
|
|
|
pinfo->datatype = GL_UNSIGNED_SHORT;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
GLuint size;
|
|
|
|
|
|
|
|
size = format_max_bits( info );
|
|
|
|
if (size == 8) {
|
2007-11-06 10:17:59 +01:00
|
|
|
if (pf_type(info) == PIPE_FORMAT_TYPE_UNORM)
|
2007-10-29 10:36:10 -06:00
|
|
|
pinfo->datatype = GL_UNSIGNED_BYTE;
|
|
|
|
else
|
|
|
|
pinfo->datatype = GL_BYTE;
|
2007-10-27 17:30:23 +01:00
|
|
|
}
|
|
|
|
else if (size == 16) {
|
2007-11-06 10:17:59 +01:00
|
|
|
if (pf_type(info) == PIPE_FORMAT_TYPE_UNORM)
|
2007-10-29 10:36:10 -06:00
|
|
|
pinfo->datatype = GL_UNSIGNED_SHORT;
|
|
|
|
else
|
|
|
|
pinfo->datatype = GL_SHORT;
|
2007-10-27 17:30:23 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
assert( size <= 32 );
|
2007-11-06 10:17:59 +01:00
|
|
|
if (pf_type(info) == PIPE_FORMAT_TYPE_UNORM)
|
2007-10-29 10:36:10 -06:00
|
|
|
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 );
|
2007-11-06 13:53:32 -07:00
|
|
|
pinfo->luminance_bits = 0;
|
|
|
|
pinfo->intensity_bits = 0;
|
2007-10-27 17:30:23 +01:00
|
|
|
|
|
|
|
/* Format size */
|
|
|
|
pinfo->size = format_size( info ) / 8;
|
|
|
|
|
|
|
|
/* Luminance & Intensity bits */
|
2007-11-06 10:17:59 +01:00
|
|
|
if( pf_swizzle_x(info) == PIPE_FORMAT_COMP_R &&
|
|
|
|
pf_swizzle_y(info) == PIPE_FORMAT_COMP_R &&
|
|
|
|
pf_swizzle_z(info) == PIPE_FORMAT_COMP_R ) {
|
|
|
|
if( pf_swizzle_w(info) == PIPE_FORMAT_COMP_R ) {
|
2007-10-27 17:30:23 +01:00
|
|
|
pinfo->intensity_bits = pinfo->red_bits;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pinfo->luminance_bits = pinfo->red_bits;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2008-04-03 16:37:30 -06:00
|
|
|
else if (pf_layout(format) == PIPE_FORMAT_LAYOUT_YCBCR) {
|
|
|
|
pinfo->base_format = GL_YCBCR_MESA;
|
|
|
|
pinfo->datatype = GL_UNSIGNED_SHORT;
|
|
|
|
pinfo->size = 2; /* two bytes per "texel" */
|
|
|
|
}
|
2007-10-27 17:30:23 +01:00
|
|
|
else {
|
2008-04-03 16:37:30 -06:00
|
|
|
/* compressed format? */
|
|
|
|
assert(0);
|
2007-10-27 17:30:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#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
|
2007-12-07 16:46:30 -07:00
|
|
|
st_sizeof_format(enum pipe_format format)
|
2007-08-10 13:11:31 -06:00
|
|
|
{
|
2007-10-27 17:30:23 +01:00
|
|
|
struct pipe_format_info info;
|
2007-12-07 16:46:30 -07:00
|
|
|
if (!st_get_format_info( format, &info )) {
|
2007-10-27 17:30:23 +01:00
|
|
|
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
|
2007-12-07 16:46:30 -07:00
|
|
|
st_format_datatype(enum pipe_format format)
|
2007-10-14 11:55:31 -06:00
|
|
|
{
|
2007-10-27 17:30:23 +01:00
|
|
|
struct pipe_format_info info;
|
2007-12-07 16:46:30 -07:00
|
|
|
if (!st_get_format_info( format, &info )) {
|
2007-10-27 17:30:23 +01:00
|
|
|
assert( 0 );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return info.datatype;
|
2007-10-14 11:55:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-07 16:46:30 -07:00
|
|
|
enum pipe_format
|
2007-08-10 13:02:25 -06:00
|
|
|
st_mesa_format_to_pipe_format(GLuint mesaFormat)
|
|
|
|
{
|
|
|
|
switch (mesaFormat) {
|
|
|
|
/* fix this */
|
|
|
|
case MESA_FORMAT_ARGB8888_REV:
|
|
|
|
case MESA_FORMAT_ARGB8888:
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_A8R8G8B8_UNORM;
|
2007-12-11 19:07:12 +01:00
|
|
|
case MESA_FORMAT_ARGB1555:
|
|
|
|
return PIPE_FORMAT_A1R5G5B5_UNORM;
|
2007-12-06 11:25:40 +01:00
|
|
|
case MESA_FORMAT_ARGB4444:
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_A4R4G4B4_UNORM;
|
2007-12-11 19:07:12 +01:00
|
|
|
case MESA_FORMAT_RGB565:
|
|
|
|
return PIPE_FORMAT_R5G6B5_UNORM;
|
2007-08-24 13:17:08 -06:00
|
|
|
case MESA_FORMAT_AL88:
|
2008-04-30 16:50:17 -06:00
|
|
|
return PIPE_FORMAT_A8L8_UNORM;
|
2007-08-24 13:17:08 -06:00
|
|
|
case MESA_FORMAT_A8:
|
2008-04-30 16:50:17 -06:00
|
|
|
return PIPE_FORMAT_A8_UNORM;
|
2007-08-24 13:17:08 -06:00
|
|
|
case MESA_FORMAT_L8:
|
2008-04-30 16:50:17 -06:00
|
|
|
return PIPE_FORMAT_L8_UNORM;
|
2007-08-24 13:17:08 -06:00
|
|
|
case MESA_FORMAT_I8:
|
2008-04-30 16:50:17 -06:00
|
|
|
return PIPE_FORMAT_I8_UNORM;
|
2007-10-02 16:56:02 -06:00
|
|
|
case MESA_FORMAT_Z16:
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_Z16_UNORM;
|
2008-03-28 13:09:19 -06:00
|
|
|
case MESA_FORMAT_Z32:
|
|
|
|
return PIPE_FORMAT_Z32_UNORM;
|
|
|
|
case MESA_FORMAT_Z24_S8:
|
|
|
|
return PIPE_FORMAT_Z24S8_UNORM;
|
2008-06-06 16:12:55 +02:00
|
|
|
case MESA_FORMAT_S8_Z24:
|
|
|
|
return PIPE_FORMAT_S8Z24_UNORM;
|
2008-04-03 16:37:30 -06:00
|
|
|
case MESA_FORMAT_YCBCR:
|
|
|
|
return PIPE_FORMAT_YCBCR;
|
2008-06-12 16:54:44 -06:00
|
|
|
#if FEATURE_texture_s3tc
|
2008-04-04 21:10:07 +02:00
|
|
|
case MESA_FORMAT_RGB_DXT1:
|
|
|
|
return PIPE_FORMAT_DXT1_RGB;
|
|
|
|
case MESA_FORMAT_RGBA_DXT1:
|
|
|
|
return PIPE_FORMAT_DXT1_RGBA;
|
|
|
|
case MESA_FORMAT_RGBA_DXT3:
|
|
|
|
return PIPE_FORMAT_DXT3_RGBA;
|
|
|
|
case MESA_FORMAT_RGBA_DXT5:
|
|
|
|
return PIPE_FORMAT_DXT5_RGBA;
|
2008-06-12 16:54:44 -06:00
|
|
|
#endif
|
2007-08-10 13:02:25 -06:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-02 20:36:06 -06:00
|
|
|
/**
|
2007-12-07 08:28:59 -07:00
|
|
|
* Find an RGBA format supported by the context/winsys.
|
2007-08-02 20:36:06 -06:00
|
|
|
*/
|
2008-04-28 09:38:18 -06:00
|
|
|
static enum pipe_format
|
2008-07-19 12:04:37 +09:00
|
|
|
default_rgba_format(struct pipe_screen *screen,
|
|
|
|
enum pipe_texture_target target,
|
|
|
|
unsigned tex_usage,
|
|
|
|
unsigned geom_flags)
|
2007-08-02 20:36:06 -06:00
|
|
|
{
|
2007-12-10 13:48:09 -07:00
|
|
|
static const enum pipe_format colorFormats[] = {
|
2007-12-07 16:15:14 -07:00
|
|
|
PIPE_FORMAT_A8R8G8B8_UNORM,
|
|
|
|
PIPE_FORMAT_B8G8R8A8_UNORM,
|
2007-12-12 14:55:57 -07:00
|
|
|
PIPE_FORMAT_R8G8B8A8_UNORM,
|
2007-12-07 16:15:14 -07:00
|
|
|
PIPE_FORMAT_R5G6B5_UNORM
|
2007-12-07 08:28:59 -07:00
|
|
|
};
|
|
|
|
uint i;
|
|
|
|
for (i = 0; i < Elements(colorFormats); i++) {
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, colorFormats[i], target, tex_usage, geom_flags )) {
|
2007-12-07 08:28:59 -07:00
|
|
|
return colorFormats[i];
|
|
|
|
}
|
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.
|
|
|
|
*/
|
2008-04-28 09:38:18 -06:00
|
|
|
static enum pipe_format
|
2008-07-19 12:04:37 +09:00
|
|
|
default_deep_rgba_format(struct pipe_screen *screen,
|
|
|
|
enum pipe_texture_target target,
|
|
|
|
unsigned tex_usage,
|
|
|
|
unsigned geom_flags)
|
2007-10-14 11:55:31 -06:00
|
|
|
{
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported(screen, PIPE_FORMAT_R16G16B16A16_SNORM, target, tex_usage, geom_flags)) {
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_R16G16B16A16_SNORM;
|
2007-10-14 11:55:31 -06:00
|
|
|
}
|
2008-07-19 12:04:37 +09:00
|
|
|
if (tex_usage & PIPE_TEXTURE_USAGE_RENDER_TARGET)
|
|
|
|
return default_rgba_format(screen, target, tex_usage, geom_flags);
|
2008-04-07 15:53:49 -06:00
|
|
|
else
|
|
|
|
return PIPE_FORMAT_NONE;
|
2007-10-14 11:55:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-02 20:36:06 -06:00
|
|
|
/**
|
2007-12-07 08:28:59 -07:00
|
|
|
* Find an Z format supported by the context/winsys.
|
2007-08-02 20:36:06 -06:00
|
|
|
*/
|
2008-04-28 09:38:18 -06:00
|
|
|
static enum pipe_format
|
2008-07-19 12:04:37 +09:00
|
|
|
default_depth_format(struct pipe_screen *screen,
|
|
|
|
enum pipe_texture_target target,
|
|
|
|
unsigned tex_usage,
|
|
|
|
unsigned geom_flags)
|
2007-08-02 20:36:06 -06:00
|
|
|
{
|
2007-12-10 13:48:09 -07:00
|
|
|
static const enum pipe_format zFormats[] = {
|
2007-12-07 16:15:14 -07:00
|
|
|
PIPE_FORMAT_Z16_UNORM,
|
|
|
|
PIPE_FORMAT_Z32_UNORM,
|
|
|
|
PIPE_FORMAT_S8Z24_UNORM,
|
|
|
|
PIPE_FORMAT_Z24S8_UNORM
|
2007-12-07 08:28:59 -07:00
|
|
|
};
|
|
|
|
uint i;
|
|
|
|
for (i = 0; i < Elements(zFormats); i++) {
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, zFormats[i], target, tex_usage, geom_flags )) {
|
2007-12-07 08:28:59 -07:00
|
|
|
return zFormats[i];
|
|
|
|
}
|
2007-11-20 08:30:10 -07:00
|
|
|
}
|
2007-08-02 20:36:06 -06:00
|
|
|
return PIPE_FORMAT_NONE;
|
|
|
|
}
|
|
|
|
|
2007-12-07 08:28:59 -07:00
|
|
|
|
2007-08-02 20:36:06 -06:00
|
|
|
/**
|
2008-03-28 13:09:19 -06:00
|
|
|
* Given an OpenGL internalFormat value for a texture or surface, return
|
|
|
|
* the best matching PIPE_FORMAT_x, or PIPE_FORMAT_NONE if there's no match.
|
2007-08-02 20:36:06 -06:00
|
|
|
*/
|
2008-04-16 09:45:56 -06:00
|
|
|
enum pipe_format
|
|
|
|
st_choose_format(struct pipe_context *pipe, GLint internalFormat,
|
2008-07-19 12:04:37 +09:00
|
|
|
enum pipe_texture_target target, unsigned tex_usage)
|
2007-08-02 20:36:06 -06:00
|
|
|
{
|
2008-02-27 13:58:06 -07:00
|
|
|
struct pipe_screen *screen = pipe->screen;
|
2008-07-19 12:04:37 +09:00
|
|
|
unsigned geom_flags = 0;
|
2007-12-10 13:48:09 -07:00
|
|
|
|
2007-08-02 20:36:06 -06:00
|
|
|
switch (internalFormat) {
|
|
|
|
case 4:
|
|
|
|
case GL_RGBA:
|
|
|
|
case GL_COMPRESSED_RGBA:
|
|
|
|
case 3:
|
|
|
|
case GL_RGB:
|
|
|
|
case GL_COMPRESSED_RGB:
|
|
|
|
case GL_RGBA8:
|
|
|
|
case GL_RGB10_A2:
|
|
|
|
case GL_RGBA12:
|
2008-07-19 12:04:37 +09:00
|
|
|
return default_rgba_format( screen, target, tex_usage, geom_flags );
|
2007-10-14 11:55:31 -06:00
|
|
|
case GL_RGBA16:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (tex_usage & PIPE_TEXTURE_USAGE_RENDER_TARGET)
|
|
|
|
return default_deep_rgba_format( screen, target, tex_usage, geom_flags );
|
2008-07-04 10:35:32 -06:00
|
|
|
else
|
2008-07-19 12:04:37 +09:00
|
|
|
return default_rgba_format( screen, target, tex_usage, geom_flags );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_RGBA4:
|
|
|
|
case GL_RGBA2:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_A4R4G4B4_UNORM, target, tex_usage, geom_flags ))
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_A4R4G4B4_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
return default_rgba_format( screen, target, tex_usage, geom_flags );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_RGB5_A1:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_A1R5G5B5_UNORM, target, tex_usage, geom_flags ))
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_A1R5G5B5_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
return default_rgba_format( screen, target, tex_usage, geom_flags );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_RGB8:
|
|
|
|
case GL_RGB10:
|
|
|
|
case GL_RGB12:
|
|
|
|
case GL_RGB16:
|
2008-07-19 12:04:37 +09:00
|
|
|
return default_rgba_format( screen, target, tex_usage, geom_flags );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_RGB5:
|
|
|
|
case GL_RGB4:
|
|
|
|
case GL_R3_G3_B2:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_A1R5G5B5_UNORM, target, tex_usage, geom_flags ))
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_A1R5G5B5_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_R5G6B5_UNORM, target, tex_usage, geom_flags ))
|
2007-12-12 12:58:59 -07:00
|
|
|
return PIPE_FORMAT_R5G6B5_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
return default_rgba_format( screen, target, tex_usage, geom_flags );
|
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:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_A8_UNORM, target, tex_usage, geom_flags ))
|
2008-04-30 16:50:17 -06:00
|
|
|
return PIPE_FORMAT_A8_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
return default_rgba_format( screen, target, tex_usage, geom_flags );
|
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:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_L8_UNORM, target, tex_usage, geom_flags ))
|
2008-04-30 16:50:17 -06:00
|
|
|
return PIPE_FORMAT_L8_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
return default_rgba_format( screen, target, tex_usage, geom_flags );
|
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:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_A8L8_UNORM, target, tex_usage, geom_flags ))
|
2008-04-30 16:50:17 -06:00
|
|
|
return PIPE_FORMAT_A8L8_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
return default_rgba_format( screen, target, tex_usage, geom_flags );
|
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:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_I8_UNORM, target, tex_usage, geom_flags ))
|
2008-04-30 16:50:17 -06:00
|
|
|
return PIPE_FORMAT_I8_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
return default_rgba_format( screen, target, tex_usage, geom_flags );
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_YCBCR_MESA:
|
2008-04-03 16:37:30 -06:00
|
|
|
if (screen->is_format_supported(screen, PIPE_FORMAT_YCBCR,
|
2008-07-19 12:04:37 +09:00
|
|
|
target, tex_usage, geom_flags)) {
|
2008-04-03 16:37:30 -06:00
|
|
|
return PIPE_FORMAT_YCBCR;
|
|
|
|
}
|
|
|
|
if (screen->is_format_supported(screen, PIPE_FORMAT_YCBCR_REV,
|
2008-07-19 12:04:37 +09:00
|
|
|
target, tex_usage, geom_flags)) {
|
2008-04-03 16:37:30 -06:00
|
|
|
return PIPE_FORMAT_YCBCR_REV;
|
|
|
|
}
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_NONE;
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_RGB_S3TC:
|
|
|
|
case GL_RGB4_S3TC:
|
|
|
|
case GL_COMPRESSED_RGB_S3TC_DXT1_EXT:
|
2008-03-28 13:09:19 -06:00
|
|
|
return PIPE_FORMAT_DXT1_RGB;
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_COMPRESSED_RGBA_S3TC_DXT1_EXT:
|
2008-03-28 13:09:19 -06:00
|
|
|
return PIPE_FORMAT_DXT1_RGBA;
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_RGBA_S3TC:
|
|
|
|
case GL_RGBA4_S3TC:
|
|
|
|
case GL_COMPRESSED_RGBA_S3TC_DXT3_EXT:
|
2008-03-28 13:09:19 -06:00
|
|
|
return PIPE_FORMAT_DXT3_RGBA;
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_COMPRESSED_RGBA_S3TC_DXT5_EXT:
|
2008-03-28 13:09:19 -06:00
|
|
|
return PIPE_FORMAT_DXT5_RGBA;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
case GL_COMPRESSED_RGB_FXT1_3DFX:
|
|
|
|
return PIPE_FORMAT_RGB_FXT1;
|
|
|
|
case GL_COMPRESSED_RGBA_FXT1_3DFX:
|
|
|
|
return PIPE_FORMAT_RGB_FXT1;
|
2007-08-02 20:36:06 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
case GL_DEPTH_COMPONENT16:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_Z16_UNORM, target, tex_usage, geom_flags ))
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_Z16_UNORM;
|
2007-08-02 20:36:06 -06:00
|
|
|
/* fall-through */
|
|
|
|
case GL_DEPTH_COMPONENT24:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_S8Z24_UNORM, target, tex_usage, geom_flags ))
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_S8Z24_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_Z24S8_UNORM, target, tex_usage, geom_flags ))
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_Z24S8_UNORM;
|
2007-08-02 20:36:06 -06:00
|
|
|
/* fall-through */
|
|
|
|
case GL_DEPTH_COMPONENT32:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_Z32_UNORM, target, tex_usage, geom_flags ))
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_Z32_UNORM;
|
2007-08-02 20:36:06 -06:00
|
|
|
/* fall-through */
|
|
|
|
case GL_DEPTH_COMPONENT:
|
2008-07-19 12:04:37 +09:00
|
|
|
return default_depth_format( screen, target, tex_usage, geom_flags );
|
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:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_S8_UNORM, target, tex_usage, geom_flags ))
|
2008-05-17 08:46:43 -06:00
|
|
|
return PIPE_FORMAT_S8_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_S8Z24_UNORM, target, tex_usage, geom_flags ))
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_S8Z24_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_Z24S8_UNORM, target, tex_usage, geom_flags ))
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_Z24S8_UNORM;
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_NONE;
|
2007-08-02 20:36:06 -06:00
|
|
|
|
|
|
|
case GL_DEPTH_STENCIL_EXT:
|
|
|
|
case GL_DEPTH24_STENCIL8_EXT:
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_S8Z24_UNORM, target, tex_usage, geom_flags ))
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_S8Z24_UNORM;
|
2008-07-19 12:04:37 +09:00
|
|
|
if (screen->is_format_supported( screen, PIPE_FORMAT_Z24S8_UNORM, target, tex_usage, geom_flags ))
|
2007-12-07 16:15:14 -07:00
|
|
|
return PIPE_FORMAT_Z24S8_UNORM;
|
2007-08-03 13:29:02 -06:00
|
|
|
return PIPE_FORMAT_NONE;
|
|
|
|
|
2007-08-02 20:36:06 -06:00
|
|
|
default:
|
|
|
|
return PIPE_FORMAT_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-28 13:09:19 -06:00
|
|
|
/**
|
|
|
|
* Called by FBO code to choose a PIPE_FORMAT_ for drawing surfaces.
|
2007-08-10 08:34:18 +01:00
|
|
|
*/
|
2008-03-28 13:09:19 -06:00
|
|
|
enum pipe_format
|
|
|
|
st_choose_renderbuffer_format(struct pipe_context *pipe, GLint internalFormat)
|
2007-08-03 13:29:02 -06:00
|
|
|
{
|
2008-07-19 12:04:37 +09:00
|
|
|
return st_choose_format(pipe, internalFormat, PIPE_TEXTURE_2D,
|
|
|
|
PIPE_TEXTURE_USAGE_RENDER_TARGET);
|
2008-03-28 13:09:19 -06:00
|
|
|
}
|
2007-08-03 13:29:02 -06:00
|
|
|
|
2007-08-02 20:36:06 -06:00
|
|
|
|
2008-03-28 13:09:19 -06:00
|
|
|
static const struct gl_texture_format *
|
|
|
|
translate_gallium_format_to_mesa_format(enum pipe_format format)
|
|
|
|
{
|
|
|
|
switch (format) {
|
|
|
|
case PIPE_FORMAT_A8R8G8B8_UNORM:
|
2007-08-10 08:34:18 +01:00
|
|
|
return &_mesa_texformat_argb8888;
|
2008-03-28 13:09:19 -06:00
|
|
|
case PIPE_FORMAT_A1R5G5B5_UNORM:
|
|
|
|
return &_mesa_texformat_argb1555;
|
|
|
|
case PIPE_FORMAT_A4R4G4B4_UNORM:
|
|
|
|
return &_mesa_texformat_argb4444;
|
|
|
|
case PIPE_FORMAT_R5G6B5_UNORM:
|
2007-08-10 08:34:18 +01:00
|
|
|
return &_mesa_texformat_rgb565;
|
2008-04-30 16:50:17 -06:00
|
|
|
case PIPE_FORMAT_A8L8_UNORM:
|
2008-03-28 13:09:19 -06:00
|
|
|
return &_mesa_texformat_al88;
|
2008-04-30 16:50:17 -06:00
|
|
|
case PIPE_FORMAT_A8_UNORM:
|
2007-08-10 08:34:18 +01:00
|
|
|
return &_mesa_texformat_a8;
|
2008-04-30 16:50:17 -06:00
|
|
|
case PIPE_FORMAT_L8_UNORM:
|
2007-08-10 08:34:18 +01:00
|
|
|
return &_mesa_texformat_l8;
|
2008-04-30 16:50:17 -06:00
|
|
|
case PIPE_FORMAT_I8_UNORM:
|
2007-08-10 08:34:18 +01:00
|
|
|
return &_mesa_texformat_i8;
|
2008-03-28 13:09:19 -06:00
|
|
|
case PIPE_FORMAT_Z16_UNORM:
|
|
|
|
return &_mesa_texformat_z16;
|
|
|
|
case PIPE_FORMAT_Z32_UNORM:
|
|
|
|
return &_mesa_texformat_z32;
|
|
|
|
case PIPE_FORMAT_Z24S8_UNORM:
|
|
|
|
return &_mesa_texformat_z24_s8;
|
2008-06-06 16:12:55 +02:00
|
|
|
case PIPE_FORMAT_S8Z24_UNORM:
|
|
|
|
return &_mesa_texformat_s8_z24;
|
2008-03-28 13:09:19 -06:00
|
|
|
case PIPE_FORMAT_YCBCR:
|
|
|
|
return &_mesa_texformat_ycbcr;
|
|
|
|
case PIPE_FORMAT_YCBCR_REV:
|
|
|
|
return &_mesa_texformat_ycbcr_rev;
|
2008-06-12 16:54:44 -06:00
|
|
|
#if FEATURE_texture_s3tc
|
2008-03-28 13:09:19 -06:00
|
|
|
case PIPE_FORMAT_DXT1_RGB:
|
2007-08-10 08:34:18 +01:00
|
|
|
return &_mesa_texformat_rgb_dxt1;
|
2008-03-28 13:09:19 -06:00
|
|
|
case PIPE_FORMAT_DXT1_RGBA:
|
2007-08-10 08:34:18 +01:00
|
|
|
return &_mesa_texformat_rgba_dxt1;
|
2008-03-28 13:09:19 -06:00
|
|
|
case PIPE_FORMAT_DXT3_RGBA:
|
2007-08-10 08:34:18 +01:00
|
|
|
return &_mesa_texformat_rgba_dxt3;
|
2008-03-28 13:09:19 -06:00
|
|
|
case PIPE_FORMAT_DXT5_RGBA:
|
2007-08-10 08:34:18 +01:00
|
|
|
return &_mesa_texformat_rgba_dxt5;
|
2008-06-12 16:54:44 -06:00
|
|
|
#endif
|
2008-03-28 13:09:19 -06:00
|
|
|
/* XXX add additional cases */
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2007-08-10 08:34:18 +01:00
|
|
|
|
|
|
|
|
2008-03-28 13:09:19 -06:00
|
|
|
/**
|
|
|
|
* Called via ctx->Driver.chooseTextureFormat().
|
|
|
|
*/
|
|
|
|
const struct gl_texture_format *
|
|
|
|
st_ChooseTextureFormat(GLcontext *ctx, GLint internalFormat,
|
|
|
|
GLenum format, GLenum type)
|
|
|
|
{
|
|
|
|
enum pipe_format pFormat;
|
2007-08-10 08:34:18 +01:00
|
|
|
|
2008-03-28 13:09:19 -06:00
|
|
|
(void) format;
|
|
|
|
(void) type;
|
|
|
|
|
2008-07-19 12:04:37 +09:00
|
|
|
pFormat = st_choose_format(ctx->st->pipe, internalFormat, PIPE_TEXTURE_2D,
|
|
|
|
PIPE_TEXTURE_USAGE_SAMPLER);
|
2008-03-28 13:09:19 -06:00
|
|
|
if (pFormat == PIPE_FORMAT_NONE)
|
2007-08-10 08:34:18 +01:00
|
|
|
return NULL;
|
|
|
|
|
2008-03-28 13:09:19 -06:00
|
|
|
return translate_gallium_format_to_mesa_format(pFormat);
|
2007-08-02 20:36:06 -06:00
|
|
|
}
|