diff options
author | Denis Pauk <[email protected]> | 2018-06-26 23:30:52 +0300 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-07-01 15:42:37 -0400 |
commit | 2854c0f795b58fc28e9fcf9765b1b4e5faf3575f (patch) | |
tree | 4a5f7e68bfd3323d34b6fc9ec23dd65cf89168de /src/gallium/drivers | |
parent | 530130e74f35ebdc811f2d26167bf6e00abfc2db (diff) |
gallium/llvmpipe: Enable support bptc format.
v2: none
v3: none
Signed-off-by: Denis Pauk <[email protected]>
CC: Marek Olšák <[email protected]>
CC: Rhys Perry <[email protected]>
CC: Matt Turner <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_screen.c | 3 | ||||
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_test_format.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index 28dbd9908f9..9921a941d58 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -534,8 +534,7 @@ llvmpipe_is_format_supported( struct pipe_screen *_screen, } } - if (format_desc->layout == UTIL_FORMAT_LAYOUT_BPTC || - format_desc->layout == UTIL_FORMAT_LAYOUT_ASTC) { + if (format_desc->layout == UTIL_FORMAT_LAYOUT_ASTC) { /* Software decoding is not hooked up. */ return FALSE; } diff --git a/src/gallium/drivers/llvmpipe/lp_test_format.c b/src/gallium/drivers/llvmpipe/lp_test_format.c index e9a6e01fdcb..a8aa33d8ae9 100644 --- a/src/gallium/drivers/llvmpipe/lp_test_format.c +++ b/src/gallium/drivers/llvmpipe/lp_test_format.c @@ -388,8 +388,7 @@ test_all(unsigned verbose, FILE *fp) } /* missing fetch funcs */ - if (format_desc->layout == UTIL_FORMAT_LAYOUT_BPTC || - format_desc->layout == UTIL_FORMAT_LAYOUT_ASTC) { + if (format_desc->layout == UTIL_FORMAT_LAYOUT_ASTC) { continue; } |