mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: Ic8685e3711cec03d8f83d371fa7152ee095a47a0 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
45 lines
1.0 KiB
C++
45 lines
1.0 KiB
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "core/memory_manager/eviction_status.h"
|
|
#include "runtime/os_interface/windows/windows_defs.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace NEO {
|
|
|
|
namespace WddmMockHelpers {
|
|
struct CallResult {
|
|
uint32_t called = 0;
|
|
uint64_t uint64ParamPassed = -1;
|
|
bool success = false;
|
|
uint64_t commandBufferSubmitted = 0u;
|
|
void *commandHeaderSubmitted = nullptr;
|
|
void *cpuPtrPassed = nullptr;
|
|
};
|
|
struct MakeResidentCall : CallResult {
|
|
std::vector<D3DKMT_HANDLE> handlePack;
|
|
uint32_t handleCount = 0;
|
|
};
|
|
struct KmDafLockCall : CallResult {
|
|
std::vector<D3DKMT_HANDLE> lockedAllocations;
|
|
};
|
|
struct WaitFromCpuResult : CallResult {
|
|
const MonitoredFence *monitoredFence = nullptr;
|
|
};
|
|
struct FreeGpuVirtualAddressCall : CallResult {
|
|
uint64_t sizePassed = -1;
|
|
};
|
|
struct MemoryOperationResult : CallResult {
|
|
MemoryOperationsStatus operationSuccess = MemoryOperationsStatus::UNSUPPORTED;
|
|
};
|
|
} // namespace WddmMockHelpers
|
|
|
|
} // namespace NEO
|