diff options
author | Matt Turner <[email protected]> | 2017-09-28 14:23:39 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2017-10-02 19:41:22 -0700 |
commit | dc546a7bb3fae1d597e5a22d9527540ec4f072c8 (patch) | |
tree | 7893f128eafcf0d0838e14766413599c9c73b577 /src/gallium/drivers/llvmpipe | |
parent | 3a8a5e77e8f992aaa3539e060885138c2fcddad1 (diff) |
gallium: Remove util_format_s3tc_init()
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_screen.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_test_format.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index 7b694b57551..ab2ba3a19a8 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -682,7 +682,5 @@ llvmpipe_create_screen(struct sw_winsys *winsys) } (void) mtx_init(&screen->rast_mutex, mtx_plain); - util_format_s3tc_init(); - return &screen->base; } diff --git a/src/gallium/drivers/llvmpipe/lp_test_format.c b/src/gallium/drivers/llvmpipe/lp_test_format.c index fd79087287e..e9a6e01fdcb 100644 --- a/src/gallium/drivers/llvmpipe/lp_test_format.c +++ b/src/gallium/drivers/llvmpipe/lp_test_format.c @@ -357,8 +357,6 @@ test_all(unsigned verbose, FILE *fp) enum pipe_format format; boolean success = TRUE; - util_format_s3tc_init(); - #if USE_TEXTURE_CACHE cache_ptr = align_malloc(sizeof(struct lp_build_format_cache), 16); #endif |