diff options
author | Marek Olšák <marek.olsak@amd.com> | 2020-03-25 23:44:59 -0400 |
---|---|---|
committer | Marge Bot <eric+marge@anholt.net> | 2020-03-27 21:00:10 +0000 |
commit | 71646745002504302bcef51bdb438abbe66961fc (patch) | |
tree | 6f1aaa9b23d2c378be574922feffd5488c44d0a9 /src/gallium/drivers/i915 | |
parent | 013b65635f1db45650809d8d802436c1e9d009e3 (diff) |
util: don't include p_defines.h and u_pointer.h from gallium
It's a mess, but this is what I arrived at.
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4324>
Diffstat (limited to 'src/gallium/drivers/i915')
-rw-r--r-- | src/gallium/drivers/i915/i915_debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915/i915_debug.h b/src/gallium/drivers/i915/i915_debug.h index 0f12a592ae8..66290a84b62 100644 --- a/src/gallium/drivers/i915/i915_debug.h +++ b/src/gallium/drivers/i915/i915_debug.h @@ -48,7 +48,7 @@ struct i915_winsys_batchbuffer; extern unsigned i915_debug; #ifdef DEBUG -static inline boolean +static inline bool I915_DBG_ON(unsigned flags) { return i915_debug & flags; |