Files
compute-runtime/shared/source/gmm_helper/resource_info_wddm.cpp
Dominik Dabek 76e8be5c39 fix(ocl): handle gl sharing displayable textures
Displayable textures always need dc flush.

Related-To: NEO-11694

Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
2024-06-27 13:43:20 +02:00

19 lines
317 B
C++

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