diff options
author | Jonathan Marek <[email protected]> | 2019-02-05 11:08:33 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2019-04-23 17:11:56 +0000 |
commit | 734409096bdac31d0ee57efea0e274d558b62940 (patch) | |
tree | a44a37f8720c0b1a4909997ceaa31555aede29a0 /src/gallium/drivers/freedreno/a3xx | |
parent | 0719a5f646b26d7fe73a8e0bbc9cae081e8617d2 (diff) |
freedreno: a3xx: add GL_AMD_compressed_ATC_texture support
Signed-off-by: Ilia Mirkin <[email protected]>
Signed-off-by: Jonathan Marek <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/a3xx')
-rw-r--r-- | src/gallium/drivers/freedreno/a3xx/fd3_format.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/a3xx/fd3_format.c b/src/gallium/drivers/freedreno/a3xx/fd3_format.c index f8508977a78..0012b81e407 100644 --- a/src/gallium/drivers/freedreno/a3xx/fd3_format.c +++ b/src/gallium/drivers/freedreno/a3xx/fd3_format.c @@ -285,6 +285,10 @@ static struct fd3_format formats[PIPE_FORMAT_COUNT] = { _T(LATC1_SNORM, 8_8_8_8_SNORM, NONE, WZYX), _T(LATC2_UNORM, 8_8_8_8_UNORM, NONE, WZYX), _T(LATC2_SNORM, 8_8_8_8_SNORM, NONE, WZYX), + + _T(ATC_RGB, ATC_RGB, NONE, WZYX), + _T(ATC_RGBA_EXPLICIT, ATC_RGBA_EXPLICIT, NONE, WZYX), + _T(ATC_RGBA_INTERPOLATED, ATC_RGBA_INTERPOLATED, NONE, WZYX), }; enum a3xx_vtx_fmt |