summaryrefslogtreecommitdiffstats
path: root/src/mesa/swrast
diff options
context:
space:
mode:
authorAnuj Phogat <[email protected]>2016-02-11 12:33:27 -0800
committerAnuj Phogat <[email protected]>2016-05-03 03:43:18 -0700
commit883f3662db845f905232da90ae8cf715a9472ece (patch)
tree7c8602b26cb46f41c68711d49cd986be204b59bb /src/mesa/swrast
parent63432eb37086b390650974a054f1fec32e660e7e (diff)
swrast: Add texfetch_funcs entries for astc 3d formats
Signed-off-by: Anuj Phogat <[email protected]> Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/swrast')
-rw-r--r--src/mesa/swrast/s_texfetch.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_texfetch.c b/src/mesa/swrast/s_texfetch.c
index 27de9b3e083..721d0883853 100644
--- a/src/mesa/swrast/s_texfetch.c
+++ b/src/mesa/swrast/s_texfetch.c
@@ -440,7 +440,28 @@ texfetch_funcs[] =
FETCH_NULL(SRGB8_ALPHA8_ASTC_10x8),
FETCH_NULL(SRGB8_ALPHA8_ASTC_10x10),
FETCH_NULL(SRGB8_ALPHA8_ASTC_12x10),
- FETCH_NULL(SRGB8_ALPHA8_ASTC_12x12)
+ FETCH_NULL(SRGB8_ALPHA8_ASTC_12x12),
+
+ FETCH_NULL(RGBA_ASTC_3x3x3),
+ FETCH_NULL(RGBA_ASTC_4x3x3),
+ FETCH_NULL(RGBA_ASTC_4x4x3),
+ FETCH_NULL(RGBA_ASTC_4x4x4),
+ FETCH_NULL(RGBA_ASTC_5x4x4),
+ FETCH_NULL(RGBA_ASTC_5x5x4),
+ FETCH_NULL(RGBA_ASTC_5x5x5),
+ FETCH_NULL(RGBA_ASTC_6x5x5),
+ FETCH_NULL(RGBA_ASTC_6x6x5),
+ FETCH_NULL(RGBA_ASTC_6x6x6),
+ FETCH_NULL(SRGB8_ALPHA8_ASTC_3x3x3),
+ FETCH_NULL(SRGB8_ALPHA8_ASTC_4x3x3),
+ FETCH_NULL(SRGB8_ALPHA8_ASTC_4x4x3),
+ FETCH_NULL(SRGB8_ALPHA8_ASTC_4x4x4),
+ FETCH_NULL(SRGB8_ALPHA8_ASTC_5x4x4),
+ FETCH_NULL(SRGB8_ALPHA8_ASTC_5x5x4),
+ FETCH_NULL(SRGB8_ALPHA8_ASTC_5x5x5),
+ FETCH_NULL(SRGB8_ALPHA8_ASTC_6x5x5),
+ FETCH_NULL(SRGB8_ALPHA8_ASTC_6x6x5),
+ FETCH_NULL(SRGB8_ALPHA8_ASTC_6x6x6)
};