mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: I3fc55321f92d02419c4c04e6d1bc28b09b306c0f Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
27 lines
584 B
C++
27 lines
584 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/gen8/hw_cmds.h"
|
|
#include "runtime/mem_obj/image.h"
|
|
#include "runtime/mem_obj/image.inl"
|
|
|
|
#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
|