mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
iris: fix memzone_for_address since multibinder changes
This commit is contained in:
parent
f6924e2379
commit
1a61a211f0
1 changed files with 3 additions and 3 deletions
|
|
@ -259,12 +259,12 @@ memzone_for_address(uint64_t address)
|
|||
if (address > IRIS_MEMZONE_DYNAMIC_START)
|
||||
return IRIS_MEMZONE_DYNAMIC;
|
||||
|
||||
if (address > IRIS_MEMZONE_BINDER_START)
|
||||
return IRIS_MEMZONE_BINDER;
|
||||
|
||||
if (address > IRIS_MEMZONE_SURFACE_START)
|
||||
return IRIS_MEMZONE_SURFACE;
|
||||
|
||||
if (address > IRIS_MEMZONE_BINDER_START)
|
||||
return IRIS_MEMZONE_BINDER;
|
||||
|
||||
return IRIS_MEMZONE_SHADER;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue