/* * Copyright (C) 2020-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/command_container/command_encoder.h" #include "shared/source/gen9/hw_cmds_base.h" #include "shared/source/gen9/reg_configs.h" using Family = NEO::SKLFamily; #include "shared/source/command_container/command_encoder.inl" #include "shared/source/command_container/command_encoder_bdw_plus.inl" #include "shared/source/command_container/encode_compute_mode_bdw_plus.inl" #include "shared/source/command_container/image_surface_state/compression_params_bdw_plus.inl" namespace NEO { template <> void EncodeSurfaceState::setAuxParamsForMCSCCS(R_SURFACE_STATE *surfaceState) { } template <> void EncodeSurfaceState::setClearColorParams(R_SURFACE_STATE *surfaceState, Gmm *gmm) { } template <> void EncodeSurfaceState::setFlagsForMediaCompression(R_SURFACE_STATE *surfaceState, Gmm *gmm) { if (gmm->gmmResourceInfo->getResourceFlags()->Info.MediaCompressed) { surfaceState->setAuxiliarySurfaceMode(Family::RENDER_SURFACE_STATE::AUXILIARY_SURFACE_MODE::AUXILIARY_SURFACE_MODE_AUX_NONE); } } template struct EncodeDispatchKernel; template struct EncodeStates; template struct EncodeMath; template struct EncodeMathMMIO; template struct EncodeIndirectParams; template struct EncodeSetMMIO; template struct EncodeL3State; template struct EncodeMediaInterfaceDescriptorLoad; template struct EncodeStateBaseAddress; template struct EncodeStoreMMIO; template struct EncodeSurfaceState; template struct EncodeAtomic; template struct EncodeSempahore; template struct EncodeBatchBufferStartOrEnd; template struct EncodeMiFlushDW; template struct EncodeMemoryPrefetch; template struct EncodeWA; template struct EncodeMiArbCheck; template struct EncodeComputeMode; template struct EncodeEnableRayTracing; } // namespace NEO