wmvcore: Support IWMProfile in IWMSyncReader.
[wine.git] / include / d3dx10tex.h
blob0f92fd38e6e3549517774a52d28f633ad49c0a87
1 /*
2 * Copyright 2016 Alistair Leslie-Hughes
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "d3dx10.h"
21 #ifndef __D3DX10TEX_H__
22 #define __D3DX10TEX_H__
24 typedef enum D3DX10_FILTER_FLAG
26 D3DX10_FILTER_NONE = 0x00000001,
27 D3DX10_FILTER_POINT = 0x00000002,
28 D3DX10_FILTER_LINEAR = 0x00000003,
29 D3DX10_FILTER_TRIANGLE = 0x00000004,
30 D3DX10_FILTER_BOX = 0x00000005,
32 D3DX10_FILTER_MIRROR_U = 0x00010000,
33 D3DX10_FILTER_MIRROR_V = 0x00020000,
34 D3DX10_FILTER_MIRROR_W = 0x00040000,
35 D3DX10_FILTER_MIRROR = 0x00070000,
37 D3DX10_FILTER_DITHER = 0x00080000,
38 D3DX10_FILTER_DITHER_DIFFUSION = 0x00100000,
40 D3DX10_FILTER_SRGB_IN = 0x00200000,
41 D3DX10_FILTER_SRGB_OUT = 0x00400000,
42 D3DX10_FILTER_SRGB = 0x00600000,
43 } D3DX10_FILTER_FLAG;
45 typedef enum D3DX10_IMAGE_FILE_FORMAT
47 D3DX10_IFF_BMP = 0,
48 D3DX10_IFF_JPG = 1,
49 D3DX10_IFF_PNG = 3,
50 D3DX10_IFF_DDS = 4,
51 D3DX10_IFF_TIFF = 10,
52 D3DX10_IFF_GIF = 11,
53 D3DX10_IFF_WMP = 12,
54 D3DX10_IFF_FORCE_DWORD = 0x7fffffff
55 } D3DX10_IMAGE_FILE_FORMAT;
57 typedef struct D3DX10_IMAGE_INFO
59 UINT Width;
60 UINT Height;
61 UINT Depth;
62 UINT ArraySize;
63 UINT MipLevels;
64 UINT MiscFlags;
65 DXGI_FORMAT Format;
66 D3D10_RESOURCE_DIMENSION ResourceDimension;
67 D3DX10_IMAGE_FILE_FORMAT ImageFileFormat;
68 } D3DX10_IMAGE_INFO;
70 typedef struct D3DX10_IMAGE_LOAD_INFO
72 UINT Width;
73 UINT Height;
74 UINT Depth;
75 UINT FirstMipLevel;
76 UINT MipLevels;
77 D3D10_USAGE Usage;
78 UINT BindFlags;
79 UINT CpuAccessFlags;
80 UINT MiscFlags;
81 DXGI_FORMAT Format;
82 UINT Filter;
83 UINT MipFilter;
84 D3DX10_IMAGE_INFO *pSrcInfo;
86 #ifdef __cplusplus
87 D3DX10_IMAGE_LOAD_INFO()
89 Width = D3DX10_DEFAULT;
90 Height = D3DX10_DEFAULT;
91 Depth = D3DX10_DEFAULT;
92 FirstMipLevel = D3DX10_DEFAULT;
93 MipLevels = D3DX10_DEFAULT;
94 Usage = (D3D10_USAGE)D3DX10_DEFAULT;
95 BindFlags = D3DX10_DEFAULT;
96 CpuAccessFlags = D3DX10_DEFAULT;
97 MiscFlags = D3DX10_DEFAULT;
98 Format = DXGI_FORMAT_FROM_FILE;
99 Filter = D3DX10_DEFAULT;
100 MipFilter = D3DX10_DEFAULT;
101 pSrcInfo = NULL;
103 #endif
104 } D3DX10_IMAGE_LOAD_INFO;
106 typedef struct _D3DX10_TEXTURE_LOAD_INFO
108 D3D10_BOX *pSrcBox;
109 D3D10_BOX *pDstBox;
110 UINT SrcFirstMip;
111 UINT DstFirstMip;
112 UINT NumMips;
113 UINT SrcFirstElement;
114 UINT DstFirstElement;
115 UINT NumElements;
116 UINT Filter;
117 UINT MipFilter;
119 #ifdef __cplusplus
120 _D3DX10_TEXTURE_LOAD_INFO()
122 pSrcBox = NULL;
123 pDstBox = NULL;
124 SrcFirstMip = 0;
125 DstFirstMip = 0;
126 NumMips = D3DX10_DEFAULT;
127 SrcFirstElement = 0;
128 DstFirstElement = 0;
129 NumElements = D3DX10_DEFAULT;
130 Filter = D3DX10_DEFAULT;
131 MipFilter = D3DX10_DEFAULT;
133 #endif
134 } D3DX10_TEXTURE_LOAD_INFO;
136 #ifdef __cplusplus
137 extern "C" {
138 #endif
140 HRESULT WINAPI D3DX10CreateTextureFromMemory(ID3D10Device *device, const void *src_data, SIZE_T src_data_size,
141 D3DX10_IMAGE_LOAD_INFO *loadinfo, ID3DX10ThreadPump *pump, ID3D10Resource **texture, HRESULT *hresult);
142 HRESULT WINAPI D3DX10FilterTexture(ID3D10Resource *texture, UINT src_level, UINT filter);
144 HRESULT WINAPI D3DX10GetImageInfoFromFileA(const char *src_file, ID3DX10ThreadPump *pump, D3DX10_IMAGE_INFO *info,
145 HRESULT *result);
146 HRESULT WINAPI D3DX10GetImageInfoFromFileW(const WCHAR *src_file, ID3DX10ThreadPump *pump, D3DX10_IMAGE_INFO *info,
147 HRESULT *result);
148 #define D3DX10GetImageInfoFromFile WINELIB_NAME_AW(D3DX10GetImageInfoFromFile)
150 HRESULT WINAPI D3DX10GetImageInfoFromResourceA(HMODULE module, const char *resource, ID3DX10ThreadPump *pump,
151 D3DX10_IMAGE_INFO *info, HRESULT *result);
152 HRESULT WINAPI D3DX10GetImageInfoFromResourceW(HMODULE module, const WCHAR *resource, ID3DX10ThreadPump *pump,
153 D3DX10_IMAGE_INFO *info, HRESULT *result);
154 #define D3DX10GetImageInfoFromResource WINELIB_NAME_AW(D3DX10GetImageInfoFromResource)
156 HRESULT WINAPI D3DX10GetImageInfoFromMemory(const void *src_data, SIZE_T src_data_size, ID3DX10ThreadPump *pump,
157 D3DX10_IMAGE_INFO *img_info, HRESULT *hresult);
159 HRESULT WINAPI D3DX10LoadTextureFromTexture(ID3D10Resource *src_texture, D3DX10_TEXTURE_LOAD_INFO *load_info,
160 ID3D10Resource *dst_texture);
162 #ifdef __cplusplus
164 #endif
166 #endif