From c04dcc2e7d834218ef2d4194331e383402495ae1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 20:07:22 +0200 Subject: Adding upstream version 2:20.4+dfsg. Signed-off-by: Daniel Baumann --- xbmc/guilib/GUITextureD3D.h | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 xbmc/guilib/GUITextureD3D.h (limited to 'xbmc/guilib/GUITextureD3D.h') diff --git a/xbmc/guilib/GUITextureD3D.h b/xbmc/guilib/GUITextureD3D.h new file mode 100644 index 0000000..a649f85 --- /dev/null +++ b/xbmc/guilib/GUITextureD3D.h @@ -0,0 +1,41 @@ +/* + * Copyright (C) 2005-2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#pragma once + +#include "GUITexture.h" +#include "utils/ColorUtils.h" + +class CGUITextureD3D : public CGUITexture +{ +public: + static void Register(); + static CGUITexture* CreateTexture( + float posX, float posY, float width, float height, const CTextureInfo& texture); + + static void DrawQuad(const CRect& coords, + UTILS::COLOR::Color color, + CTexture* texture = nullptr, + const CRect* texCoords = nullptr); + + CGUITextureD3D(float posX, float posY, float width, float height, const CTextureInfo& texture); + ~CGUITextureD3D() override = default; + + CGUITextureD3D* Clone() const override; + +protected: + void Begin(UTILS::COLOR::Color color); + void Draw(float *x, float *y, float *z, const CRect &texture, const CRect &diffuse, int orientation); + void End(); + +private: + CGUITextureD3D(const CGUITextureD3D& texture) = default; + + UTILS::COLOR::Color m_col; +}; + -- cgit v1.2.3