mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Remove not used parameter.
Change-Id: Ib0407bc479e60d1b164222bb2326a1987f8a94f1 Signed-off-by: Mrozek, Michal <michal.mrozek@intel.com>
This commit is contained in:

committed by
sys_ocldev

parent
db8cd0e575
commit
a5880f19af
@ -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;
|
||||
}
|
||||
|
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user