[Test] Added tests for CUtil::SplitParams
[xbmc.git] / xbmc / windowing / gbm / OptionalsReg.h
blobee459f6914c3c97f2a0fa5ceedd9b2028dd29427
1 /*
2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
12 //-----------------------------------------------------------------------------
13 // VAAPI
14 //-----------------------------------------------------------------------------
16 namespace KODI
18 namespace WINDOWING
20 namespace GBM
22 class CVaapiProxy;
24 CVaapiProxy* VaapiProxyCreate(int fd);
25 void VaapiProxyDelete(CVaapiProxy *proxy);
26 void VaapiProxyConfig(CVaapiProxy *proxy, void *eglDpy);
27 void VAAPIRegister(CVaapiProxy *winSystem, bool deepColor);
28 #if defined(HAS_GL)
29 void VAAPIRegisterRenderGL(CVaapiProxy* winSystem, bool& general, bool& deepColor);
30 #endif
31 #if defined(HAS_GLES)
32 void VAAPIRegisterRenderGLES(CVaapiProxy* winSystem, bool& general, bool& deepColor);
33 #endif