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.
unsigned long size,
unsigned int alignment)
{
- assert(alignment <= 4096);
return drm_intel_gem_bo_alloc_internal(bufmgr, name, size,
BO_ALLOC_FOR_RENDER);
}
unsigned long size,
unsigned int alignment)
{
- assert(alignment <= 4096);
return drm_intel_gem_bo_alloc_internal(bufmgr, name, size, 0);
}