mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-01 04:23:00 +08:00
- hw_info - hw_cmds - kmd_notify_properties - completion_stamp - bxml_generator_glue Related-To: NEO-3982 Change-Id: I3ed3ef81f42596f381e60c19250f6eb1296d47a4 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
30 lines
632 B
C++
30 lines
632 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/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 <>
|
|
void ImageHw<Family>::setMediaSurfaceRotation(void *) {}
|
|
|
|
template <>
|
|
void ImageHw<Family>::setSurfaceMemoryObjectControlStateIndexToMocsTable(void *, uint32_t) {}
|
|
|
|
template <>
|
|
void ImageHw<Family>::setMipTailStartLod(RENDER_SURFACE_STATE *surfaceState) {}
|
|
|
|
#include "runtime/mem_obj/image_factory_init.inl"
|
|
} // namespace NEO
|