Files
compute-runtime/shared/source/gmm_helper/resource_info_drm.cpp
Dominik Dabek c5c87ab6f9 fix: override for driver protection bits
Add product helper method, default no override.
Use single param. Usage unknown means no override.

Related-To: NEO-14482

Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
2025-05-19 12:36:23 +02:00

19 lines
339 B
C++

/*
* Copyright (C) 2021-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/gmm_helper/resource_info.h"
namespace NEO {
uint64_t GmmResourceInfo::getDriverProtectionBits(uint32_t overrideUsage) {
return 0u;
}
bool GmmResourceInfo::isDisplayable() const {
return false;
}
} // namespace NEO