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>
This commit is contained in:
Neil R. Spruit
2025-08-11 18:44:14 +00:00
committed by Compute-Runtime-Automation
parent 6880014602
commit 274c5043b9
17 changed files with 455 additions and 7 deletions

View File

@@ -9,10 +9,14 @@
namespace NEO {
uint64_t GmmResourceInfo::getDriverProtectionBits(uint32_t overrideUsage) {
uint64_t GmmResourceInfo::getDriverProtectionBits(uint32_t overrideUsage, bool compressionDenied) {
return 0u;
}
bool GmmResourceInfo::isResourceDenyCompressionEnabled() {
return false;
}
bool GmmResourceInfo::isDisplayable() const {
return false;
}