File: d3dx10tex.h

package info (click to toggle)
wine 4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 209,096 kB
  • sloc: ansic: 2,906,412; perl: 18,817; yacc: 15,629; makefile: 9,134; objc: 6,543; lex: 4,315; python: 1,786; cpp: 1,042; sh: 771; java: 742; xml: 557; awk: 69; cs: 17
file content (122 lines) | stat: -rw-r--r-- 4,013 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
 * Copyright 2016 Alistair Leslie-Hughes
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

#include "d3dx10.h"

#ifndef __D3DX10TEX_H__
#define __D3DX10TEX_H__

typedef enum D3DX10_FILTER_FLAG
{
    D3DX10_FILTER_NONE             = 0x00000001,
    D3DX10_FILTER_POINT            = 0x00000002,
    D3DX10_FILTER_LINEAR           = 0x00000003,
    D3DX10_FILTER_TRIANGLE         = 0x00000004,
    D3DX10_FILTER_BOX              = 0x00000005,

    D3DX10_FILTER_MIRROR_U         = 0x00010000,
    D3DX10_FILTER_MIRROR_V         = 0x00020000,
    D3DX10_FILTER_MIRROR_W         = 0x00040000,
    D3DX10_FILTER_MIRROR           = 0x00070000,

    D3DX10_FILTER_DITHER           = 0x00080000,
    D3DX10_FILTER_DITHER_DIFFUSION = 0x00100000,

    D3DX10_FILTER_SRGB_IN          = 0x00200000,
    D3DX10_FILTER_SRGB_OUT         = 0x00400000,
    D3DX10_FILTER_SRGB             = 0x00600000,
} D3DX10_FILTER_FLAG;

typedef enum D3DX10_IMAGE_FILE_FORMAT
{
    D3DX10_IFF_BMP         = 0,
    D3DX10_IFF_JPG         = 1,
    D3DX10_IFF_PNG         = 3,
    D3DX10_IFF_DDS         = 4,
    D3DX10_IFF_TIFF        = 10,
    D3DX10_IFF_GIF         = 11,
    D3DX10_IFF_WMP         = 12,
    D3DX10_IFF_FORCE_DWORD = 0x7fffffff
} D3DX10_IMAGE_FILE_FORMAT;

typedef struct D3DX10_IMAGE_INFO
{
    UINT                     Width;
    UINT                     Height;
    UINT                     Depth;
    UINT                     ArraySize;
    UINT                     MipLevels;
    UINT                     MiscFlags;
    DXGI_FORMAT              Format;
    D3D10_RESOURCE_DIMENSION ResourceDimension;
    D3DX10_IMAGE_FILE_FORMAT ImageFileFormat;
} D3DX10_IMAGE_INFO;

typedef struct D3DX10_IMAGE_LOAD_INFO
{
    UINT              Width;
    UINT              Height;
    UINT              Depth;
    UINT              FirstMipLevel;
    UINT              MipLevels;
    D3D10_USAGE       Usage;
    UINT              BindFlags;
    UINT              CpuAccessFlags;
    UINT              MiscFlags;
    DXGI_FORMAT       Format;
    UINT              Filter;
    UINT              MipFilter;
    D3DX10_IMAGE_INFO *pSrcInfo;

#ifdef __cplusplus
    D3DX10_IMAGE_LOAD_INFO()
    {
        Width          = D3DX10_DEFAULT;
        Height         = D3DX10_DEFAULT;
        Depth          = D3DX10_DEFAULT;
        FirstMipLevel  = D3DX10_DEFAULT;
        MipLevels      = D3DX10_DEFAULT;
        Usage          = (D3D10_USAGE)D3DX10_DEFAULT;
        BindFlags      = D3DX10_DEFAULT;
        CpuAccessFlags = D3DX10_DEFAULT;
        MiscFlags      = D3DX10_DEFAULT;
        Format         = DXGI_FORMAT_FROM_FILE;
        Filter         = D3DX10_DEFAULT;
        MipFilter      = D3DX10_DEFAULT;
        pSrcInfo       = NULL;
    }
#endif
} D3DX10_IMAGE_LOAD_INFO;

#ifdef __cplusplus
extern "C" {
#endif

HRESULT WINAPI D3DX10CreateTextureFromMemory(ID3D10Device *device, const void *src_data, SIZE_T src_data_size,
        D3DX10_IMAGE_LOAD_INFO *loadinfo, ID3DX10ThreadPump *pump, ID3D10Resource **texture, HRESULT *hresult);

HRESULT WINAPI D3DX10FilterTexture(ID3D10Resource *texture, UINT src_level, UINT filter);

HRESULT WINAPI D3DX10GetImageInfoFromMemory(const void *src_data, SIZE_T src_data_size, ID3DX10ThreadPump *pump,
        D3DX10_IMAGE_INFO *img_info, HRESULT *hresult);

#ifdef __cplusplus
}
#endif

#endif