Remove not used parameter.

Change-Id: Ib0407bc479e60d1b164222bb2326a1987f8a94f1
Signed-off-by: Mrozek, Michal <michal.mrozek@intel.com>
This commit is contained in:
Mrozek, Michal
2019-09-03 06:43:00 +02:00
committed by sys_ocldev
parent db8cd0e575
commit a5880f19af
2 changed files with 0 additions and 3 deletions

View File

@ -31,7 +31,6 @@ namespace NEO {
BufferObject::BufferObject(Drm *drm, int handle) : drm(drm), refCount(1), handle(handle), isReused(false) {
this->tiling_mode = I915_TILING_NONE;
this->stride = 0;
this->size = 0;
this->lockedAddress = nullptr;
}
@ -87,7 +86,6 @@ bool BufferObject::setTiling(uint32_t mode, uint32_t stride) {
}
this->tiling_mode = set_tiling.tiling_mode;
this->stride = set_tiling.stride;
return set_tiling.tiling_mode == mode;
}

View File

@ -59,7 +59,6 @@ class BufferObject {
//Tiling
uint32_t tiling_mode;
uint32_t stride;
MOCKABLE_VIRTUAL void fillExecObject(drm_i915_gem_exec_object2 &execObject, uint32_t drmContextId);