diff options
author | Bryan Cain <[email protected]> | 2011-07-20 17:35:22 -0500 |
---|---|---|
committer | Bryan Cain <[email protected]> | 2011-07-26 12:54:42 -0500 |
commit | 860c51d82711936d343b55aafb46befc8c032fe6 (patch) | |
tree | d3038ce87e9d65af739abf922bde83b97eff839b | |
parent | 95739f19ccc8d3915c437238ca057ddbecd193c6 (diff) |
util: enable S3TC support when the force_s3tc_enable env var is set to "true"
NOTE: This is a candidate for the 7.10 and 7.11 branches.
-rw-r--r-- | src/gallium/auxiliary/util/u_format_s3tc.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/util/u_format_s3tc.c b/src/gallium/auxiliary/util/u_format_s3tc.c index bb989c29d81..d8a7c0d453f 100644 --- a/src/gallium/auxiliary/util/u_format_s3tc.c +++ b/src/gallium/auxiliary/util/u_format_s3tc.c @@ -119,8 +119,15 @@ util_format_s3tc_init(void) library = util_dl_open(DXTN_LIBNAME); if (!library) { - debug_printf("couldn't open " DXTN_LIBNAME ", software DXTn " - "compression/decompression unavailable\n"); + if (getenv("force_s3tc_enable") && + !strcmp(getenv("force_s3tc_enable"), "true")) { + debug_printf("couldn't open " DXTN_LIBNAME ", enabling DXTn due to " + "force_s3tc_enable=true environment variable\n"); + util_format_s3tc_enabled = TRUE; + } else { + debug_printf("couldn't open " DXTN_LIBNAME ", software DXTn " + "compression/decompression unavailable\n"); + } return; } |