diff options
author | Kenneth Graunke <[email protected]> | 2017-03-21 14:46:39 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-03-30 11:16:34 -0700 |
commit | f5e5c0c1017d309684718804dbfac7f16518014e (patch) | |
tree | 567c91ffaf6422fe1fad6840b9bcfde6d434aae4 /src/mesa/drivers/dri/i965/intel_batchbuffer.c | |
parent | 3df993e1a22decc4732faf08a4d358cd90548e52 (diff) |
i965: Stop using legacy dri_bufmgr_* and intel_* names.
Eric renamed these from dri_bufmgr_* and intel_bufmgr_* to drm_intel_*
in libdrm commit 4b9826408f65976a1a13387beda748b65e03ec52, circa 2008,
but we've been using the legacy names this whole time.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/intel_batchbuffer.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_batchbuffer.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_batchbuffer.c b/src/mesa/drivers/dri/i965/intel_batchbuffer.c index 1599a2c2a53..4c3b7dcc411 100644 --- a/src/mesa/drivers/dri/i965/intel_batchbuffer.c +++ b/src/mesa/drivers/dri/i965/intel_batchbuffer.c @@ -39,7 +39,8 @@ #include <i915_drm.h> static void -intel_batchbuffer_reset(struct intel_batchbuffer *batch, dri_bufmgr *bufmgr, +intel_batchbuffer_reset(struct intel_batchbuffer *batch, + drm_intel_bufmgr *bufmgr, bool has_llc); static bool @@ -55,7 +56,8 @@ uint_key_hash(const void *key) } void -intel_batchbuffer_init(struct intel_batchbuffer *batch, dri_bufmgr *bufmgr, +intel_batchbuffer_init(struct intel_batchbuffer *batch, + drm_intel_bufmgr *bufmgr, bool has_llc) { intel_batchbuffer_reset(batch, bufmgr, has_llc); @@ -73,7 +75,8 @@ intel_batchbuffer_init(struct intel_batchbuffer *batch, dri_bufmgr *bufmgr, } static void -intel_batchbuffer_reset(struct intel_batchbuffer *batch, dri_bufmgr *bufmgr, +intel_batchbuffer_reset(struct intel_batchbuffer *batch, + drm_intel_bufmgr *bufmgr, bool has_llc) { if (batch->last_bo != NULL) { |