mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-04 23:20:31 +01:00
i965: Add the missing supportable EXT_texture_snorm formats
This class of hardware can natively sample all of the snorm surface formats that DX10 requires, but it can't do some of the legacy GL formats. In particular, all of the alpha, luminance, and intensity formats are unsupported. This partially fixes the breakage in glean's pixelFormats test since GL_EXT_texture_snorm support was added to Mesa. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
19d06b5c05
commit
ad3fbac00b
2 changed files with 9 additions and 0 deletions
|
|
@ -100,7 +100,11 @@ static uint32_t brw_format_for_mesa_format[MESA_FORMAT_COUNT] =
|
|||
[MESA_FORMAT_SLA8] = BRW_SURFACEFORMAT_L8A8_UNORM_SRGB,
|
||||
[MESA_FORMAT_SL8] = BRW_SURFACEFORMAT_L8_UNORM_SRGB,
|
||||
[MESA_FORMAT_DUDV8] = BRW_SURFACEFORMAT_R8G8_SNORM,
|
||||
[MESA_FORMAT_SIGNED_R8] = BRW_SURFACEFORMAT_R8_SNORM,
|
||||
[MESA_FORMAT_SIGNED_RG88_REV] = BRW_SURFACEFORMAT_R8G8_SNORM,
|
||||
[MESA_FORMAT_SIGNED_RGBA8888_REV] = BRW_SURFACEFORMAT_R8G8B8A8_SNORM,
|
||||
[MESA_FORMAT_SIGNED_R16] = BRW_SURFACEFORMAT_R16_SNORM,
|
||||
[MESA_FORMAT_SIGNED_GR1616] = BRW_SURFACEFORMAT_R16G16_SNORM,
|
||||
};
|
||||
|
||||
bool
|
||||
|
|
|
|||
|
|
@ -728,8 +728,13 @@ intelInitContext(struct intel_context *intel,
|
|||
ctx->TextureFormatSupported[MESA_FORMAT_RG88] = GL_TRUE;
|
||||
ctx->TextureFormatSupported[MESA_FORMAT_RG1616] = GL_TRUE;
|
||||
|
||||
/* GL_MESA_texture_signed_rgba / GL_EXT_texture_snorm */
|
||||
ctx->TextureFormatSupported[MESA_FORMAT_DUDV8] = GL_TRUE;
|
||||
ctx->TextureFormatSupported[MESA_FORMAT_SIGNED_RGBA8888_REV] = GL_TRUE;
|
||||
ctx->TextureFormatSupported[MESA_FORMAT_SIGNED_R8] = GL_TRUE;
|
||||
ctx->TextureFormatSupported[MESA_FORMAT_SIGNED_RG88_REV] = GL_TRUE;
|
||||
ctx->TextureFormatSupported[MESA_FORMAT_SIGNED_R16] = GL_TRUE;
|
||||
ctx->TextureFormatSupported[MESA_FORMAT_SIGNED_GR1616] = GL_TRUE;
|
||||
|
||||
/* GL_EXT_texture_sRGB */
|
||||
ctx->TextureFormatSupported[MESA_FORMAT_SARGB8] = GL_TRUE;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue