1 /*
2 * Copyright (c) 2020, Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 */
22 //!
23 //! \file renderhal_g11_jsl_ehl.cpp
24 //! \brief implementation of Gen11 JSL and EHL hardware functions
25 //! \details Render functions
26 //!
27
28 #include "renderhal_g11_jsl_ehl.h"
29
30 #ifndef UNUSED
31 #define UNUSED(x) (void)(x)
32 #endif // UNUSED
33 //!
34 //! \brief Get PlaneDefinition for Format_Y216
35 //! \param [in] isRenderTarget
36 //! The flag to indicate if the surface is rendertarget or not
37 //! \param [in] pRenderHal
38 //! Pointer to Hardware Interface
39 //! \param RENDERHAL_PLANE_DEFINITION PlaneDefinition
40 //! [in,out] Pointer to PlaneDefinition
41 //! \return MOS_STATUS
42 //! MOS_STATUS_SUCCESS if success, else fail reason
43 //!
GetPlaneDefForFormatY216(bool isRenderTarget,PRENDERHAL_INTERFACE pRenderHal,RENDERHAL_PLANE_DEFINITION & PlaneDefinition)44 MOS_STATUS XRenderHal_Interface_g11_JslEhl::GetPlaneDefForFormatY216(
45 bool isRenderTarget,
46 PRENDERHAL_INTERFACE pRenderHal,
47 RENDERHAL_PLANE_DEFINITION& PlaneDefinition)
48 {
49 UNUSED(pRenderHal);
50
51 if (isRenderTarget)
52 {
53 PlaneDefinition = RENDERHAL_PLANES_Y210_RT;
54 }
55 else
56 {
57 PlaneDefinition = RENDERHAL_PLANES_Y210;
58 }
59
60 return MOS_STATUS_SUCCESS;
61 };
62