1 /* 2 * Copyright (c) 2017-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_g9_glk.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_G9GLK_H__ 28 #define __VPHAL_RENDERER_G9GLK_H__ 29 30 #include "vphal_renderer_g9.h" 31 32 //! 33 //! \brief VPHAL renderer Gen9 class for GLK platform 34 //! 35 class VphalRendererG9Glk : public VphalRendererG9 36 { 37 public: 38 //! 39 //! \brief VphalRendererG9Glk constructor 40 //! \details Based on the HW and OS info, initialize the renderer interfaces 41 //! \param [in,out] 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 //! VphalRendererG9Glk(PRENDERHAL_INTERFACE pRenderHal,MOS_STATUS * pStatus)47 VphalRendererG9Glk( 48 PRENDERHAL_INTERFACE pRenderHal, 49 MOS_STATUS *pStatus) : 50 VphalRendererG9(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 //! ~VphalRendererG9Glk()62 ~VphalRendererG9Glk() 63 { 64 } 65 }; 66 67 #endif // __VPHAL_RENDERER_G9GLK_H__ 68