19 lines
317 B
C++
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
|