diff options
author | Dominik Drees <[email protected]> | 2019-04-15 11:05:46 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2019-04-17 22:16:19 +0000 |
commit | 829f278ad0042b0bb5026b10e7393fa3e11498b2 (patch) | |
tree | be70f2a88884faab0af3ec7c0bf6478929f75b11 /src/gallium/auxiliary/gallivm/lp_bld_debug.h | |
parent | ad6dc13fc70a9802be41c1b9bb9e3487adb7ca7f (diff) |
Add no_aos_sampling GALLIVM_PERF option
This forces using general sampling and should improve precision and
performance in some cases.
Diffstat (limited to 'src/gallium/auxiliary/gallivm/lp_bld_debug.h')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_debug.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.h b/src/gallium/auxiliary/gallivm/lp_bld_debug.h index eeef0d6ba61..406f628e158 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_debug.h +++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.h @@ -43,10 +43,11 @@ #define GALLIVM_DEBUG_GC (1 << 4) #define GALLIVM_DEBUG_DUMP_BC (1 << 5) -#define GALLIVM_PERF_NO_BRILINEAR (1 << 0) -#define GALLIVM_PERF_NO_RHO_APPROX (1 << 1) -#define GALLIVM_PERF_NO_QUAD_LOD (1 << 2) -#define GALLIVM_PERF_NO_OPT (1 << 3) +#define GALLIVM_PERF_NO_BRILINEAR (1 << 0) +#define GALLIVM_PERF_NO_RHO_APPROX (1 << 1) +#define GALLIVM_PERF_NO_QUAD_LOD (1 << 2) +#define GALLIVM_PERF_NO_OPT (1 << 3) +#define GALLIVM_PERF_NO_AOS_SAMPLING (1 << 4) #ifdef __cplusplus extern "C" { |