mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
i915: No longer rely on compatability define in intel_bufmgr.h
Symbol rename from dri_* to drm_intel_* introduced a number of compatability defines within intel_bufmgr.h. Replace the old function with the new function, consistent with the balance of this file. Signed-off-by: Rhys Kidd <rhyskidd@gmail.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
1256ab18c1
commit
996a397719
1 changed files with 1 additions and 1 deletions
|
|
@ -182,7 +182,7 @@ intel_region_alloc_for_handle(struct intel_screen *screen,
|
|||
int ret;
|
||||
uint32_t bit_6_swizzle, tiling;
|
||||
|
||||
buffer = intel_bo_gem_create_from_name(screen->bufmgr, name, handle);
|
||||
buffer = drm_intel_bo_gem_create_from_name(screen->bufmgr, name, handle);
|
||||
if (buffer == NULL)
|
||||
return NULL;
|
||||
ret = drm_intel_bo_get_tiling(buffer, &tiling, &bit_6_swizzle);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue