wined3d: Add D3DBASISTYPE to wined3d_types.h.

This commit is contained in:
Stefan Dösinger 2006-03-16 23:29:07 +01:00 committed by Alexandre Julliard
parent bcbf5f397e
commit 7870a5a6a1
1 changed files with 9 additions and 1 deletions

View File

@ -410,13 +410,21 @@ typedef enum _WINED3DTEXTURESTAGESTATETYPE {
#define WINED3D_HIGHEST_TEXTURE_STATE WINED3DTSS_CONSTANT
typedef enum _WINED3DBASISTYPE {
WINED3DBASIS_BEZIER = 0,
WINED3DBASIS_BSPLINE = 1,
WINED3DBASIS_INTERPOLATE = 2,
WINED3DBASIS_FORCE_DWORD = 0x7fffffff
} WINED3DBASISTYPE;
typedef struct _WINEDD3DRECTPATCH_INFO {
UINT StartVertexOffsetWidth;
UINT StartVertexOffsetHeight;
UINT Width;
UINT Height;
UINT Stride;
D3DBASISTYPE Basis;
WINED3DBASISTYPE Basis;
WINED3DDEGREETYPE Degree;
} WINED3DRECTPATCH_INFO;