mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
The argument is not anywhere yet, this is just a preparation step for future change. Change-Id: I5a441352cb5cf10d1a0ff31933041ff9521d0307 Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
20 lines
374 B
C++
20 lines
374 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/os_interface/windows/wddm_allocation.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
class MockWddmAllocation : public WddmAllocation {
|
|
public:
|
|
MockWddmAllocation() : WddmAllocation(nullptr, 0, nullptr, 0, nullptr, MemoryPool::MemoryNull, 1u) {
|
|
}
|
|
};
|
|
|
|
} // namespace OCLRT
|