2018-01-16 13:08:14 +01:00
|
|
|
/*
|
2019-02-28 12:23:13 +01:00
|
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
2018-01-16 13:08:14 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-01-16 13:08:14 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2019-12-03 14:43:03 +01:00
|
|
|
#
|
2018-06-21 11:36:47 +02:00
|
|
|
#include "runtime/gmm_helper/gmm.h"
|
2018-01-16 13:08:14 +01:00
|
|
|
#include "runtime/helpers/surface_formats.h"
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
using namespace NEO;
|
2018-06-29 11:48:19 +02:00
|
|
|
|
|
|
|
|
void Gmm::applyAuxFlagsForImage(ImageInfo &imgInfo) {}
|
|
|
|
|
void Gmm::applyAuxFlagsForBuffer(bool preferRenderCompression) {}
|
2018-08-02 18:24:59 +02:00
|
|
|
|
2019-02-28 16:12:23 +01:00
|
|
|
void Gmm::applyMemoryFlags(bool systemMemoryPool, StorageInfo &storageInfo) { this->useSystemMemoryPool = systemMemoryPool; }
|