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/gui3d.h | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 xbmc/guilib/gui3d.h (limited to 'xbmc/guilib/gui3d.h') diff --git a/xbmc/guilib/gui3d.h b/xbmc/guilib/gui3d.h new file mode 100644 index 0000000..f747336 --- /dev/null +++ b/xbmc/guilib/gui3d.h @@ -0,0 +1,44 @@ +/* + * 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 "PlatformDefs.h" // for TARGET_WINDOWS types + +#define GAMMA_RAMP_FLAG D3DSGR_CALIBRATE + +#define D3DFMT_LIN_A8R8G8B8 D3DFMT_A8R8G8B8 +#define D3DFMT_LIN_X8R8G8B8 D3DFMT_X8R8G8B8 +#define D3DFMT_LIN_L8 D3DFMT_L8 +#define D3DFMT_LIN_D16 D3DFMT_D16 +#define D3DFMT_LIN_A8 D3DFMT_A8 + +#define D3DPIXELSHADERDEF DWORD + +struct D3DTexture +{ + DWORD Common; + DWORD Data; + DWORD Lock; + + DWORD Format; // Format information about the texture. + DWORD Size; // Size of a non power-of-2 texture, must be zero otherwise +}; + +#define D3DCOMMON_TYPE_MASK 0x0070000 +#define D3DCOMMON_TYPE_TEXTURE 0x0040000 + +struct D3DPalette +{ + DWORD Common; + DWORD Data; + DWORD Lock; +}; + +typedef D3DPalette* LPDIRECT3DPALETTE8; + -- cgit v1.2.3