mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Change-Id: I13e5917a32a5cd894ee42a848407fe20bf1daa06 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
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; }
|