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.
11 #include "SlideShowPicture.h"
12 #include "guilib/GUIShaderDX.h"
14 #include <wrl/client.h>
18 class CSlideShowPicDX
: public CSlideShowPic
21 CSlideShowPicDX() = default;
22 ~CSlideShowPicDX() override
= default;
25 void Render(float* x
, float* y
, CTexture
* pTexture
, KODI::UTILS::COLOR::Color color
) override
;
28 bool UpdateVertexBuffer(Vertex
* vertices
);
30 Microsoft::WRL::ComPtr
<ID3D11Buffer
> m_vb
;