1 /* 2 * Copyright (c) 2012-2018, 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 vphal_renderer_g11_icllp.h 24 //! \brief The header file of VPHAL top level rendering component 25 //! \details The top renderer is responsible for coordinating the sequence of calls to low level renderers, e.g. DNDI or Comp 26 //! 27 #ifndef __VPHAL_RENDERER_G11ICLLP_H__ 28 #define __VPHAL_RENDERER_G11ICLLP_H__ 29 30 #include "vphal_renderer_g11.h" 31 32 //! 33 //! \brief VPHAL renderer Gen11 class for ICL platform 34 //! 35 class VphalRendererG11Icllp : public VphalRendererG11 36 { 37 public: 38 //! 39 //! \brief VphalRendererG11Icllp constructor 40 //! \details Based on the HW and OS info, initialize the renderer interfaces 41 //! \param [in] pRenderHal 42 //! Pointer to RenderHal Interface Structure 43 //! \param [in,out] pStatus 44 //! Pointer to the MOS_STATUS flag. 45 //! Will assign this flag to MOS_STATUS_SUCCESS if successful, otherwise failed 46 //! VphalRendererG11Icllp(PRENDERHAL_INTERFACE pRenderHal,MOS_STATUS * pStatus)47 VphalRendererG11Icllp( 48 PRENDERHAL_INTERFACE pRenderHal, 49 MOS_STATUS *pStatus) : 50 VphalRendererG11(pRenderHal, pStatus) 51 { 52 } 53 54 //! 55 //! \brief VPHAL renderer destructor 56 //! \details Destory the resources allocated for the renderers 57 //! including VEBOX and Composite. 58 //! \param [in,out] VphalRenderer* pRenderer 59 //! VPHAL renderer pointer 60 //! \return VOID 61 //! ~VphalRendererG11Icllp()62 ~VphalRendererG11Icllp() 63 { 64 } 65 66 //! 67 //! \brief Initialize the KDLL parameters 68 //! \details Initialize the KDLL parameters 69 //! \return MOS_STATUS 70 //! 71 MOS_STATUS InitKdllParam(); 72 }; 73 74 #endif // __VPHAL_RENDER_G11ICLLP_H__ 75