18 lines
445 B
C++
18 lines
445 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#
|
|
#include "runtime/gmm_helper/gmm.h"
|
|
#include "runtime/helpers/surface_formats.h"
|
|
|
|
using namespace NEO;
|
|
|
|
void Gmm::applyAuxFlagsForImage(ImageInfo &imgInfo) {}
|
|
void Gmm::applyAuxFlagsForBuffer(bool preferRenderCompression) {}
|
|
|
|
void Gmm::applyMemoryFlags(bool systemMemoryPool, StorageInfo &storageInfo) { this->useSystemMemoryPool = systemMemoryPool; }
|