diff options
author | Ilia Mirkin <[email protected]> | 2014-12-03 20:43:22 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-12-06 18:18:47 -0500 |
commit | b38b40d7bbff7b9f24ee9b03ececf44dfbf7539e (patch) | |
tree | c2846159e245a2f87dba9fa4da421c7579b21847 /src/gallium/drivers/freedreno/a3xx | |
parent | e02ed16cb52973975a097f955ec341a579c8f863 (diff) |
freedreno/a3xx: add bgr565 texturing and rendering
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/a3xx')
-rw-r--r-- | src/gallium/drivers/freedreno/a3xx/fd3_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/a3xx/fd3_format.c b/src/gallium/drivers/freedreno/a3xx/fd3_format.c index 95999e9c69e..d0ce5279b9d 100644 --- a/src/gallium/drivers/freedreno/a3xx/fd3_format.c +++ b/src/gallium/drivers/freedreno/a3xx/fd3_format.c @@ -118,7 +118,7 @@ static struct fd3_format formats[PIPE_FORMAT_COUNT] = { _T(L8A8_SINT, 8_8_SINT, NONE, WZYX), _T(Z16_UNORM, Z16_UNORM, R8G8_UNORM, WZYX), - /*_T(B5G6R5_UNORM, 5_6_5_UNORM, R5G6B5_UNORM, WXYZ),*/ + _T(B5G6R5_UNORM, 5_6_5_UNORM, R5G6B5_UNORM, WXYZ), _T(B5G5R5A1_UNORM, 5_5_5_1_UNORM, R5G5B5A1_UNORM, WXYZ), _T(B5G5R5X1_UNORM, 5_5_5_1_UNORM, R5G5B5A1_UNORM, WXYZ), _T(B4G4R4A4_UNORM, 4_4_4_4_UNORM, R4G4B4A4_UNORM, WXYZ), |