intel: Remove the asserts about the ignored alignment parameter.
I slipped it in with the alloc_tiled changes, since we were explicitly throwing the parameter away. It caught some bogus released code, which we've now fixed, so remove the asserts to keep old drivers working.main
parent
3a7dfcdfaf
commit
9764061ab1
|
@ -545,7 +545,6 @@ drm_intel_gem_bo_alloc_for_render(drm_intel_bufmgr *bufmgr,
|
|||
unsigned long size,
|
||||
unsigned int alignment)
|
||||
{
|
||||
assert(alignment <= 4096);
|
||||
return drm_intel_gem_bo_alloc_internal(bufmgr, name, size,
|
||||
BO_ALLOC_FOR_RENDER);
|
||||
}
|
||||
|
@ -556,7 +555,6 @@ drm_intel_gem_bo_alloc(drm_intel_bufmgr *bufmgr,
|
|||
unsigned long size,
|
||||
unsigned int alignment)
|
||||
{
|
||||
assert(alignment <= 4096);
|
||||
return drm_intel_gem_bo_alloc_internal(bufmgr, name, size, 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue