include: Add D3DX10_FILTER_FLAG type declaration.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Andrey Gusev 2016-06-16 00:00:48 +02:00 committed by Alexandre Julliard
parent 4d313e6475
commit ddf8478311
1 changed files with 21 additions and 0 deletions

View File

@ -19,6 +19,27 @@
#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,