mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Related-To: NEO-4138 Change-Id: Ib7aecb1531cebbe34abb5c8e57067464726e9009 Signed-off-by: Konstanty Misiak <konstanty.misiak@intel.com>
18 lines
443 B
C++
18 lines
443 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#
|
|
#include "core/gmm_helper/gmm.h"
|
|
#include "core/helpers/surface_format_info.h"
|
|
|
|
using namespace NEO;
|
|
|
|
void Gmm::applyAuxFlagsForImage(ImageInfo &imgInfo) {}
|
|
void Gmm::applyAuxFlagsForBuffer(bool preferRenderCompression) {}
|
|
|
|
void Gmm::applyMemoryFlags(bool systemMemoryPool, StorageInfo &storageInfo) { this->useSystemMemoryPool = systemMemoryPool; }
|