annotate win32/directx/d3d9types.d @ 1:4a9dcbd9e54f

-files of 0.13 beta -fixes so that it now compiles with the current dmd version
author marton@basel.hu
date Tue, 05 Apr 2011 20:44:01 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1 /*==========================================================================;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
2 *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
3 * Copyright (C) Microsoft Corporation. All Rights Reserved.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
4 *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
5 * File: d3d9types.h
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
6 * Content: Direct3D capabilities include file
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
7 *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
8 ***************************************************************************/
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
9
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
10 module win32.directx.d3d9types;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
11
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
12 private import win32.windows;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
13
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
14 // Alignment compatibility
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
15 align(4):
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
16
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
17 // D3DCOLOR is equivalent to D3DFMT_A8R8G8B8
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
18 typedef uint D3DCOLOR;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
19
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
20 // maps unsigned 8 bits/channel to D3DCOLOR
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
21 D3DCOLOR D3DCOLOR_ARGB(ubyte a,ubyte r,ubyte g,ubyte b) { return cast(D3DCOLOR)((a<<24)|(r<<16)|(g<<8)|b); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
22 D3DCOLOR D3DCOLOR_RGBA(ubyte r,ubyte g,ubyte b,ubyte a) { return D3DCOLOR_ARGB(a,r,g,b); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
23 D3DCOLOR D3DCOLOR_XRGB(ubyte r,ubyte g,ubyte b) { return D3DCOLOR_ARGB(0xff,r,g,b); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
24
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
25 D3DCOLOR D3DCOLOR_XYUV(ubyte y, ubyte u, ubyte v) { return D3DCOLOR_ARGB(0xff,y,u,v); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
26 D3DCOLOR D3DCOLOR_AYUV( ubyte a, ubyte y, ubyte u, ubyte v) { return D3DCOLOR_ARGB(a,y,u,v); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
27
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
28 // maps floating point channels (0.f to 1.f range) to D3DCOLOR
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
29 D3DCOLOR D3DCOLOR_COLORVALUE(float r, float g, float b, float a) { return D3DCOLOR_RGBA(cast(ubyte)(r*255.0f),cast(ubyte)(g*255.0f),cast(ubyte)(b*255.0f),cast(ubyte)(a*255.0f)); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
30
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
31 struct D3DVECTOR {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
32 float x;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
33 float y;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
34 float z;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
35 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
36
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
37 struct D3DCOLORVALUE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
38 float r;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
39 float g;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
40 float b;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
41 float a;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
42 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
43
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
44 struct D3DRECT {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
45 LONG x1;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
46 LONG y1;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
47 LONG x2;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
48 LONG y2;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
49 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
50
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
51 struct D3DMATRIX {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
52 union {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
53 struct {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
54 float _11, _12, _13, _14;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
55 float _21, _22, _23, _24;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
56 float _31, _32, _33, _34;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
57 float _41, _42, _43, _44;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
58 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
59 float[4][4] m;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
60 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
61 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
62
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
63 struct D3DVIEWPORT9 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
64 uint X;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
65 uint Y; /* Viewport Top left */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
66 uint Width;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
67 uint Height; /* Viewport Dimensions */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
68 float MinZ; /* Min/max of clip Volume */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
69 float MaxZ;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
70 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
71
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
72 /*
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
73 * Values for clip fields.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
74 */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
75
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
76 // Max number of user clipping planes, supported in D3D.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
77 const D3DMAXUSERCLIPPLANES = 32;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
78
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
79 // These bits could be ORed together to use with D3DRS_CLIPPLANEENABLE
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
80 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
81 const D3DCLIPPLANE0 = (1<<0);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
82 const D3DCLIPPLANE1 = (1<<1);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
83 const D3DCLIPPLANE2 = (1<<2);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
84 const D3DCLIPPLANE3 = (1<<3);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
85 const D3DCLIPPLANE4 = (1<<4);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
86 const D3DCLIPPLANE5 = (1<<5);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
87
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
88 // The following bits are used in the ClipUnion and ClipIntersection
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
89 // members of the D3DCLIPSTATUS9
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
90 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
91
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
92 const D3DCS_LEFT = 0x00000001L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
93 const D3DCS_RIGHT = 0x00000002L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
94 const D3DCS_TOP = 0x00000004L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
95 const D3DCS_BOTTOM = 0x00000008L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
96 const D3DCS_FRONT = 0x00000010L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
97 const D3DCS_BACK = 0x00000020L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
98 const D3DCS_PLANE0 = 0x00000040L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
99 const D3DCS_PLANE1 = 0x00000080L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
100 const D3DCS_PLANE2 = 0x00000100L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
101 const D3DCS_PLANE3 = 0x00000200L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
102 const D3DCS_PLANE4 = 0x00000400L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
103 const D3DCS_PLANE5 = 0x00000800L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
104
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
105 const D3DCS_ALL = D3DCS_LEFT |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
106 D3DCS_RIGHT |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
107 D3DCS_TOP |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
108 D3DCS_BOTTOM |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
109 D3DCS_FRONT |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
110 D3DCS_BACK |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
111 D3DCS_PLANE0 |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
112 D3DCS_PLANE1 |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
113 D3DCS_PLANE2 |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
114 D3DCS_PLANE3 |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
115 D3DCS_PLANE4 |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
116 D3DCS_PLANE5;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
117
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
118 struct D3DCLIPSTATUS9 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
119 uint ClipUnion;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
120 uint ClipIntersection;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
121 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
122
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
123 struct D3DMATERIAL9 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
124 D3DCOLORVALUE Diffuse; /* Diffuse color RGBA */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
125 D3DCOLORVALUE Ambient; /* Ambient color RGB */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
126 D3DCOLORVALUE Specular; /* Specular 'shininess' */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
127 D3DCOLORVALUE Emissive; /* Emissive color RGB */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
128 float Power; /* Sharpness if specular highlight */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
129 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
130
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
131 enum : uint {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
132 D3DLIGHT_POINT = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
133 D3DLIGHT_SPOT = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
134 D3DLIGHT_DIRECTIONAL = 3
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
135 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
136 typedef uint D3DLIGHTTYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
137
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
138 struct D3DLIGHT9 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
139 D3DLIGHTTYPE Type; /* Type of light source */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
140 D3DCOLORVALUE Diffuse; /* Diffuse color of light */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
141 D3DCOLORVALUE Specular; /* Specular color of light */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
142 D3DCOLORVALUE Ambient; /* Ambient color of light */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
143 D3DVECTOR Position; /* Position in world space */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
144 D3DVECTOR Direction; /* Direction in world space */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
145 float Range; /* Cutoff range */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
146 float Falloff; /* Falloff */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
147 float Attenuation0; /* Constant attenuation */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
148 float Attenuation1; /* Linear attenuation */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
149 float Attenuation2; /* Quadratic attenuation */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
150 float Theta; /* Inner angle of spotlight cone */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
151 float Phi; /* Outer angle of spotlight cone */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
152 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
153
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
154 /*
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
155 * Options for clearing
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
156 */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
157 const D3DCLEAR_TARGET = 0x00000001L; /* Clear target surface */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
158 const D3DCLEAR_ZBUFFER = 0x00000002L; /* Clear target z buffer */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
159 const D3DCLEAR_STENCIL = 0x00000004L; /* Clear stencil planes */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
160
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
161 /*
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
162 * The following defines the rendering states
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
163 */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
164
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
165 enum : D3DSHADEMODE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
166 D3DSHADE_FLAT = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
167 D3DSHADE_GOURAUD = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
168 D3DSHADE_PHONG = 3
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
169 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
170 typedef uint D3DSHADEMODE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
171
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
172 enum : D3DFILLMODE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
173 D3DFILL_POINT = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
174 D3DFILL_WIREFRAME = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
175 D3DFILL_SOLID = 3
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
176 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
177 typedef uint D3DFILLMODE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
178
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
179 enum : D3DBLEND {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
180 D3DBLEND_ZERO = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
181 D3DBLEND_ONE = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
182 D3DBLEND_SRCCOLOR = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
183 D3DBLEND_INVSRCCOLOR = 4,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
184 D3DBLEND_SRCALPHA = 5,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
185 D3DBLEND_INVSRCALPHA = 6,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
186 D3DBLEND_DESTALPHA = 7,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
187 D3DBLEND_INVDESTALPHA = 8,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
188 D3DBLEND_DESTCOLOR = 9,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
189 D3DBLEND_INVDESTCOLOR = 10,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
190 D3DBLEND_SRCALPHASAT = 11,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
191 D3DBLEND_BOTHSRCALPHA = 12,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
192 D3DBLEND_BOTHINVSRCALPHA = 13,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
193 D3DBLEND_BLENDFACTOR = 14, /* Only supported if D3DPBLENDCAPS_BLENDFACTOR is on */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
194 D3DBLEND_INVBLENDFACTOR = 15, /* Only supported if D3DPBLENDCAPS_BLENDFACTOR is on */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
195 D3DBLEND_SRCCOLOR2 = 16,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
196 D3DBLEND_INVSRCCOLOR2 = 17
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
197 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
198 typedef uint D3DBLEND;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
199
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
200 enum : D3DBLENDOP {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
201 D3DBLENDOP_ADD = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
202 D3DBLENDOP_SUBTRACT = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
203 D3DBLENDOP_REVSUBTRACT = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
204 D3DBLENDOP_MIN = 4,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
205 D3DBLENDOP_MAX = 5
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
206 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
207 typedef uint D3DBLENDOP;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
208
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
209 enum : D3DTEXTUREADDRESS {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
210 D3DTADDRESS_WRAP = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
211 D3DTADDRESS_MIRROR = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
212 D3DTADDRESS_CLAMP = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
213 D3DTADDRESS_BORDER = 4,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
214 D3DTADDRESS_MIRRORONCE = 5
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
215 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
216 typedef uint D3DTEXTUREADDRESS;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
217
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
218 enum : D3DCULL {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
219 D3DCULL_NONE = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
220 D3DCULL_CW = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
221 D3DCULL_CCW = 3
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
222 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
223 typedef uint D3DCULL;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
224
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
225 enum : D3DCMPFUNC {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
226 D3DCMP_NEVER = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
227 D3DCMP_LESS = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
228 D3DCMP_EQUAL = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
229 D3DCMP_LESSEQUAL = 4,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
230 D3DCMP_GREATER = 5,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
231 D3DCMP_NOTEQUAL = 6,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
232 D3DCMP_GREATEREQUAL = 7,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
233 D3DCMP_ALWAYS = 8
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
234 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
235 typedef uint D3DCMPFUNC;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
236
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
237 enum : D3DSTENCILOP {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
238 D3DSTENCILOP_KEEP = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
239 D3DSTENCILOP_ZERO = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
240 D3DSTENCILOP_REPLACE = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
241 D3DSTENCILOP_INCRSAT = 4,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
242 D3DSTENCILOP_DECRSAT = 5,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
243 D3DSTENCILOP_INVERT = 6,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
244 D3DSTENCILOP_INCR = 7,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
245 D3DSTENCILOP_DECR = 8
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
246 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
247 typedef uint D3DSTENCILOP;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
248
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
249 enum : D3DFOGMODE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
250 D3DFOG_NONE = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
251 D3DFOG_EXP = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
252 D3DFOG_EXP2 = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
253 D3DFOG_LINEAR = 3
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
254 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
255 typedef uint D3DFOGMODE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
256
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
257 enum : D3DZBUFFERTYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
258 D3DZB_FALSE = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
259 D3DZB_TRUE = 1, // Z buffering
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
260 D3DZB_USEW = 2 // W buffering
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
261 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
262 typedef uint D3DZBUFFERTYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
263
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
264 // Primitives supported by draw-primitive API
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
265 enum : D3DPRIMITIVETYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
266 D3DPT_POINTLIST = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
267 D3DPT_LINELIST = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
268 D3DPT_LINESTRIP = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
269 D3DPT_TRIANGLELIST = 4,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
270 D3DPT_TRIANGLESTRIP = 5,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
271 D3DPT_TRIANGLEFAN = 6
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
272 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
273 typedef uint D3DPRIMITIVETYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
274
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
275 D3DTRANSFORMSTATETYPE D3DTS_WORLDMATRIX(uint index) { return cast(D3DTRANSFORMSTATETYPE)(index + 256); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
276 template T_D3DTS_WORLDMATRIX(uint index) {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
277 const D3DTRANSFORMSTATETYPE T_D3DTS_WORLDMATRIX = index + 256;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
278 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
279
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
280 enum : D3DTRANSFORMSTATETYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
281 D3DTS_VIEW = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
282 D3DTS_PROJECTION = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
283 D3DTS_TEXTURE0 = 16,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
284 D3DTS_TEXTURE1 = 17,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
285 D3DTS_TEXTURE2 = 18,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
286 D3DTS_TEXTURE3 = 19,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
287 D3DTS_TEXTURE4 = 20,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
288 D3DTS_TEXTURE5 = 21,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
289 D3DTS_TEXTURE6 = 22,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
290 D3DTS_TEXTURE7 = 23,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
291 D3DTS_WORLD = T_D3DTS_WORLDMATRIX!(0),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
292 D3DTS_WORLD1 = T_D3DTS_WORLDMATRIX!(1),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
293 D3DTS_WORLD2 = T_D3DTS_WORLDMATRIX!(2),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
294 D3DTS_WORLD3 = T_D3DTS_WORLDMATRIX!(3)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
295 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
296 typedef uint D3DTRANSFORMSTATETYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
297
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
298 enum : D3DRENDERSTATETYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
299 D3DRS_ZENABLE = 7, /* D3DZBUFFERTYPE (or TRUE/FALSE for legacy) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
300 D3DRS_FILLMODE = 8, /* D3DFILLMODE */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
301 D3DRS_SHADEMODE = 9, /* D3DSHADEMODE */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
302 D3DRS_ZWRITEENABLE = 14, /* TRUE to enable z writes */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
303 D3DRS_ALPHATESTENABLE = 15, /* TRUE to enable alpha tests */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
304 D3DRS_LASTPIXEL = 16, /* TRUE for last-pixel on lines */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
305 D3DRS_SRCBLEND = 19, /* D3DBLEND */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
306 D3DRS_DESTBLEND = 20, /* D3DBLEND */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
307 D3DRS_CULLMODE = 22, /* D3DCULL */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
308 D3DRS_ZFUNC = 23, /* D3DCMPFUNC */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
309 D3DRS_ALPHAREF = 24, /* D3DFIXED */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
310 D3DRS_ALPHAFUNC = 25, /* D3DCMPFUNC */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
311 D3DRS_DITHERENABLE = 26, /* TRUE to enable dithering */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
312 D3DRS_ALPHABLENDENABLE = 27, /* TRUE to enable alpha blending */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
313 D3DRS_FOGENABLE = 28, /* TRUE to enable fog blending */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
314 D3DRS_SPECULARENABLE = 29, /* TRUE to enable specular */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
315 D3DRS_FOGCOLOR = 34, /* D3DCOLOR */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
316 D3DRS_FOGTABLEMODE = 35, /* D3DFOGMODE */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
317 D3DRS_FOGSTART = 36, /* Fog start (for both vertex and pixel fog) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
318 D3DRS_FOGEND = 37, /* Fog end */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
319 D3DRS_FOGDENSITY = 38, /* Fog density */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
320 D3DRS_RANGEFOGENABLE = 48, /* Enables range-based fog */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
321 D3DRS_STENCILENABLE = 52, /* BOOL enable/disable stenciling */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
322 D3DRS_STENCILFAIL = 53, /* D3DSTENCILOP to do if stencil test fails */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
323 D3DRS_STENCILZFAIL = 54, /* D3DSTENCILOP to do if stencil test passes and Z test fails */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
324 D3DRS_STENCILPASS = 55, /* D3DSTENCILOP to do if both stencil and Z tests pass */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
325 D3DRS_STENCILFUNC = 56, /* D3DCMPFUNC fn. Stencil Test passes if ((ref & mask) stencilfn (stencil & mask)) is true */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
326 D3DRS_STENCILREF = 57, /* Reference value used in stencil test */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
327 D3DRS_STENCILMASK = 58, /* Mask value used in stencil test */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
328 D3DRS_STENCILWRITEMASK = 59, /* Write mask applied to values written to stencil buffer */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
329 D3DRS_TEXTUREFACTOR = 60, /* D3DCOLOR used for multi-texture blend */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
330 D3DRS_WRAP0 = 128, /* wrap for 1st texture coord. set */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
331 D3DRS_WRAP1 = 129, /* wrap for 2nd texture coord. set */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
332 D3DRS_WRAP2 = 130, /* wrap for 3rd texture coord. set */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
333 D3DRS_WRAP3 = 131, /* wrap for 4th texture coord. set */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
334 D3DRS_WRAP4 = 132, /* wrap for 5th texture coord. set */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
335 D3DRS_WRAP5 = 133, /* wrap for 6th texture coord. set */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
336 D3DRS_WRAP6 = 134, /* wrap for 7th texture coord. set */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
337 D3DRS_WRAP7 = 135, /* wrap for 8th texture coord. set */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
338 D3DRS_CLIPPING = 136,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
339 D3DRS_LIGHTING = 137,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
340 D3DRS_AMBIENT = 139,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
341 D3DRS_FOGVERTEXMODE = 140,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
342 D3DRS_COLORVERTEX = 141,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
343 D3DRS_LOCALVIEWER = 142,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
344 D3DRS_NORMALIZENORMALS = 143,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
345 D3DRS_DIFFUSEMATERIALSOURCE = 145,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
346 D3DRS_SPECULARMATERIALSOURCE = 146,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
347 D3DRS_AMBIENTMATERIALSOURCE = 147,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
348 D3DRS_EMISSIVEMATERIALSOURCE = 148,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
349 D3DRS_VERTEXBLEND = 151,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
350 D3DRS_CLIPPLANEENABLE = 152,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
351 D3DRS_POINTSIZE = 154, /* float point size */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
352 D3DRS_POINTSIZE_MIN = 155, /* float point size min threshold */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
353 D3DRS_POINTSPRITEENABLE = 156, /* BOOL point texture coord control */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
354 D3DRS_POINTSCALEENABLE = 157, /* BOOL point size scale enable */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
355 D3DRS_POINTSCALE_A = 158, /* float point attenuation A value */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
356 D3DRS_POINTSCALE_B = 159, /* float point attenuation B value */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
357 D3DRS_POINTSCALE_C = 160, /* float point attenuation C value */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
358 D3DRS_MULTISAMPLEANTIALIAS = 161, // BOOL - set to do FSAA with multisample buffer
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
359 D3DRS_MULTISAMPLEMASK = 162, // DWORD - per-sample enable/disable
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
360 D3DRS_PATCHEDGESTYLE = 163, // Sets whether patch edges will use float style tessellation
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
361 D3DRS_DEBUGMONITORTOKEN = 165, // DEBUG ONLY - token to debug monitor
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
362 D3DRS_POINTSIZE_MAX = 166, /* float point size max threshold */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
363 D3DRS_INDEXEDVERTEXBLENDENABLE = 167,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
364 D3DRS_COLORWRITEENABLE = 168, // per-channel write enable
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
365 D3DRS_TWEENFACTOR = 170, // float tween factor
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
366 D3DRS_BLENDOP = 171, // D3DBLENDOP setting
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
367 D3DRS_POSITIONDEGREE = 172, // NPatch position interpolation degree. D3DDEGREE_LINEAR or D3DDEGREE_CUBIC (default)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
368 D3DRS_NORMALDEGREE = 173, // NPatch normal interpolation degree. D3DDEGREE_LINEAR (default) or D3DDEGREE_QUADRATIC
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
369 D3DRS_SCISSORTESTENABLE = 174,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
370 D3DRS_SLOPESCALEDEPTHBIAS = 175,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
371 D3DRS_ANTIALIASEDLINEENABLE = 176,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
372 D3DRS_MINTESSELLATIONLEVEL = 178,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
373 D3DRS_MAXTESSELLATIONLEVEL = 179,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
374 D3DRS_ADAPTIVETESS_X = 180,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
375 D3DRS_ADAPTIVETESS_Y = 181,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
376 D3DRS_ADAPTIVETESS_Z = 182,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
377 D3DRS_ADAPTIVETESS_W = 183,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
378 D3DRS_ENABLEADAPTIVETESSELLATION = 184,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
379 D3DRS_TWOSIDEDSTENCILMODE = 185, /* BOOL enable/disable 2 sided stenciling */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
380 D3DRS_CCW_STENCILFAIL = 186, /* D3DSTENCILOP to do if ccw stencil test fails */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
381 D3DRS_CCW_STENCILZFAIL = 187, /* D3DSTENCILOP to do if ccw stencil test passes and Z test fails */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
382 D3DRS_CCW_STENCILPASS = 188, /* D3DSTENCILOP to do if both ccw stencil and Z tests pass */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
383 D3DRS_CCW_STENCILFUNC = 189, /* D3DCMPFUNC fn. ccw Stencil Test passes if ((ref & mask) stencilfn (stencil & mask)) is true */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
384 D3DRS_COLORWRITEENABLE1 = 190, /* Additional ColorWriteEnables for the devices that support D3DPMISCCAPS_INDEPENDENTWRITEMASKS */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
385 D3DRS_COLORWRITEENABLE2 = 191, /* Additional ColorWriteEnables for the devices that support D3DPMISCCAPS_INDEPENDENTWRITEMASKS */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
386 D3DRS_COLORWRITEENABLE3 = 192, /* Additional ColorWriteEnables for the devices that support D3DPMISCCAPS_INDEPENDENTWRITEMASKS */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
387 D3DRS_BLENDFACTOR = 193, /* D3DCOLOR used for a constant blend factor during alpha blending for devices that support D3DPBLENDCAPS_BLENDFACTOR */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
388 D3DRS_SRGBWRITEENABLE = 194, /* Enable rendertarget writes to be DE-linearized to SRGB (for formats that expose D3DUSAGE_QUERY_SRGBWRITE) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
389 D3DRS_DEPTHBIAS = 195,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
390 D3DRS_WRAP8 = 198, /* Additional wrap states for vs_3_0+ attributes with D3DDECLUSAGE_TEXCOORD */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
391 D3DRS_WRAP9 = 199,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
392 D3DRS_WRAP10 = 200,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
393 D3DRS_WRAP11 = 201,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
394 D3DRS_WRAP12 = 202,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
395 D3DRS_WRAP13 = 203,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
396 D3DRS_WRAP14 = 204,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
397 D3DRS_WRAP15 = 205,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
398 D3DRS_SEPARATEALPHABLENDENABLE = 206, /* TRUE to enable a separate blending function for the alpha channel */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
399 D3DRS_SRCBLENDALPHA = 207, /* SRC blend factor for the alpha channel when D3DRS_SEPARATEDESTALPHAENABLE is TRUE */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
400 D3DRS_DESTBLENDALPHA = 208, /* DST blend factor for the alpha channel when D3DRS_SEPARATEDESTALPHAENABLE is TRUE */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
401 D3DRS_BLENDOPALPHA = 209 /* Blending operation for the alpha channel when D3DRS_SEPARATEDESTALPHAENABLE is TRUE */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
402 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
403 typedef uint D3DRENDERSTATETYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
404
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
405 // Maximum number of simultaneous render targets D3D supports
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
406 const D3D_MAX_SIMULTANEOUS_RENDERTARGETS = 4;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
407
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
408 // Values for material source
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
409 enum : D3DMATERIALCOLORSOURCE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
410 D3DMCS_MATERIAL = 0, // Color from material is used
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
411 D3DMCS_COLOR1 = 1, // Diffuse vertex color is used
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
412 D3DMCS_COLOR2 = 2 // Specular vertex color is used
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
413 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
414 typedef uint D3DMATERIALCOLORSOURCE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
415
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
416 // Bias to apply to the texture coordinate set to apply a wrap to.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
417 const D3DRENDERSTATE_WRAPBIAS = 128UL;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
418
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
419 /* Flags to construct the WRAP render states */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
420 const D3DWRAP_U = 0x00000001L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
421 const D3DWRAP_V = 0x00000002L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
422 const D3DWRAP_W = 0x00000004L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
423
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
424 /* Flags to construct the WRAP render states for 1D thru 4D texture coordinates */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
425 const D3DWRAPCOORD_0 = 0x00000001L; // same as D3DWRAP_U
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
426 const D3DWRAPCOORD_1 = 0x00000002L; // same as D3DWRAP_V
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
427 const D3DWRAPCOORD_2 = 0x00000004L; // same as D3DWRAP_W
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
428 const D3DWRAPCOORD_3 = 0x00000008L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
429
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
430 /* Flags to construct D3DRS_COLORWRITEENABLE */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
431 const D3DCOLORWRITEENABLE_RED = (1L<<0);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
432 const D3DCOLORWRITEENABLE_GREEN = (1L<<1);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
433 const D3DCOLORWRITEENABLE_BLUE = (1L<<2);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
434 const D3DCOLORWRITEENABLE_ALPHA = (1L<<3);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
435
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
436 /*
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
437 * State enumerants for per-stage processing of fixed function pixel processing
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
438 * Two of these affect fixed function vertex processing as well: TEXTURETRANSFORMFLAGS and TEXCOORDINDEX.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
439 */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
440 enum : D3DTEXTURESTAGESTATETYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
441 D3DTSS_COLOROP = 1, /* D3DTEXTUREOP - per-stage blending controls for color channels */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
442 D3DTSS_COLORARG1 = 2, /* D3DTA_* (texture arg) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
443 D3DTSS_COLORARG2 = 3, /* D3DTA_* (texture arg) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
444 D3DTSS_ALPHAOP = 4, /* D3DTEXTUREOP - per-stage blending controls for alpha channel */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
445 D3DTSS_ALPHAARG1 = 5, /* D3DTA_* (texture arg) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
446 D3DTSS_ALPHAARG2 = 6, /* D3DTA_* (texture arg) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
447 D3DTSS_BUMPENVMAT00 = 7, /* float (bump mapping matrix) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
448 D3DTSS_BUMPENVMAT01 = 8, /* float (bump mapping matrix) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
449 D3DTSS_BUMPENVMAT10 = 9, /* float (bump mapping matrix) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
450 D3DTSS_BUMPENVMAT11 = 10, /* float (bump mapping matrix) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
451 D3DTSS_TEXCOORDINDEX = 11, /* identifies which set of texture coordinates index this texture */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
452 D3DTSS_BUMPENVLSCALE = 22, /* float scale for bump map luminance */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
453 D3DTSS_BUMPENVLOFFSET = 23, /* float offset for bump map luminance */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
454 D3DTSS_TEXTURETRANSFORMFLAGS = 24, /* D3DTEXTURETRANSFORMFLAGS controls texture transform */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
455 D3DTSS_COLORARG0 = 26, /* D3DTA_* third arg for triadic ops */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
456 D3DTSS_ALPHAARG0 = 27, /* D3DTA_* third arg for triadic ops */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
457 D3DTSS_RESULTARG = 28, /* D3DTA_* arg for result (CURRENT or TEMP) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
458 D3DTSS_CONSTANT = 32 /* Per-stage constant D3DTA_CONSTANT */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
459 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
460 typedef uint D3DTEXTURESTAGESTATETYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
461
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
462 /*
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
463 * State enumerants for per-sampler texture processing.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
464 */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
465 enum : D3DSAMPLERSTATETYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
466 D3DSAMP_ADDRESSU = 1, /* D3DTEXTUREADDRESS for U coordinate */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
467 D3DSAMP_ADDRESSV = 2, /* D3DTEXTUREADDRESS for V coordinate */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
468 D3DSAMP_ADDRESSW = 3, /* D3DTEXTUREADDRESS for W coordinate */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
469 D3DSAMP_BORDERCOLOR = 4, /* D3DCOLOR */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
470 D3DSAMP_MAGFILTER = 5, /* D3DTEXTUREFILTER filter to use for magnification */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
471 D3DSAMP_MINFILTER = 6, /* D3DTEXTUREFILTER filter to use for minification */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
472 D3DSAMP_MIPFILTER = 7, /* D3DTEXTUREFILTER filter to use between mipmaps during minification */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
473 D3DSAMP_MIPMAPLODBIAS = 8, /* float Mipmap LOD bias */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
474 D3DSAMP_MAXMIPLEVEL = 9, /* DWORD 0..(n-1) LOD index of largest map to use (0 == largest) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
475 D3DSAMP_MAXANISOTROPY = 10, /* DWORD maximum anisotropy */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
476 D3DSAMP_SRGBTEXTURE = 11, /* Default = 0 (which means Gamma 1.0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
477 no correction required.) else correct for
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
478 Gamma = 2.2 */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
479 D3DSAMP_ELEMENTINDEX = 12, /* When multi-element texture is assigned to sampler, this
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
480 indicates which element index to use. Default = 0. */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
481 D3DSAMP_DMAPOFFSET = 13 /* Offset in vertices in the pre-sampled displacement map.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
482 Only valid for D3DDMAPSAMPLER sampler */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
483 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
484 typedef uint D3DSAMPLERSTATETYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
485
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
486 /* Special sampler which is used in the tesselator */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
487 const D3DDMAPSAMPLER = 256;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
488
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
489 // Samplers used in vertex shaders
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
490 const D3DVERTEXTEXTURESAMPLER0 = (D3DDMAPSAMPLER+1);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
491 const D3DVERTEXTEXTURESAMPLER1 = (D3DDMAPSAMPLER+2);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
492 const D3DVERTEXTEXTURESAMPLER2 = (D3DDMAPSAMPLER+3);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
493 const D3DVERTEXTEXTURESAMPLER3 = (D3DDMAPSAMPLER+4);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
494
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
495 // Values, used with D3DTSS_TEXCOORDINDEX, to specify that the vertex data(position
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
496 // and normal in the camera space) should be taken as texture coordinates
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
497 // Low 16 bits are used to specify texture coordinate index, to take the WRAP mode from
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
498 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
499 const D3DTSS_TCI_PASSTHRU = 0x00000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
500 const D3DTSS_TCI_CAMERASPACENORMAL = 0x00010000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
501 const D3DTSS_TCI_CAMERASPACEPOSITION = 0x00020000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
502 const D3DTSS_TCI_CAMERASPACEREFLECTIONVECTOR = 0x00030000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
503 const D3DTSS_TCI_SPHEREMAP = 0x00040000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
504
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
505 /*
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
506 * Enumerations for COLOROP and ALPHAOP texture blending operations set in
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
507 * texture processing stage controls in D3DTSS.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
508 */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
509 enum : D3DTEXTUREOP {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
510 // Control
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
511 D3DTOP_DISABLE = 1, // disables stage
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
512 D3DTOP_SELECTARG1 = 2, // the default
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
513 D3DTOP_SELECTARG2 = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
514
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
515 // Modulate
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
516 D3DTOP_MODULATE = 4, // multiply args together
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
517 D3DTOP_MODULATE2X = 5, // multiply and 1 bit
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
518 D3DTOP_MODULATE4X = 6, // multiply and 2 bits
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
519
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
520 // Add
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
521 D3DTOP_ADD = 7, // add arguments together
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
522 D3DTOP_ADDSIGNED = 8, // add with -0.5 bias
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
523 D3DTOP_ADDSIGNED2X = 9, // as above but left 1 bit
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
524 D3DTOP_SUBTRACT = 10, // Arg1 - Arg2, with no saturation
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
525 D3DTOP_ADDSMOOTH = 11, // add 2 args, subtract product
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
526 // Arg1 + Arg2 - Arg1*Arg2
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
527 // = Arg1 + (1-Arg1)*Arg2
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
528
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
529 // Linear alpha blend: Arg1*(Alpha) + Arg2*(1-Alpha)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
530 D3DTOP_BLENDDIFFUSEALPHA = 12, // iterated alpha
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
531 D3DTOP_BLENDTEXTUREALPHA = 13, // texture alpha
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
532 D3DTOP_BLENDFACTORALPHA = 14, // alpha from D3DRS_TEXTUREFACTOR
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
533
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
534 // Linear alpha blend with pre-multiplied arg1 input: Arg1 + Arg2*(1-Alpha)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
535 D3DTOP_BLENDTEXTUREALPHAPM = 15, // texture alpha
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
536 D3DTOP_BLENDCURRENTALPHA = 16, // by alpha of current color
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
537
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
538 // Specular mapping
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
539 D3DTOP_PREMODULATE = 17, // modulate with next texture before use
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
540 D3DTOP_MODULATEALPHA_ADDCOLOR = 18, // Arg1.RGB + Arg1.A*Arg2.RGB
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
541 // COLOROP only
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
542 D3DTOP_MODULATECOLOR_ADDALPHA = 19, // Arg1.RGB*Arg2.RGB + Arg1.A
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
543 // COLOROP only
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
544 D3DTOP_MODULATEINVALPHA_ADDCOLOR = 20, // (1-Arg1.A)*Arg2.RGB + Arg1.RGB
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
545 // COLOROP only
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
546 D3DTOP_MODULATEINVCOLOR_ADDALPHA = 21, // (1-Arg1.RGB)*Arg2.RGB + Arg1.A
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
547 // COLOROP only
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
548
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
549 // Bump mapping
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
550 D3DTOP_BUMPENVMAP = 22, // per pixel env map perturbation
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
551 D3DTOP_BUMPENVMAPLUMINANCE = 23, // with luminance channel
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
552
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
553 // This can do either diffuse or specular bump mapping with correct input.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
554 // Performs the function (Arg1.R*Arg2.R + Arg1.G*Arg2.G + Arg1.B*Arg2.B)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
555 // where each component has been scaled and offset to make it signed.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
556 // The result is replicated into all four (including alpha) channels.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
557 // This is a valid COLOROP only.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
558 D3DTOP_DOTPRODUCT3 = 24,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
559
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
560 // Triadic ops
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
561 D3DTOP_MULTIPLYADD = 25, // Arg0 + Arg1*Arg2
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
562 D3DTOP_LERP = 26 // (Arg0)*Arg1 + (1-Arg0)*Arg2
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
563 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
564 typedef uint D3DTEXTUREOP;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
565
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
566 /*
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
567 * Values for COLORARG0,1,2, ALPHAARG0,1,2, and RESULTARG texture blending
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
568 * operations set in texture processing stage controls in D3DRENDERSTATE.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
569 */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
570 const D3DTA_SELECTMASK = 0x0000000f; // mask for arg selector
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
571 const D3DTA_DIFFUSE = 0x00000000; // select diffuse color (read only)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
572 const D3DTA_CURRENT = 0x00000001; // select stage destination register (read/write)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
573 const D3DTA_TEXTURE = 0x00000002; // select texture color (read only)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
574 const D3DTA_TFACTOR = 0x00000003; // select D3DRS_TEXTUREFACTOR (read only)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
575 const D3DTA_SPECULAR = 0x00000004; // select specular color (read only)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
576 const D3DTA_TEMP = 0x00000005; // select temporary register color (read/write)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
577 const D3DTA_CONSTANT = 0x00000006; // select texture stage constant
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
578 const D3DTA_COMPLEMENT = 0x00000010; // take 1.0 - x (read modifier)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
579 const D3DTA_ALPHAREPLICATE = 0x00000020; // replicate alpha to color components (read modifier)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
580
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
581 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
582 // Values for D3DSAMP_***FILTER texture stage states
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
583 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
584 enum : D3DTEXTUREFILTERTYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
585 D3DTEXF_NONE = 0, // filtering disabled (valid for mip filter only)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
586 D3DTEXF_POINT = 1, // nearest
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
587 D3DTEXF_LINEAR = 2, // linear interpolation
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
588 D3DTEXF_ANISOTROPIC = 3, // anisotropic
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
589 D3DTEXF_PYRAMIDALQUAD = 6, // 4-sample tent
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
590 D3DTEXF_GAUSSIANQUAD = 7, // 4-sample gaussian
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
591 D3DTEXF_CONVOLUTIONMONO = 8 // Convolution filter for monochrome textures
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
592 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
593 typedef uint D3DTEXTUREFILTERTYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
594
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
595 /* Bits for Flags in ProcessVertices call */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
596
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
597 const D3DPV_DONOTCOPYDATA = (1 << 0);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
598
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
599 //-------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
600
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
601 // Flexible vertex format bits
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
602 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
603 const D3DFVF_RESERVED0 = 0x001;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
604 const D3DFVF_POSITION_MASK = 0x400E;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
605 const D3DFVF_XYZ = 0x002;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
606 const D3DFVF_XYZRHW = 0x004;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
607 const D3DFVF_XYZB1 = 0x006;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
608 const D3DFVF_XYZB2 = 0x008;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
609 const D3DFVF_XYZB3 = 0x00a;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
610 const D3DFVF_XYZB4 = 0x00c;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
611 const D3DFVF_XYZB5 = 0x00e;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
612 const D3DFVF_XYZW = 0x4002;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
613
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
614 const D3DFVF_NORMAL = 0x010;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
615 const D3DFVF_PSIZE = 0x020;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
616 const D3DFVF_DIFFUSE = 0x040;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
617 const D3DFVF_SPECULAR = 0x080;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
618
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
619 const D3DFVF_TEXCOUNT_MASK = 0xf00;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
620 const D3DFVF_TEXCOUNT_SHIFT = 8;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
621 const D3DFVF_TEX0 = 0x000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
622 const D3DFVF_TEX1 = 0x100;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
623 const D3DFVF_TEX2 = 0x200;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
624 const D3DFVF_TEX3 = 0x300;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
625 const D3DFVF_TEX4 = 0x400;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
626 const D3DFVF_TEX5 = 0x500;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
627 const D3DFVF_TEX6 = 0x600;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
628 const D3DFVF_TEX7 = 0x700;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
629 const D3DFVF_TEX8 = 0x800;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
630
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
631 const D3DFVF_LASTBETA_UBYTE4 = 0x1000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
632 const D3DFVF_LASTBETA_D3DCOLOR = 0x8000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
633
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
634 const D3DFVF_RESERVED2 = 0x6000; // 2 reserved bits
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
635
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
636 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
637 // Vertex Shaders
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
638 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
639
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
640 // Vertex shader declaration
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
641
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
642 // Vertex element semantics
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
643 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
644 enum : D3DDECLUSAGE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
645 D3DDECLUSAGE_POSITION = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
646 D3DDECLUSAGE_BLENDWEIGHT, // 1
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
647 D3DDECLUSAGE_BLENDINDICES, // 2
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
648 D3DDECLUSAGE_NORMAL, // 3
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
649 D3DDECLUSAGE_PSIZE, // 4
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
650 D3DDECLUSAGE_TEXCOORD, // 5
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
651 D3DDECLUSAGE_TANGENT, // 6
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
652 D3DDECLUSAGE_BINORMAL, // 7
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
653 D3DDECLUSAGE_TESSFACTOR, // 8
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
654 D3DDECLUSAGE_POSITIONT, // 9
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
655 D3DDECLUSAGE_COLOR, // 10
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
656 D3DDECLUSAGE_FOG, // 11
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
657 D3DDECLUSAGE_DEPTH, // 12
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
658 D3DDECLUSAGE_SAMPLE // 13
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
659 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
660 typedef uint D3DDECLUSAGE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
661
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
662 const MAXD3DDECLUSAGE = D3DDECLUSAGE_SAMPLE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
663 const MAXD3DDECLUSAGEINDEX = 15;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
664 const MAXD3DDECLLENGTH = 64; // does not include "end" marker vertex element
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
665
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
666 enum : D3DDECLMETHOD {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
667 D3DDECLMETHOD_DEFAULT = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
668 D3DDECLMETHOD_PARTIALU,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
669 D3DDECLMETHOD_PARTIALV,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
670 D3DDECLMETHOD_CROSSUV, // Normal
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
671 D3DDECLMETHOD_UV,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
672 D3DDECLMETHOD_LOOKUP, // Lookup a displacement map
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
673 D3DDECLMETHOD_LOOKUPPRESAMPLED // Lookup a pre-sampled displacement map
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
674 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
675 typedef uint D3DDECLMETHOD;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
676
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
677 const MAXD3DDECLMETHOD = D3DDECLMETHOD_LOOKUPPRESAMPLED;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
678
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
679 // Declarations for _Type fields
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
680 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
681 enum : D3DDECLTYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
682 D3DDECLTYPE_FLOAT1 = 0, // 1D float expanded to (value, 0., 0., 1.)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
683 D3DDECLTYPE_FLOAT2 = 1, // 2D float expanded to (value, value, 0., 1.)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
684 D3DDECLTYPE_FLOAT3 = 2, // 3D float expanded to (value, value, value, 1.)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
685 D3DDECLTYPE_FLOAT4 = 3, // 4D float
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
686 D3DDECLTYPE_D3DCOLOR = 4, // 4D packed unsigned bytes mapped to 0. to 1. range
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
687 // Input is in D3DCOLOR format (ARGB) expanded to (R, G, B, A)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
688 D3DDECLTYPE_UBYTE4 = 5, // 4D unsigned byte
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
689 D3DDECLTYPE_SHORT2 = 6, // 2D signed short expanded to (value, value, 0., 1.)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
690 D3DDECLTYPE_SHORT4 = 7, // 4D signed short
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
691
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
692 // The following types are valid only with vertex shaders >= 2.0
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
693
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
694
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
695 D3DDECLTYPE_UBYTE4N = 8, // Each of 4 bytes is normalized by dividing to 255.0
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
696 D3DDECLTYPE_SHORT2N = 9, // 2D signed short normalized (v[0]/32767.0,v[1]/32767.0,0,1)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
697 D3DDECLTYPE_SHORT4N = 10, // 4D signed short normalized (v[0]/32767.0,v[1]/32767.0,v[2]/32767.0,v[3]/32767.0)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
698 D3DDECLTYPE_USHORT2N = 11, // 2D unsigned short normalized (v[0]/65535.0,v[1]/65535.0,0,1)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
699 D3DDECLTYPE_USHORT4N = 12, // 4D unsigned short normalized (v[0]/65535.0,v[1]/65535.0,v[2]/65535.0,v[3]/65535.0)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
700 D3DDECLTYPE_UDEC3 = 13, // 3D unsigned 10 10 10 format expanded to (value, value, value, 1)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
701 D3DDECLTYPE_DEC3N = 14, // 3D signed 10 10 10 format normalized and expanded to (v[0]/511.0, v[1]/511.0, v[2]/511.0, 1)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
702 D3DDECLTYPE_FLOAT16_2 = 15, // Two 16-bit floating point values, expanded to (value, value, 0, 1)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
703 D3DDECLTYPE_FLOAT16_4 = 16, // Four 16-bit floating point values
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
704 D3DDECLTYPE_UNUSED = 17 // When the type field in a decl is unused.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
705 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
706 typedef uint D3DDECLTYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
707
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
708 const MAXD3DDECLTYPE = D3DDECLTYPE_UNUSED;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
709
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
710 struct D3DVERTEXELEMENT9
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
711 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
712 ushort Stream; // Stream index
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
713 ushort Offset; // Offset in the stream in bytes
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
714 ubyte Type; // Data type
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
715 ubyte Method; // Processing method
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
716 ubyte Usage; // Semantics
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
717 ubyte UsageIndex; // Semantic index
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
718 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
719 alias D3DVERTEXELEMENT9 *LPD3DVERTEXELEMENT9;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
720
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
721 // This is used to initialize the last vertex element in a vertex declaration
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
722 // array
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
723 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
724 template D3DDECL_END() {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
725 static const D3DVERTEXELEMENT9 D3DDECL_END = { 0xFF,0,D3DDECLTYPE_UNUSED,0,0,0 };
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
726 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
727
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
728 // Maximum supported number of texture coordinate sets
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
729 const D3DDP_MAXTEXCOORD = 8;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
730
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
731 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
732 // Values for IDirect3DDevice9::SetStreamSourceFreq's Setting parameter
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
733 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
734 const D3DSTREAMSOURCE_INDEXEDDATA = (1<<30);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
735 const D3DSTREAMSOURCE_INSTANCEDATA = (2<<30);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
736
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
737
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
738
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
739 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
740 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
741 // The internal format of Pixel Shader (PS) & Vertex Shader (VS)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
742 // Instruction Tokens is defined in the Direct3D Device Driver Kit
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
743 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
744 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
745
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
746 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
747 // Instruction Token Bit Definitions
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
748 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
749 const D3DSI_OPCODE_MASK = 0x0000FFFF;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
750
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
751 const D3DSI_INSTLENGTH_MASK = 0x0F000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
752 const D3DSI_INSTLENGTH_SHIFT = 24;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
753
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
754 enum : D3DSHADER_INSTRUCTION_OPCODE_TYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
755 D3DSIO_NOP = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
756 D3DSIO_MOV ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
757 D3DSIO_ADD ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
758 D3DSIO_SUB ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
759 D3DSIO_MAD ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
760 D3DSIO_MUL ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
761 D3DSIO_RCP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
762 D3DSIO_RSQ ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
763 D3DSIO_DP3 ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
764 D3DSIO_DP4 ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
765 D3DSIO_MIN ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
766 D3DSIO_MAX ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
767 D3DSIO_SLT ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
768 D3DSIO_SGE ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
769 D3DSIO_EXP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
770 D3DSIO_LOG ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
771 D3DSIO_LIT ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
772 D3DSIO_DST ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
773 D3DSIO_LRP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
774 D3DSIO_FRC ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
775 D3DSIO_M4x4 ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
776 D3DSIO_M4x3 ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
777 D3DSIO_M3x4 ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
778 D3DSIO_M3x3 ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
779 D3DSIO_M3x2 ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
780 D3DSIO_CALL ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
781 D3DSIO_CALLNZ ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
782 D3DSIO_LOOP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
783 D3DSIO_RET ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
784 D3DSIO_ENDLOOP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
785 D3DSIO_LABEL ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
786 D3DSIO_DCL ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
787 D3DSIO_POW ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
788 D3DSIO_CRS ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
789 D3DSIO_SGN ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
790 D3DSIO_ABS ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
791 D3DSIO_NRM ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
792 D3DSIO_SINCOS ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
793 D3DSIO_REP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
794 D3DSIO_ENDREP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
795 D3DSIO_IF ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
796 D3DSIO_IFC ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
797 D3DSIO_ELSE ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
798 D3DSIO_ENDIF ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
799 D3DSIO_BREAK ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
800 D3DSIO_BREAKC ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
801 D3DSIO_MOVA ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
802 D3DSIO_DEFB ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
803 D3DSIO_DEFI ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
804
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
805 D3DSIO_TEXCOORD = 64,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
806 D3DSIO_TEXKILL ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
807 D3DSIO_TEX ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
808 D3DSIO_TEXBEM ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
809 D3DSIO_TEXBEML ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
810 D3DSIO_TEXREG2AR ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
811 D3DSIO_TEXREG2GB ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
812 D3DSIO_TEXM3x2PAD ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
813 D3DSIO_TEXM3x2TEX ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
814 D3DSIO_TEXM3x3PAD ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
815 D3DSIO_TEXM3x3TEX ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
816 D3DSIO_RESERVED0 ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
817 D3DSIO_TEXM3x3SPEC ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
818 D3DSIO_TEXM3x3VSPEC ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
819 D3DSIO_EXPP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
820 D3DSIO_LOGP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
821 D3DSIO_CND ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
822 D3DSIO_DEF ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
823 D3DSIO_TEXREG2RGB ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
824 D3DSIO_TEXDP3TEX ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
825 D3DSIO_TEXM3x2DEPTH ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
826 D3DSIO_TEXDP3 ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
827 D3DSIO_TEXM3x3 ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
828 D3DSIO_TEXDEPTH ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
829 D3DSIO_CMP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
830 D3DSIO_BEM ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
831 D3DSIO_DP2ADD ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
832 D3DSIO_DSX ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
833 D3DSIO_DSY ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
834 D3DSIO_TEXLDD ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
835 D3DSIO_SETP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
836 D3DSIO_TEXLDL ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
837 D3DSIO_BREAKP ,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
838
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
839 D3DSIO_PHASE = 0xFFFD,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
840 D3DSIO_COMMENT = 0xFFFE,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
841 D3DSIO_END = 0xFFFF
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
842 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
843 typedef uint D3DSHADER_INSTRUCTION_OPCODE_TYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
844
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
845 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
846 // Use these constants with D3DSIO_SINCOS macro as SRC2, SRC3
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
847 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
848 const float[4] D3DSINCOSCONST1 = [-1.5500992e-006f, -2.1701389e-005f, 0.0026041667f, 0.00026041668f];
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
849 const float[4] D3DSINCOSCONST2 = [-0.020833334f, -0.12500000f, 1.0f, 0.50000000f];
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
850
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
851 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
852 // Co-Issue Instruction Modifier - if set then this instruction is to be
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
853 // issued in parallel with the previous instruction(s) for which this bit
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
854 // is not set.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
855 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
856 const D3DSI_COISSUE = 0x40000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
857
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
858 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
859 // Opcode specific controls
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
860
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
861 const D3DSP_OPCODESPECIFICCONTROL_MASK = 0x00ff0000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
862 const D3DSP_OPCODESPECIFICCONTROL_SHIFT = 16;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
863
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
864 // ps_2_0 texld controls
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
865 const D3DSI_TEXLD_PROJECT = (0x01 << D3DSP_OPCODESPECIFICCONTROL_SHIFT);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
866 const D3DSI_TEXLD_BIAS = (0x02 << D3DSP_OPCODESPECIFICCONTROL_SHIFT);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
867
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
868 // Comparison for dynamic conditional instruction opcodes (i.e. if, breakc)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
869 enum : D3DSHADER_COMPARISON {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
870 // < = >
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
871 D3DSPC_RESERVED0= 0, // 0 0 0
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
872 D3DSPC_GT = 1, // 0 0 1
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
873 D3DSPC_EQ = 2, // 0 1 0
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
874 D3DSPC_GE = 3, // 0 1 1
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
875 D3DSPC_LT = 4, // 1 0 0
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
876 D3DSPC_NE = 5, // 1 0 1
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
877 D3DSPC_LE = 6, // 1 1 0
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
878 D3DSPC_RESERVED1= 7 // 1 1 1
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
879 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
880 typedef uint D3DSHADER_COMPARISON;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
881
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
882 // Comparison is part of instruction opcode token:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
883 const D3DSHADER_COMPARISON_SHIFT = D3DSP_OPCODESPECIFICCONTROL_SHIFT;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
884 const D3DSHADER_COMPARISON_MASK = (0x7<<D3DSHADER_COMPARISON_SHIFT);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
885
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
886 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
887 // Predication flags on instruction token
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
888 const D3DSHADER_INSTRUCTION_PREDICATED = (0x1 << 28);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
889
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
890 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
891 // DCL Info Token Controls
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
892
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
893 // For dcl info tokens requiring a semantic (usage + index)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
894 const D3DSP_DCL_USAGE_SHIFT = 0;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
895 const D3DSP_DCL_USAGE_MASK = 0x0000000f;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
896
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
897 const D3DSP_DCL_USAGEINDEX_SHIFT = 16;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
898 const D3DSP_DCL_USAGEINDEX_MASK = 0x000f0000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
899
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
900 // DCL pixel shader sampler info token.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
901 const D3DSP_TEXTURETYPE_SHIFT = 27;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
902 const D3DSP_TEXTURETYPE_MASK = 0x78000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
903
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
904 enum : D3DSAMPLER_TEXTURE_TYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
905 D3DSTT_UNKNOWN = 0<<D3DSP_TEXTURETYPE_SHIFT, // uninitialized value
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
906 D3DSTT_2D = 2<<D3DSP_TEXTURETYPE_SHIFT, // dcl_2d s# (for declaring a 2-D texture)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
907 D3DSTT_CUBE = 3<<D3DSP_TEXTURETYPE_SHIFT, // dcl_cube s# (for declaring a cube texture)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
908 D3DSTT_VOLUME = 4<<D3DSP_TEXTURETYPE_SHIFT // dcl_volume s# (for declaring a volume texture)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
909 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
910 typedef uint D3DSAMPLER_TEXTURE_TYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
911
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
912 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
913 // Parameter Token Bit Definitions
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
914 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
915 const D3DSP_REGNUM_MASK = 0x000007FF;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
916
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
917 // destination parameter write mask
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
918 const D3DSP_WRITEMASK_0 = 0x00010000; // Component 0 (X;Red)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
919 const D3DSP_WRITEMASK_1 = 0x00020000; // Component 1 (Y;Green)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
920 const D3DSP_WRITEMASK_2 = 0x00040000; // Component 2 (Z;Blue)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
921 const D3DSP_WRITEMASK_3 = 0x00080000; // Component 3 (W;Alpha)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
922 const D3DSP_WRITEMASK_ALL = 0x000F0000; // All Components
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
923
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
924 // destination parameter modifiers
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
925 const D3DSP_DSTMOD_SHIFT = 20;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
926 const D3DSP_DSTMOD_MASK = 0x00F00000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
927
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
928 // Bit masks for destination parameter modifiers
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
929 const D3DSPDM_NONE = (0<<D3DSP_DSTMOD_SHIFT); // nop
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
930 const D3DSPDM_SATURATE = (1<<D3DSP_DSTMOD_SHIFT); // clamp to 0. to 1. range
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
931 const D3DSPDM_PARTIALPRECISION = (2<<D3DSP_DSTMOD_SHIFT); // Partial precision hint
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
932 const D3DSPDM_MSAMPCENTROID = (4<<D3DSP_DSTMOD_SHIFT); // Relevant to multisampling only:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
933 // When the pixel center is not covered, sample
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
934 // attribute or compute gradients/LOD
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
935 // using multisample "centroid" location.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
936 // "Centroid" is some location within the covered
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
937 // region of the pixel.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
938
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
939 // destination parameter
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
940 const D3DSP_DSTSHIFT_SHIFT = 24;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
941 const D3DSP_DSTSHIFT_MASK = 0x0F000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
942
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
943 // destination/source parameter register type
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
944 const D3DSP_REGTYPE_SHIFT = 28;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
945 const D3DSP_REGTYPE_SHIFT2 = 8;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
946 const D3DSP_REGTYPE_MASK = 0x70000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
947 const D3DSP_REGTYPE_MASK2 = 0x00001800;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
948
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
949 enum : D3DSHADER_PARAM_REGISTER_TYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
950 D3DSPR_TEMP = 0, // Temporary Register File
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
951 D3DSPR_INPUT = 1, // Input Register File
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
952 D3DSPR_CONST = 2, // Constant Register File
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
953 D3DSPR_ADDR = 3, // Address Register (VS)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
954 D3DSPR_TEXTURE = 3, // Texture Register File (PS)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
955 D3DSPR_RASTOUT = 4, // Rasterizer Register File
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
956 D3DSPR_ATTROUT = 5, // Attribute Output Register File
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
957 D3DSPR_TEXCRDOUT = 6, // Texture Coordinate Output Register File
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
958 D3DSPR_OUTPUT = 6, // Output register file for VS3.0+
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
959 D3DSPR_CONSTINT = 7, // Constant Integer Vector Register File
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
960 D3DSPR_COLOROUT = 8, // Color Output Register File
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
961 D3DSPR_DEPTHOUT = 9, // Depth Output Register File
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
962 D3DSPR_SAMPLER = 10, // Sampler State Register File
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
963 D3DSPR_CONST2 = 11, // Constant Register File 2048 - 4095
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
964 D3DSPR_CONST3 = 12, // Constant Register File 4096 - 6143
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
965 D3DSPR_CONST4 = 13, // Constant Register File 6144 - 8191
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
966 D3DSPR_CONSTBOOL = 14, // Constant Boolean register file
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
967 D3DSPR_LOOP = 15, // Loop counter register file
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
968 D3DSPR_TEMPFLOAT16 = 16, // 16-bit float temp register file
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
969 D3DSPR_MISCTYPE = 17, // Miscellaneous (single) registers.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
970 D3DSPR_LABEL = 18, // Label
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
971 D3DSPR_PREDICATE = 19 // Predicate register
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
972 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
973 typedef uint D3DSHADER_PARAM_REGISTER_TYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
974
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
975 // The miscellaneous register file (D3DSPR_MISCTYPES)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
976 // contains register types for which there is only ever one
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
977 // register (i.e. the register # is not needed).
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
978 // Rather than use up additional register types for such
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
979 // registers, they are defined
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
980 // as particular offsets into the misc. register file:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
981 enum : D3DSHADER_MISCTYPE_OFFSETS {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
982 D3DSMO_POSITION = 0, // Input position x,y,z,rhw (PS)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
983 D3DSMO_FACE = 1, // Floating point primitive area (PS)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
984 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
985 typedef uint D3DSHADER_MISCTYPE_OFFSETS;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
986
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
987 // Register offsets in the Rasterizer Register File
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
988 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
989 enum : D3DVS_RASTOUT_OFFSETS {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
990 D3DSRO_POSITION = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
991 D3DSRO_FOG,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
992 D3DSRO_POINT_SIZE
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
993 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
994 typedef uint D3DVS_RASTOUT_OFFSETS;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
995
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
996 // Source operand addressing modes
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
997
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
998 const D3DVS_ADDRESSMODE_SHIFT = 13;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
999 const D3DVS_ADDRESSMODE_MASK = (1 << D3DVS_ADDRESSMODE_SHIFT);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1000
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1001 enum : D3DVS_ADDRESSMODE_TYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1002 D3DVS_ADDRMODE_ABSOLUTE = (0 << D3DVS_ADDRESSMODE_SHIFT),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1003 D3DVS_ADDRMODE_RELATIVE = (1 << D3DVS_ADDRESSMODE_SHIFT)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1004 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1005 typedef uint D3DVS_ADDRESSMODE_TYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1006
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1007 const D3DSHADER_ADDRESSMODE_SHIFT = 13;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1008 const D3DSHADER_ADDRESSMODE_MASK = (1 << D3DSHADER_ADDRESSMODE_SHIFT);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1009
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1010 enum : D3DSHADER_ADDRESSMODE_TYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1011 D3DSHADER_ADDRMODE_ABSOLUTE = (0 << D3DSHADER_ADDRESSMODE_SHIFT),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1012 D3DSHADER_ADDRMODE_RELATIVE = (1 << D3DSHADER_ADDRESSMODE_SHIFT)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1013 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1014 typedef uint D3DSHADER_ADDRESSMODE_TYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1015
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1016 // Source operand swizzle definitions
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1017 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1018 const D3DVS_SWIZZLE_SHIFT = 16;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1019 const D3DVS_SWIZZLE_MASK = 0x00FF0000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1020
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1021 // The following bits define where to take component X from:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1022
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1023 const D3DVS_X_X = (0<<D3DVS_SWIZZLE_SHIFT);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1024 const D3DVS_X_Y = (1<<D3DVS_SWIZZLE_SHIFT);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1025 const D3DVS_X_Z = (2<<D3DVS_SWIZZLE_SHIFT);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1026 const D3DVS_X_W = (3<<D3DVS_SWIZZLE_SHIFT);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1027
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1028 // The following bits define where to take component Y from:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1029
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1030 const D3DVS_Y_X = (0<<(D3DVS_SWIZZLE_SHIFT+2));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1031 const D3DVS_Y_Y = (1<<(D3DVS_SWIZZLE_SHIFT+2));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1032 const D3DVS_Y_Z = (2<<(D3DVS_SWIZZLE_SHIFT+2));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1033 const D3DVS_Y_W = (3<<(D3DVS_SWIZZLE_SHIFT+2));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1034
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1035 // The following bits define where to take component Z from:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1036
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1037 const D3DVS_Z_X = (0<<(D3DVS_SWIZZLE_SHIFT+4));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1038 const D3DVS_Z_Y = (1<<(D3DVS_SWIZZLE_SHIFT+4));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1039 const D3DVS_Z_Z = (2<<(D3DVS_SWIZZLE_SHIFT+4));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1040 const D3DVS_Z_W = (3<<(D3DVS_SWIZZLE_SHIFT+4));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1041
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1042 // The following bits define where to take component W from:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1043
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1044 const D3DVS_W_X = (0<<(D3DVS_SWIZZLE_SHIFT+6));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1045 const D3DVS_W_Y = (1<<(D3DVS_SWIZZLE_SHIFT+6));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1046 const D3DVS_W_Z = (2<<(D3DVS_SWIZZLE_SHIFT+6));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1047 const D3DVS_W_W = (3<<(D3DVS_SWIZZLE_SHIFT+6));
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1048
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1049 // Value when there is no swizzle (X is taken from X, Y is taken from Y,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1050 // Z is taken from Z, W is taken from W
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1051 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1052 const D3DVS_NOSWIZZLE = (D3DVS_X_X|D3DVS_Y_Y|D3DVS_Z_Z|D3DVS_W_W);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1053
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1054 // source parameter swizzle
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1055 const D3DSP_SWIZZLE_SHIFT = 16;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1056 const D3DSP_SWIZZLE_MASK = 0x00FF0000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1057
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1058 const D3DSP_NOSWIZZLE = ( (0 << (D3DSP_SWIZZLE_SHIFT + 0)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1059 (1 << (D3DSP_SWIZZLE_SHIFT + 2)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1060 (2 << (D3DSP_SWIZZLE_SHIFT + 4)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1061 (3 << (D3DSP_SWIZZLE_SHIFT + 6)) );
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1062
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1063 // pixel-shader swizzle ops
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1064 const D3DSP_REPLICATERED =
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1065 ( (0 << (D3DSP_SWIZZLE_SHIFT + 0)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1066 (0 << (D3DSP_SWIZZLE_SHIFT + 2)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1067 (0 << (D3DSP_SWIZZLE_SHIFT + 4)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1068 (0 << (D3DSP_SWIZZLE_SHIFT + 6)) );
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1069
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1070 const D3DSP_REPLICATEGREEN =
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1071 ( (1 << (D3DSP_SWIZZLE_SHIFT + 0)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1072 (1 << (D3DSP_SWIZZLE_SHIFT + 2)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1073 (1 << (D3DSP_SWIZZLE_SHIFT + 4)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1074 (1 << (D3DSP_SWIZZLE_SHIFT + 6)) );
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1075
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1076 const D3DSP_REPLICATEBLUE =
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1077 ( (2 << (D3DSP_SWIZZLE_SHIFT + 0)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1078 (2 << (D3DSP_SWIZZLE_SHIFT + 2)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1079 (2 << (D3DSP_SWIZZLE_SHIFT + 4)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1080 (2 << (D3DSP_SWIZZLE_SHIFT + 6)) );
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1081
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1082 const D3DSP_REPLICATEALPHA =
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1083 ( (3 << (D3DSP_SWIZZLE_SHIFT + 0)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1084 (3 << (D3DSP_SWIZZLE_SHIFT + 2)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1085 (3 << (D3DSP_SWIZZLE_SHIFT + 4)) |
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1086 (3 << (D3DSP_SWIZZLE_SHIFT + 6)) );
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1087
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1088 // source parameter modifiers
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1089 const D3DSP_SRCMOD_SHIFT = 24;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1090 const D3DSP_SRCMOD_MASK = 0x0F000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1091
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1092 enum : D3DSHADER_PARAM_SRCMOD_TYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1093 D3DSPSM_NONE = 0<<D3DSP_SRCMOD_SHIFT, // nop
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1094 D3DSPSM_NEG = 1<<D3DSP_SRCMOD_SHIFT, // negate
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1095 D3DSPSM_BIAS = 2<<D3DSP_SRCMOD_SHIFT, // bias
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1096 D3DSPSM_BIASNEG = 3<<D3DSP_SRCMOD_SHIFT, // bias and negate
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1097 D3DSPSM_SIGN = 4<<D3DSP_SRCMOD_SHIFT, // sign
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1098 D3DSPSM_SIGNNEG = 5<<D3DSP_SRCMOD_SHIFT, // sign and negate
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1099 D3DSPSM_COMP = 6<<D3DSP_SRCMOD_SHIFT, // complement
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1100 D3DSPSM_X2 = 7<<D3DSP_SRCMOD_SHIFT, // *2
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1101 D3DSPSM_X2NEG = 8<<D3DSP_SRCMOD_SHIFT, // *2 and negate
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1102 D3DSPSM_DZ = 9<<D3DSP_SRCMOD_SHIFT, // divide through by z component
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1103 D3DSPSM_DW = 10<<D3DSP_SRCMOD_SHIFT, // divide through by w component
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1104 D3DSPSM_ABS = 11<<D3DSP_SRCMOD_SHIFT, // abs()
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1105 D3DSPSM_ABSNEG = 12<<D3DSP_SRCMOD_SHIFT, // -abs()
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1106 D3DSPSM_NOT = 13<<D3DSP_SRCMOD_SHIFT // for predicate register: "!p0"
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1107 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1108 typedef uint D3DSHADER_PARAM_SRCMOD_TYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1109
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1110 // pixel shader version token
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1111 uint D3DPS_VERSION(ubyte _Major, ubyte _Minor) { return (0xFFFF0000|(_Major<<8)|_Minor); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1112
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1113 // vertex shader version token
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1114 uint D3DVS_VERSION(ubyte _Major, ubyte _Minor) { return (0xFFFE0000|(_Major<<8)|_Minor); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1115
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1116 // extract major/minor from version cap
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1117 ubyte D3DSHADER_VERSION_MAJOR(uint _Version) { return cast(ubyte)((_Version>>8)&0xFF); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1118 ubyte D3DSHADER_VERSION_MINOR(uint _Version) { return cast(ubyte)((_Version>>0)&0xFF); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1119
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1120 // destination/source parameter register type
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1121 const D3DSI_COMMENTSIZE_SHIFT = 16;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1122 const D3DSI_COMMENTSIZE_MASK = 0x7FFF0000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1123 uint D3DSHADER_COMMENT(ushort _DWordSize) { return (((_DWordSize<<D3DSI_COMMENTSIZE_SHIFT)&D3DSI_COMMENTSIZE_MASK)|D3DSIO_COMMENT); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1124
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1125 // pixel/vertex shader end token
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1126 const D3DPS_END = 0x0000FFFF;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1127 const D3DVS_END = 0x0000FFFF;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1128
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1129
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1130 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1131
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1132 // High order surfaces
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1133 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1134 enum : D3DBASISTYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1135 D3DBASIS_BEZIER = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1136 D3DBASIS_BSPLINE = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1137 D3DBASIS_CATMULL_ROM = 2 /* In D3D8 this used to be D3DBASIS_INTERPOLATE */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1138 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1139 typedef uint D3DBASISTYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1140
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1141 enum : D3DDEGREETYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1142 D3DDEGREE_LINEAR = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1143 D3DDEGREE_QUADRATIC = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1144 D3DDEGREE_CUBIC = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1145 D3DDEGREE_QUINTIC = 5
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1146 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1147 typedef uint D3DDEGREETYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1148
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1149 enum : D3DPATCHEDGESTYLE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1150 D3DPATCHEDGE_DISCRETE = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1151 D3DPATCHEDGE_CONTINUOUS = 1
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1152 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1153 typedef uint D3DPATCHEDGESTYLE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1154
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1155 enum : D3DSTATEBLOCKTYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1156 D3DSBT_ALL = 1, // capture all state
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1157 D3DSBT_PIXELSTATE = 2, // capture pixel state
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1158 D3DSBT_VERTEXSTATE = 3 // capture vertex state
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1159 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1160 typedef uint D3DSTATEBLOCKTYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1161
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1162 // The D3DVERTEXBLENDFLAGS type is used with D3DRS_VERTEXBLEND state.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1163 //
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1164 enum : D3DVERTEXBLENDFLAGS {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1165 D3DVBF_DISABLE = 0, // Disable vertex blending
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1166 D3DVBF_1WEIGHTS = 1, // 2 matrix blending
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1167 D3DVBF_2WEIGHTS = 2, // 3 matrix blending
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1168 D3DVBF_3WEIGHTS = 3, // 4 matrix blending
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1169 D3DVBF_TWEENING = 255, // blending using D3DRS_TWEENFACTOR
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1170 D3DVBF_0WEIGHTS = 256 // one matrix is used with weight 1.0
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1171 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1172 typedef uint D3DVERTEXBLENDFLAGS;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1173
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1174 enum : D3DTEXTURETRANSFORMFLAGS {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1175 D3DTTFF_DISABLE = 0, // texture coordinates are passed directly
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1176 D3DTTFF_COUNT1 = 1, // rasterizer should expect 1-D texture coords
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1177 D3DTTFF_COUNT2 = 2, // rasterizer should expect 2-D texture coords
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1178 D3DTTFF_COUNT3 = 3, // rasterizer should expect 3-D texture coords
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1179 D3DTTFF_COUNT4 = 4, // rasterizer should expect 4-D texture coords
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1180 D3DTTFF_PROJECTED = 256 // texcoords to be divided by COUNTth element
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1181 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1182 typedef uint D3DTEXTURETRANSFORMFLAGS;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1183
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1184 // Macros to set texture coordinate format bits in the FVF id
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1185
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1186 const D3DFVF_TEXTUREFORMAT2 = 0; // Two floating point values
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1187 const D3DFVF_TEXTUREFORMAT1 = 3; // One floating point value
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1188 const D3DFVF_TEXTUREFORMAT3 = 1; // Three floating point values
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1189 const D3DFVF_TEXTUREFORMAT4 = 2; // Four floating point values
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1190
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1191 uint D3DFVF_TEXCOORDSIZE3(uint CoordIndex) { return (D3DFVF_TEXTUREFORMAT3 << (CoordIndex*2 + 16)); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1192 uint D3DFVF_TEXCOORDSIZE2(uint CoordIndex) { return (D3DFVF_TEXTUREFORMAT2); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1193 uint D3DFVF_TEXCOORDSIZE4(uint CoordIndex) { return (D3DFVF_TEXTUREFORMAT4 << (CoordIndex*2 + 16)); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1194 uint D3DFVF_TEXCOORDSIZE1(uint CoordIndex) { return (D3DFVF_TEXTUREFORMAT1 << (CoordIndex*2 + 16)); }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1195
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1196
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1197 //---------------------------------------------------------------------
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1198
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1199 /* Direct3D9 Device types */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1200 enum : D3DDEVTYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1201 D3DDEVTYPE_HAL = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1202 D3DDEVTYPE_REF = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1203 D3DDEVTYPE_SW = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1204
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1205 D3DDEVTYPE_NULLREF = 4
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1206 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1207 typedef uint D3DDEVTYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1208
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1209 /* Multi-Sample buffer types */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1210 enum : D3DMULTISAMPLE_TYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1211 D3DMULTISAMPLE_NONE = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1212 D3DMULTISAMPLE_NONMASKABLE = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1213 D3DMULTISAMPLE_2_SAMPLES = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1214 D3DMULTISAMPLE_3_SAMPLES = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1215 D3DMULTISAMPLE_4_SAMPLES = 4,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1216 D3DMULTISAMPLE_5_SAMPLES = 5,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1217 D3DMULTISAMPLE_6_SAMPLES = 6,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1218 D3DMULTISAMPLE_7_SAMPLES = 7,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1219 D3DMULTISAMPLE_8_SAMPLES = 8,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1220 D3DMULTISAMPLE_9_SAMPLES = 9,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1221 D3DMULTISAMPLE_10_SAMPLES = 10,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1222 D3DMULTISAMPLE_11_SAMPLES = 11,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1223 D3DMULTISAMPLE_12_SAMPLES = 12,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1224 D3DMULTISAMPLE_13_SAMPLES = 13,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1225 D3DMULTISAMPLE_14_SAMPLES = 14,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1226 D3DMULTISAMPLE_15_SAMPLES = 15,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1227 D3DMULTISAMPLE_16_SAMPLES = 16
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1228 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1229 typedef uint D3DMULTISAMPLE_TYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1230
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1231 /* Formats
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1232 * Most of these names have the following convention:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1233 * A = Alpha
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1234 * R = Red
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1235 * G = Green
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1236 * B = Blue
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1237 * X = Unused Bits
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1238 * P = Palette
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1239 * L = Luminance
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1240 * U = dU coordinate for BumpMap
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1241 * V = dV coordinate for BumpMap
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1242 * S = Stencil
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1243 * D = Depth (e.g. Z or W buffer)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1244 * C = Computed from other channels (typically on certain read operations)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1245 *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1246 * Further, the order of the pieces are from MSB first; hence
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1247 * D3DFMT_A8L8 indicates that the high byte of this two byte
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1248 * format is alpha.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1249 *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1250 * D3DFMT_D16_LOCKABLE indicates:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1251 * - An integer 16-bit value.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1252 * - An app-lockable surface.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1253 *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1254 * D3DFMT_D32F_LOCKABLE indicates:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1255 * - An IEEE 754 floating-point value.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1256 * - An app-lockable surface.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1257 *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1258 * All Depth/Stencil formats except D3DFMT_D16_LOCKABLE and D3DFMT_D32F_LOCKABLE indicate:
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1259 * - no particular bit ordering per pixel, and
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1260 * - are not app lockable, and
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1261 * - the driver is allowed to consume more than the indicated
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1262 * number of bits per Depth channel (but not Stencil channel).
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1263 */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1264 uint MAKEFOURCC(ubyte ch0, ubyte ch1, ubyte ch2, ubyte ch3) {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1265 return cast(uint)ch0 | cast(uint)(ch1 << 8) | cast(uint)(ch2 << 16) | cast(uint)(ch3 << 24 );
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1266 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1267 template T_MAKEFOURCC(ubyte ch0, ubyte ch1, ubyte ch2, ubyte ch3) {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1268 const T_MAKEFOURCC = cast(uint)ch0 | cast(uint)(ch1 << 8) | cast(uint)(ch2 << 16) | cast(uint)(ch3 << 24 );
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1269 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1270
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1271 enum : D3DFORMAT {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1272 D3DFMT_UNKNOWN = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1273
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1274 D3DFMT_R8G8B8 = 20,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1275 D3DFMT_A8R8G8B8 = 21,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1276 D3DFMT_X8R8G8B8 = 22,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1277 D3DFMT_R5G6B5 = 23,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1278 D3DFMT_X1R5G5B5 = 24,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1279 D3DFMT_A1R5G5B5 = 25,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1280 D3DFMT_A4R4G4B4 = 26,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1281 D3DFMT_R3G3B2 = 27,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1282 D3DFMT_A8 = 28,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1283 D3DFMT_A8R3G3B2 = 29,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1284 D3DFMT_X4R4G4B4 = 30,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1285 D3DFMT_A2B10G10R10 = 31,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1286 D3DFMT_A8B8G8R8 = 32,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1287 D3DFMT_X8B8G8R8 = 33,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1288 D3DFMT_G16R16 = 34,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1289 D3DFMT_A2R10G10B10 = 35,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1290 D3DFMT_A16B16G16R16 = 36,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1291
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1292 D3DFMT_A8P8 = 40,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1293 D3DFMT_P8 = 41,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1294
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1295 D3DFMT_L8 = 50,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1296 D3DFMT_A8L8 = 51,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1297 D3DFMT_A4L4 = 52,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1298
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1299 D3DFMT_V8U8 = 60,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1300 D3DFMT_L6V5U5 = 61,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1301 D3DFMT_X8L8V8U8 = 62,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1302 D3DFMT_Q8W8V8U8 = 63,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1303 D3DFMT_V16U16 = 64,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1304 D3DFMT_A2W10V10U10 = 67,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1305
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1306 D3DFMT_UYVY = T_MAKEFOURCC!('U', 'Y', 'V', 'Y'),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1307 D3DFMT_R8G8_B8G8 = T_MAKEFOURCC!('R', 'G', 'B', 'G'),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1308 D3DFMT_YUY2 = T_MAKEFOURCC!('Y', 'U', 'Y', '2'),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1309 D3DFMT_G8R8_G8B8 = T_MAKEFOURCC!('G', 'R', 'G', 'B'),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1310 D3DFMT_DXT1 = T_MAKEFOURCC!('D', 'X', 'T', '1'),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1311 D3DFMT_DXT2 = T_MAKEFOURCC!('D', 'X', 'T', '2'),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1312 D3DFMT_DXT3 = T_MAKEFOURCC!('D', 'X', 'T', '3'),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1313 D3DFMT_DXT4 = T_MAKEFOURCC!('D', 'X', 'T', '4'),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1314 D3DFMT_DXT5 = T_MAKEFOURCC!('D', 'X', 'T', '5'),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1315
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1316 D3DFMT_D16_LOCKABLE = 70,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1317 D3DFMT_D32 = 71,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1318 D3DFMT_D15S1 = 73,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1319 D3DFMT_D24S8 = 75,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1320 D3DFMT_D24X8 = 77,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1321 D3DFMT_D24X4S4 = 79,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1322 D3DFMT_D16 = 80,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1323
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1324 D3DFMT_D32F_LOCKABLE = 82,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1325 D3DFMT_D24FS8 = 83,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1326
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1327 /* Z-Stencil formats valid for CPU access */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1328 D3DFMT_D32_LOCKABLE = 84,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1329 D3DFMT_S8_LOCKABLE = 85,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1330
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1331 D3DFMT_L16 = 81,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1332
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1333 D3DFMT_VERTEXDATA =100,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1334 D3DFMT_INDEX16 =101,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1335 D3DFMT_INDEX32 =102,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1336
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1337 D3DFMT_Q16W16V16U16 =110,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1338
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1339 D3DFMT_MULTI2_ARGB8 = T_MAKEFOURCC!('M','E','T','1'),
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1340
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1341 // Floating point surface formats
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1342
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1343 // s10e5 formats (16-bits per channel)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1344 D3DFMT_R16F = 111,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1345 D3DFMT_G16R16F = 112,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1346 D3DFMT_A16B16G16R16F = 113,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1347
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1348 // IEEE s23e8 formats (32-bits per channel)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1349 D3DFMT_R32F = 114,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1350 D3DFMT_G32R32F = 115,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1351 D3DFMT_A32B32G32R32F = 116,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1352
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1353 D3DFMT_CxV8U8 = 117,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1354
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1355 // Monochrome 1 bit per pixel format
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1356 D3DFMT_A1 = 118,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1357
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1358
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1359 // Binary format indicating that the data has no inherent type
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1360 D3DFMT_BINARYBUFFER = 199
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1361 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1362 typedef uint D3DFORMAT;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1363
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1364 /* Display Modes */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1365 struct D3DDISPLAYMODE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1366 uint Width;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1367 uint Height;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1368 uint RefreshRate;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1369 D3DFORMAT Format;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1370 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1371
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1372 /* Creation Parameters */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1373 struct D3DDEVICE_CREATION_PARAMETERS
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1374 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1375 UINT AdapterOrdinal;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1376 D3DDEVTYPE DeviceType;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1377 HWND hFocusWindow;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1378 DWORD BehaviorFlags;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1379 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1380
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1381
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1382 /* SwapEffects */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1383 enum : D3DSWAPEFFECT {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1384 D3DSWAPEFFECT_DISCARD = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1385 D3DSWAPEFFECT_FLIP = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1386 D3DSWAPEFFECT_COPY = 3
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1387 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1388 typedef uint D3DSWAPEFFECT;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1389
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1390 /* Pool types */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1391 enum : D3DPOOL {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1392 D3DPOOL_DEFAULT = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1393 D3DPOOL_MANAGED = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1394 D3DPOOL_SYSTEMMEM = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1395 D3DPOOL_SCRATCH = 3
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1396 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1397 typedef uint D3DPOOL;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1398
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1399
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1400 /* RefreshRate pre-defines */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1401 const D3DPRESENT_RATE_DEFAULT = 0x00000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1402
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1403
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1404 /* Resize Optional Parameters */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1405 struct D3DPRESENT_PARAMETERS
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1406 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1407 UINT BackBufferWidth;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1408 UINT BackBufferHeight;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1409 D3DFORMAT BackBufferFormat;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1410 UINT BackBufferCount;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1411
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1412 D3DMULTISAMPLE_TYPE MultiSampleType;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1413 DWORD MultiSampleQuality;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1414
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1415 D3DSWAPEFFECT SwapEffect;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1416 HWND hDeviceWindow;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1417 BOOL Windowed;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1418 BOOL EnableAutoDepthStencil;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1419 D3DFORMAT AutoDepthStencilFormat;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1420 DWORD Flags;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1421
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1422 /* FullScreen_RefreshRateInHz must be zero for Windowed mode */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1423 UINT FullScreen_RefreshRateInHz;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1424 UINT PresentationInterval;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1425 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1426
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1427 // Values for D3DPRESENT_PARAMETERS.Flags
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1428
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1429 const D3DPRESENTFLAG_LOCKABLE_BACKBUFFER = 0x00000001;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1430 const D3DPRESENTFLAG_DISCARD_DEPTHSTENCIL = 0x00000002;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1431 const D3DPRESENTFLAG_DEVICECLIP = 0x00000004;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1432 const D3DPRESENTFLAG_VIDEO = 0x00000010;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1433
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1434 const D3DPRESENTFLAG_NOAUTOROTATE = 0x00000020;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1435 const D3DPRESENTFLAG_UNPRUNEDMODE = 0x00000040;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1436
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1437 /* Gamma Ramp: Same as DX7 */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1438
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1439 struct D3DGAMMARAMP
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1440 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1441 ushort[256] red;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1442 ushort[256] green;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1443 ushort[256] blue;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1444 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1445
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1446 /* Back buffer types */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1447 enum : D3DBACKBUFFER_TYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1448 D3DBACKBUFFER_TYPE_MONO = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1449 D3DBACKBUFFER_TYPE_LEFT = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1450 D3DBACKBUFFER_TYPE_RIGHT = 2
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1451 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1452 typedef uint D3DBACKBUFFER_TYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1453
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1454 /* Types */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1455 enum : D3DRESOURCETYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1456 D3DRTYPE_SURFACE = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1457 D3DRTYPE_VOLUME = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1458 D3DRTYPE_TEXTURE = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1459 D3DRTYPE_VOLUMETEXTURE = 4,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1460 D3DRTYPE_CUBETEXTURE = 5,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1461 D3DRTYPE_VERTEXBUFFER = 6,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1462 D3DRTYPE_INDEXBUFFER = 7 //if this changes, change _D3DDEVINFO_RESOURCEMANAGER definition
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1463 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1464 typedef uint D3DRESOURCETYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1465
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1466 /* Usages */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1467 const D3DUSAGE_RENDERTARGET = 0x00000001L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1468 const D3DUSAGE_DEPTHSTENCIL = 0x00000002L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1469 const D3DUSAGE_DYNAMIC = 0x00000200L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1470 const D3DUSAGE_NONSECURE = 0x00800000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1471
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1472 // When passed to CheckDeviceFormat, D3DUSAGE_AUTOGENMIPMAP may return
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1473 // D3DOK_NOAUTOGEN if the device doesn't support autogeneration for that format.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1474 // D3DOK_NOAUTOGEN is a success code, not a failure code... the SUCCEEDED and FAILED macros
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1475 // will return true and false respectively for this code.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1476 const D3DUSAGE_AUTOGENMIPMAP = 0x00000400L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1477 const D3DUSAGE_DMAP = 0x00004000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1478
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1479 // The following usages are valid only for querying CheckDeviceFormat
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1480 const D3DUSAGE_QUERY_LEGACYBUMPMAP = 0x00008000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1481 const D3DUSAGE_QUERY_SRGBREAD = 0x00010000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1482 const D3DUSAGE_QUERY_FILTER = 0x00020000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1483 const D3DUSAGE_QUERY_SRGBWRITE = 0x00040000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1484 const D3DUSAGE_QUERY_POSTPIXELSHADER_BLENDING = 0x00080000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1485 const D3DUSAGE_QUERY_VERTEXTEXTURE = 0x00100000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1486 const D3DUSAGE_QUERY_WRAPANDMIP = 0x00200000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1487
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1488 /* Usages for Vertex/Index buffers */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1489 const D3DUSAGE_WRITEONLY = 0x00000008L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1490 const D3DUSAGE_SOFTWAREPROCESSING = 0x00000010L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1491 const D3DUSAGE_DONOTCLIP = 0x00000020L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1492 const D3DUSAGE_POINTS = 0x00000040L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1493 const D3DUSAGE_RTPATCHES = 0x00000080L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1494 const D3DUSAGE_NPATCHES = 0x00000100L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1495 const D3DUSAGE_TEXTAPI = 0x10000000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1496
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1497 /* CubeMap Face identifiers */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1498 enum : D3DCUBEMAP_FACES {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1499 D3DCUBEMAP_FACE_POSITIVE_X = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1500 D3DCUBEMAP_FACE_NEGATIVE_X = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1501 D3DCUBEMAP_FACE_POSITIVE_Y = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1502 D3DCUBEMAP_FACE_NEGATIVE_Y = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1503 D3DCUBEMAP_FACE_POSITIVE_Z = 4,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1504 D3DCUBEMAP_FACE_NEGATIVE_Z = 5
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1505 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1506 typedef uint D3DCUBEMAP_FACES;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1507
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1508 /* Lock flags */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1509 const D3DLOCK_READONLY = 0x00000010L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1510 const D3DLOCK_DISCARD = 0x00002000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1511 const D3DLOCK_NOOVERWRITE = 0x00001000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1512 const D3DLOCK_NOSYSLOCK = 0x00000800L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1513 const D3DLOCK_DONOTWAIT = 0x00004000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1514 const D3DLOCK_NO_DIRTY_UPDATE = 0x00008000L;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1515
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1516 /* Vertex Buffer Description */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1517 struct D3DVERTEXBUFFER_DESC {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1518 D3DFORMAT Format;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1519 D3DRESOURCETYPE Type;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1520 DWORD Usage;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1521 D3DPOOL Pool;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1522 UINT Size;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1523 DWORD FVF;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1524 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1525
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1526 /* Index Buffer Description */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1527 struct D3DINDEXBUFFER_DESC {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1528 D3DFORMAT Format;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1529 D3DRESOURCETYPE Type;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1530 DWORD Usage;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1531 D3DPOOL Pool;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1532 UINT Size;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1533 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1534
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1535
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1536 /* Surface Description */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1537 struct D3DSURFACE_DESC {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1538 D3DFORMAT Format;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1539 D3DRESOURCETYPE Type;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1540 DWORD Usage;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1541 D3DPOOL Pool;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1542
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1543 D3DMULTISAMPLE_TYPE MultiSampleType;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1544 DWORD MultiSampleQuality;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1545 UINT Width;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1546 UINT Height;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1547 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1548
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1549 struct D3DVOLUME_DESC {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1550 D3DFORMAT Format;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1551 D3DRESOURCETYPE Type;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1552 DWORD Usage;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1553 D3DPOOL Pool;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1554
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1555 UINT Width;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1556 UINT Height;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1557 UINT Depth;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1558 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1559
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1560 /* Structure for LockRect */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1561 struct D3DLOCKED_RECT {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1562 INT Pitch;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1563 void* pBits;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1564 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1565
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1566 /* Structures for LockBox */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1567 struct D3DBOX {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1568 UINT Left;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1569 UINT Top;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1570 UINT Right;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1571 UINT Bottom;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1572 UINT Front;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1573 UINT Back;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1574 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1575
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1576 struct D3DLOCKED_BOX
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1577 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1578 INT RowPitch;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1579 INT SlicePitch;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1580 void* pBits;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1581 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1582
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1583 /* Structures for LockRange */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1584 struct D3DRANGE
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1585 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1586 UINT Offset;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1587 UINT Size;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1588 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1589
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1590 /* Structures for high order primitives */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1591 struct D3DRECTPATCH_INFO
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1592 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1593 UINT StartVertexOffsetWidth;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1594 UINT StartVertexOffsetHeight;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1595 UINT Width;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1596 UINT Height;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1597 UINT Stride;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1598 D3DBASISTYPE Basis;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1599 D3DDEGREETYPE Degree;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1600 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1601
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1602 struct D3DTRIPATCH_INFO
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1603 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1604 UINT StartVertexOffset;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1605 UINT NumVertices;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1606 D3DBASISTYPE Basis;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1607 D3DDEGREETYPE Degree;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1608 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1609
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1610 /* Adapter Identifier */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1611
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1612 const MAX_DEVICE_IDENTIFIER_STRING = 512;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1613 struct D3DADAPTER_IDENTIFIER9
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1614 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1615 char[MAX_DEVICE_IDENTIFIER_STRING] Driver;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1616 char[MAX_DEVICE_IDENTIFIER_STRING] Description;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1617 char[32] DeviceName; /* Device name for GDI (ex. \\.\DISPLAY1) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1618
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1619 LARGE_INTEGER DriverVersion; /* Defined for 32 bit components */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1620
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1621 DWORD VendorId;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1622 DWORD DeviceId;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1623 DWORD SubSysId;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1624 DWORD Revision;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1625
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1626 GUID DeviceIdentifier;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1627
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1628 DWORD WHQLLevel;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1629 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1630
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1631
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1632 /* Raster Status structure returned by GetRasterStatus */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1633 struct D3DRASTER_STATUS
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1634 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1635 BOOL InVBlank;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1636 UINT ScanLine;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1637 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1638
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1639
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1640
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1641 /* Debug monitor tokens (DEBUG only)
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1642
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1643 Note that if D3DRS_DEBUGMONITORTOKEN is set, the call is treated as
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1644 passing a token to the debug monitor. For example, if, after passing
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1645 D3DDMT_ENABLE/DISABLE to D3DRS_DEBUGMONITORTOKEN other token values
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1646 are passed in, the enabled/disabled state of the debug
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1647 monitor will still persist.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1648
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1649 The debug monitor defaults to enabled.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1650
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1651 Calling GetRenderState on D3DRS_DEBUGMONITORTOKEN is not of any use.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1652 */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1653 enum : D3DDEBUGMONITORTOKENS {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1654 D3DDMT_ENABLE = 0, // enable debug monitor
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1655 D3DDMT_DISABLE = 1 // disable debug monitor
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1656 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1657 typedef uint D3DDEBUGMONITORTOKENS;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1658
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1659 // Async feedback
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1660
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1661 enum : D3DQUERYTYPE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1662 D3DQUERYTYPE_VCACHE = 4, /* D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1663 D3DQUERYTYPE_RESOURCEMANAGER = 5, /* D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1664 D3DQUERYTYPE_VERTEXSTATS = 6, /* D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1665 D3DQUERYTYPE_EVENT = 8, /* D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1666 D3DQUERYTYPE_OCCLUSION = 9, /* D3DISSUE_BEGIN, D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1667 D3DQUERYTYPE_TIMESTAMP = 10, /* D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1668 D3DQUERYTYPE_TIMESTAMPDISJOINT = 11, /* D3DISSUE_BEGIN, D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1669 D3DQUERYTYPE_TIMESTAMPFREQ = 12, /* D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1670 D3DQUERYTYPE_PIPELINETIMINGS = 13, /* D3DISSUE_BEGIN, D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1671 D3DQUERYTYPE_INTERFACETIMINGS = 14, /* D3DISSUE_BEGIN, D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1672 D3DQUERYTYPE_VERTEXTIMINGS = 15, /* D3DISSUE_BEGIN, D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1673 D3DQUERYTYPE_PIXELTIMINGS = 16, /* D3DISSUE_BEGIN, D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1674 D3DQUERYTYPE_BANDWIDTHTIMINGS = 17, /* D3DISSUE_BEGIN, D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1675 D3DQUERYTYPE_CACHEUTILIZATION = 18, /* D3DISSUE_BEGIN, D3DISSUE_END */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1676 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1677 typedef uint D3DQUERYTYPE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1678
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1679 // Flags field for Issue
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1680 const D3DISSUE_END = (1 << 0); // Tells the runtime to issue the end of a query, changing it's state to "non-signaled".
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1681 const D3DISSUE_BEGIN = (1 << 1); // Tells the runtime to issue the beginng of a query.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1682
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1683
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1684 // Flags field for GetData
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1685 const D3DGETDATA_FLUSH = (1 << 0); // Tells the runtime to flush if the query is outstanding.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1686
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1687
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1688 struct D3DRESOURCESTATS
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1689 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1690 // Data collected since last Present()
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1691 BOOL bThrashing; /* indicates if thrashing */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1692 DWORD ApproxBytesDownloaded; /* Approximate number of bytes downloaded by resource manager */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1693 DWORD NumEvicts; /* number of objects evicted */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1694 DWORD NumVidCreates; /* number of objects created in video memory */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1695 DWORD LastPri; /* priority of last object evicted */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1696 DWORD NumUsed; /* number of objects set to the device */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1697 DWORD NumUsedInVidMem; /* number of objects set to the device, which are already in video memory */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1698 // Persistent data
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1699 DWORD WorkingSet; /* number of objects in video memory */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1700 DWORD WorkingSetBytes; /* number of bytes in video memory */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1701 DWORD TotalManaged; /* total number of managed objects */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1702 DWORD TotalBytes; /* total number of bytes of managed objects */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1703 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1704
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1705 const D3DRTYPECOUNT = D3DRTYPE_INDEXBUFFER+1;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1706
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1707 struct D3DDEVINFO_RESOURCEMANAGER
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1708 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1709 //#ifndef WOW64_ENUM_WORKAROUND
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1710 // D3DRESOURCESTATS stats[D3DRTYPECOUNT];
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1711 D3DRESOURCESTATS stats[8];
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1712 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1713 alias D3DDEVINFO_RESOURCEMANAGER* LPD3DDEVINFO_RESOURCEMANAGER;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1714
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1715 struct D3DDEVINFO_D3DVERTEXSTATS
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1716 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1717 DWORD NumRenderedTriangles; /* total number of triangles that are not clipped in this frame */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1718 DWORD NumExtraClippingTriangles; /* Number of new triangles generated by clipping */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1719 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1720 alias D3DDEVINFO_D3DVERTEXSTATS *LPD3DDEVINFO_D3DVERTEXSTATS;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1721
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1722
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1723 struct D3DDEVINFO_VCACHE {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1724 DWORD Pattern; /* bit pattern, return value must be FOUR_CC('C', 'A', 'C', 'H') */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1725 DWORD OptMethod; /* optimization method 0 means longest strips, 1 means vertex cache based */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1726 DWORD CacheSize; /* cache size to optimize for (only required if type is 1) */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1727 DWORD MagicNumber; /* used to determine when to restart strips (only required if type is 1)*/
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1728 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1729 alias D3DDEVINFO_VCACHE *LPD3DDEVINFO_VCACHE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1730
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1731 struct D3DDEVINFO_D3D9PIPELINETIMINGS
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1732 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1733 FLOAT VertexProcessingTimePercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1734 FLOAT PixelProcessingTimePercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1735 FLOAT OtherGPUProcessingTimePercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1736 FLOAT GPUIdleTimePercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1737 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1738
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1739 struct D3DDEVINFO_D3D9INTERFACETIMINGS
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1740 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1741 FLOAT WaitingForGPUToUseApplicationResourceTimePercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1742 FLOAT WaitingForGPUToAcceptMoreCommandsTimePercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1743 FLOAT WaitingForGPUToStayWithinLatencyTimePercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1744 FLOAT WaitingForGPUExclusiveResourceTimePercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1745 FLOAT WaitingForGPUOtherTimePercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1746 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1747
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1748 struct D3DDEVINFO_D3D9STAGETIMINGS
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1749 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1750 FLOAT MemoryProcessingPercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1751 FLOAT ComputationProcessingPercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1752 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1753
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1754 struct D3DDEVINFO_D3D9BANDWIDTHTIMINGS
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1755 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1756 FLOAT MaxBandwidthUtilized;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1757 FLOAT FrontEndUploadMemoryUtilizedPercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1758 FLOAT VertexRateUtilizedPercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1759 FLOAT TriangleSetupRateUtilizedPercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1760 FLOAT FillRateUtilizedPercent;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1761 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1762
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1763 struct D3DDEVINFO_D3D9CACHEUTILIZATION
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1764 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1765 FLOAT TextureCacheHitRate; // Percentage of cache hits
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1766 FLOAT PostTransformVertexCacheHitRate;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1767 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1768
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1769 enum : D3DCOMPOSERECTSOP {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1770 D3DCOMPOSERECTS_COPY = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1771 D3DCOMPOSERECTS_OR = 2,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1772 D3DCOMPOSERECTS_AND = 3,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1773 D3DCOMPOSERECTS_NEG = 4
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1774 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1775 typedef uint D3DCOMPOSERECTSOP;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1776
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1777 struct D3DCOMPOSERECTDESC
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1778 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1779 USHORT X, Y; // Top-left coordinates of a rect in the source surface
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1780 USHORT Width, Height; // Dimensions of the rect
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1781 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1782
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1783 struct D3DCOMPOSERECTDESTINATION
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1784 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1785 USHORT SrcRectIndex; // Index of D3DCOMPOSERECTDESC
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1786 USHORT Reserved; // For alignment
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1787 SHORT X, Y; // Top-left coordinates of the rect in the destination surface
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1788 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1789
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1790 const D3DCOMPOSERECTS_MAXNUMRECTS = 0xFFFF;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1791 const D3DCONVOLUTIONMONO_MAXWIDTH = 7;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1792 const D3DCONVOLUTIONMONO_MAXHEIGHT = D3DCONVOLUTIONMONO_MAXWIDTH;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1793 const D3DFMT_A1_SURFACE_MAXWIDTH = 8192;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1794 const D3DFMT_A1_SURFACE_MAXHEIGHT = 2048;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1795
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1796
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1797 struct D3DPRESENTSTATS {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1798 UINT PresentCount;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1799 UINT PresentRefreshCount;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1800 UINT SyncRefreshCount;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1801 LARGE_INTEGER SyncQPCTime;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1802 LARGE_INTEGER SyncGPUTime;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1803 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1804
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1805 enum : D3DSCANLINEORDERING
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1806 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1807 D3DSCANLINEORDERING_UNKNOWN = 0,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1808 D3DSCANLINEORDERING_PROGRESSIVE = 1,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1809 D3DSCANLINEORDERING_INTERLACED = 2
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1810 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1811 typedef uint D3DSCANLINEORDERING;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1812
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1813
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1814 struct D3DDISPLAYMODEEX
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1815 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1816 UINT Size;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1817 UINT Width;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1818 UINT Height;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1819 UINT RefreshRate;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1820 D3DFORMAT Format;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1821 D3DSCANLINEORDERING ScanLineOrdering;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1822 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1823
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1824 struct D3DDISPLAYMODEFILTER
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1825 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1826 UINT Size;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1827 D3DFORMAT Format;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1828 D3DSCANLINEORDERING ScanLineOrdering;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1829 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1830
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1831
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1832 enum : D3DDISPLAYROTATION
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1833 {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1834 D3DDISPLAYROTATION_IDENTITY = 1, // No rotation.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1835 D3DDISPLAYROTATION_90 = 2, // Rotated 90 degrees.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1836 D3DDISPLAYROTATION_180 = 3, // Rotated 180 degrees.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1837 D3DDISPLAYROTATION_270 = 4 // Rotated 270 degrees.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1838 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1839 typedef uint D3DDISPLAYROTATION;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1840
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1841 /* For use in ID3DResource9::SetPriority calls */
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1842 const D3D9_RESOURCE_PRIORITY_MINIMUM = 0x28000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1843 const D3D9_RESOURCE_PRIORITY_LOW = 0x50000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1844 const D3D9_RESOURCE_PRIORITY_NORMAL = 0x78000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1845 const D3D9_RESOURCE_PRIORITY_HIGH = 0xa0000000;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1846 const D3D9_RESOURCE_PRIORITY_MAXIMUM = 0xc8000000;