diff options
author | Iago Toral Quiroga <[email protected]> | 2014-04-08 09:27:18 +0200 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-04-08 00:29:59 -0700 |
commit | dff3439fef8690192bcc40108729da711fcf706b (patch) | |
tree | 401fff106a8fd228e9399e6982a7f056c02d8b47 | |
parent | 73f80c20f68cd30421c13da29d7d7801ed096101 (diff) |
i915: Fix build error.
is_power_of_two() is now provided by mesa so its definition must be removed
from the i915 driver code.
Reviewed-by: Kenneth Graunke <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i915/intel_context.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/i915/intel_context.h b/src/mesa/drivers/dri/i915/intel_context.h index 94960f6bc23..fccf821993d 100644 --- a/src/mesa/drivers/dri/i915/intel_context.h +++ b/src/mesa/drivers/dri/i915/intel_context.h @@ -504,12 +504,6 @@ intel_context(struct gl_context * ctx) return (struct intel_context *) ctx; } -static INLINE bool -is_power_of_two(uint32_t value) -{ - return (value & (value - 1)) == 0; -} - #ifdef __cplusplus } #endif |