Change the signature of MemoryManager::createGraphicsAllocation.

Change-Id: Ia82235ff2831fd5b3436d488a5946bb49d63ce91
This commit is contained in:
Piotr Fusik
2019-02-25 14:11:34 +01:00
committed by sys_ocldev
parent 0cf71414e2
commit 378bd28bab
17 changed files with 56 additions and 42 deletions

View File

@@ -140,7 +140,7 @@ int BufferObject::exec(uint32_t used, size_t startOffset, unsigned int flags, bo
return ret;
}
int BufferObject::pin(BufferObject *boToPin[], size_t numberOfBos, uint32_t drmContextId) {
int BufferObject::pin(BufferObject *const boToPin[], size_t numberOfBos, uint32_t drmContextId) {
drm_i915_gem_execbuffer2 execbuf = {};
StackVec<drm_i915_gem_exec_object2, maxFragmentsCount + 1> execObject;