mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 09:58:55 +08:00
Related-To: NEO-3016 Change-Id: I851f5867f22a387a6af90a93f46d985211292375 Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
28 lines
572 B
C++
28 lines
572 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/mem_obj/image.h"
|
|
#include "runtime/mem_obj/image.inl"
|
|
|
|
#include "hw_cmds.h"
|
|
|
|
#include <map>
|
|
|
|
namespace NEO {
|
|
|
|
typedef BDWFamily Family;
|
|
static auto gfxCore = IGFX_GEN8_CORE;
|
|
|
|
template <typename GfxFamily>
|
|
void ImageHw<GfxFamily>::setMediaSurfaceRotation(void *) {}
|
|
|
|
template <typename GfxFamily>
|
|
void ImageHw<GfxFamily>::setSurfaceMemoryObjectControlStateIndexToMocsTable(void *, uint32_t) {}
|
|
|
|
#include "runtime/mem_obj/image_factory_init.inl"
|
|
} // namespace NEO
|