Files
compute-runtime/shared/source/gmm_helper/resource_info_drm.cpp
Neil R. Spruit 274c5043b9 fix: Set compression disabled when compression not allowed for a resource
Related-To: NEO-12375

Signed-off-by: Neil R. Spruit <neil.r.spruit@intel.com>
2025-08-14 08:31:19 +02:00

23 lines
443 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, bool compressionDenied) {
return 0u;
}
bool GmmResourceInfo::isResourceDenyCompressionEnabled() {
return false;
}
bool GmmResourceInfo::isDisplayable() const {
return false;
}
} // namespace NEO