st/nine: Setting D3DRS_ALPHAFUNC to 0 means D3DCMP_NEVER
[mesa.git] / src / gallium / state_trackers / nine / volumetexture9.c
1 /*
2 * Copyright 2011 Joakim Sindholt <opensource@zhasha.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
22
23 #include "device9.h"
24 #include "volumetexture9.h"
25 #include "nine_helpers.h"
26 #include "nine_pipe.h"
27
28 #define DBG_CHANNEL DBG_VOLUMETEXTURE
29
30 static HRESULT
31 NineVolumeTexture9_ctor( struct NineVolumeTexture9 *This,
32 struct NineUnknownParams *pParams,
33 UINT Width, UINT Height, UINT Depth, UINT Levels,
34 DWORD Usage,
35 D3DFORMAT Format,
36 D3DPOOL Pool,
37 HANDLE *pSharedHandle )
38 {
39 struct pipe_resource *info = &This->base.base.info;
40 struct pipe_screen *screen = pParams->device->screen;
41 enum pipe_format pf;
42 unsigned l;
43 D3DVOLUME_DESC voldesc;
44 HRESULT hr;
45
46 DBG("This=%p pParams=%p Width=%u Height=%u Depth=%u Levels=%u "
47 "Usage=%d Format=%d Pool=%d pSharedHandle=%p\n",
48 This, pParams, Width, Height, Depth, Levels,
49 Usage, Format, Pool, pSharedHandle);
50
51 /* An IDirect3DVolume9 cannot be bound as a render target can it ? */
52 user_assert(!(Usage & (D3DUSAGE_RENDERTARGET | D3DUSAGE_DEPTHSTENCIL)),
53 D3DERR_INVALIDCALL);
54 user_assert(!(Usage & D3DUSAGE_AUTOGENMIPMAP) ||
55 (Pool != D3DPOOL_SYSTEMMEM && Levels <= 1), D3DERR_INVALIDCALL);
56
57 user_assert(!pSharedHandle, D3DERR_INVALIDCALL); /* TODO */
58
59 if (Usage & D3DUSAGE_AUTOGENMIPMAP)
60 Levels = 0;
61
62 pf = d3d9_to_pipe_format_checked(screen, Format, PIPE_TEXTURE_3D, 0,
63 PIPE_BIND_SAMPLER_VIEW, FALSE);
64 if (pf == PIPE_FORMAT_NONE)
65 return D3DERR_INVALIDCALL;
66
67 /* We support ATI1 and ATI2 hacks only for 2D textures */
68 if (Format == D3DFMT_ATI1 || Format == D3DFMT_ATI2)
69 return D3DERR_INVALIDCALL;
70
71 info->screen = pParams->device->screen;
72 info->target = PIPE_TEXTURE_3D;
73 info->format = pf;
74 info->width0 = Width;
75 info->height0 = Height;
76 info->depth0 = Depth;
77 if (Levels)
78 info->last_level = Levels - 1;
79 else
80 info->last_level = util_logbase2(MAX2(MAX2(Width, Height), Depth));
81 info->array_size = 1;
82 info->nr_samples = 0;
83 info->bind = PIPE_BIND_SAMPLER_VIEW;
84 info->usage = PIPE_USAGE_DEFAULT;
85 info->flags = 0;
86
87 if (Usage & D3DUSAGE_DYNAMIC) {
88 info->usage = PIPE_USAGE_DYNAMIC;
89 info->bind |=
90 PIPE_BIND_TRANSFER_READ |
91 PIPE_BIND_TRANSFER_WRITE;
92 }
93
94 This->volumes = CALLOC(info->last_level + 1, sizeof(*This->volumes));
95 if (!This->volumes)
96 return E_OUTOFMEMORY;
97 This->base.pstype = 3;
98
99 hr = NineBaseTexture9_ctor(&This->base, pParams, NULL,
100 D3DRTYPE_VOLUMETEXTURE, Format, Pool, Usage);
101 if (FAILED(hr))
102 return hr;
103
104 voldesc.Format = Format;
105 voldesc.Type = D3DRTYPE_VOLUME;
106 voldesc.Usage = Usage;
107 voldesc.Pool = Pool;
108 for (l = 0; l <= info->last_level; ++l) {
109 voldesc.Width = u_minify(Width, l);
110 voldesc.Height = u_minify(Height, l);
111 voldesc.Depth = u_minify(Depth, l);
112
113 hr = NineVolume9_new(This->base.base.base.device, NineUnknown(This),
114 This->base.base.resource, l,
115 &voldesc, &This->volumes[l]);
116 if (FAILED(hr))
117 return hr;
118 }
119
120 return D3D_OK;
121 }
122
123 static void
124 NineVolumeTexture9_dtor( struct NineVolumeTexture9 *This )
125 {
126 unsigned l;
127
128 DBG("This=%p\n", This);
129
130 if (This->volumes) {
131 for (l = 0; l < This->base.base.info.last_level; ++l)
132 NineUnknown_Destroy(&This->volumes[l]->base);
133 FREE(This->volumes);
134 }
135
136 NineBaseTexture9_dtor(&This->base);
137 }
138
139 HRESULT WINAPI
140 NineVolumeTexture9_GetLevelDesc( struct NineVolumeTexture9 *This,
141 UINT Level,
142 D3DVOLUME_DESC *pDesc )
143 {
144 user_assert(Level <= This->base.base.info.last_level, D3DERR_INVALIDCALL);
145 user_assert(Level == 0 || !(This->base.base.usage & D3DUSAGE_AUTOGENMIPMAP),
146 D3DERR_INVALIDCALL);
147
148 *pDesc = This->volumes[Level]->desc;
149
150 return D3D_OK;
151 }
152
153 HRESULT WINAPI
154 NineVolumeTexture9_GetVolumeLevel( struct NineVolumeTexture9 *This,
155 UINT Level,
156 IDirect3DVolume9 **ppVolumeLevel )
157 {
158 user_assert(Level <= This->base.base.info.last_level, D3DERR_INVALIDCALL);
159 user_assert(Level == 0 || !(This->base.base.usage & D3DUSAGE_AUTOGENMIPMAP),
160 D3DERR_INVALIDCALL);
161
162 NineUnknown_AddRef(NineUnknown(This->volumes[Level]));
163 *ppVolumeLevel = (IDirect3DVolume9 *)This->volumes[Level];
164
165 return D3D_OK;
166 }
167
168 HRESULT WINAPI
169 NineVolumeTexture9_LockBox( struct NineVolumeTexture9 *This,
170 UINT Level,
171 D3DLOCKED_BOX *pLockedVolume,
172 const D3DBOX *pBox,
173 DWORD Flags )
174 {
175 DBG("This=%p Level=%u pLockedVolume=%p pBox=%p Flags=%d\n",
176 This, Level, pLockedVolume, pBox, Flags);
177
178 user_assert(Level <= This->base.base.info.last_level, D3DERR_INVALIDCALL);
179 user_assert(Level == 0 || !(This->base.base.usage & D3DUSAGE_AUTOGENMIPMAP),
180 D3DERR_INVALIDCALL);
181
182 return NineVolume9_LockBox(This->volumes[Level], pLockedVolume, pBox,
183 Flags);
184 }
185
186 HRESULT WINAPI
187 NineVolumeTexture9_UnlockBox( struct NineVolumeTexture9 *This,
188 UINT Level )
189 {
190 DBG("This=%p Level=%u\n", This, Level);
191
192 user_assert(Level <= This->base.base.info.last_level, D3DERR_INVALIDCALL);
193
194 return NineVolume9_UnlockBox(This->volumes[Level]);
195 }
196
197 HRESULT WINAPI
198 NineVolumeTexture9_AddDirtyBox( struct NineVolumeTexture9 *This,
199 const D3DBOX *pDirtyBox )
200 {
201 DBG("This=%p pDirtybox=%p\n", This, pDirtyBox);
202
203 if (This->base.base.pool != D3DPOOL_MANAGED) {
204 if (This->base.base.usage & D3DUSAGE_AUTOGENMIPMAP)
205 This->base.dirty_mip = TRUE;
206 return D3D_OK;
207 }
208 This->base.dirty = TRUE;
209
210 BASETEX_REGISTER_UPDATE(&This->base);
211
212 if (!pDirtyBox) {
213 This->dirty_box.x = 0;
214 This->dirty_box.y = 0;
215 This->dirty_box.z = 0;
216 This->dirty_box.width = This->base.base.info.width0;
217 This->dirty_box.height = This->base.base.info.height0;
218 This->dirty_box.depth = This->base.base.info.depth0;
219 } else {
220 struct pipe_box box;
221 d3dbox_to_pipe_box(&box, pDirtyBox);
222 u_box_union_3d(&This->dirty_box, &This->dirty_box, &box);
223 }
224 return D3D_OK;
225 }
226
227 IDirect3DVolumeTexture9Vtbl NineVolumeTexture9_vtable = {
228 (void *)NineUnknown_QueryInterface,
229 (void *)NineUnknown_AddRef,
230 (void *)NineUnknown_Release,
231 (void *)NineUnknown_GetDevice, /* actually part of Resource9 iface */
232 (void *)NineResource9_SetPrivateData,
233 (void *)NineResource9_GetPrivateData,
234 (void *)NineResource9_FreePrivateData,
235 (void *)NineResource9_SetPriority,
236 (void *)NineResource9_GetPriority,
237 (void *)NineBaseTexture9_PreLoad,
238 (void *)NineResource9_GetType,
239 (void *)NineBaseTexture9_SetLOD,
240 (void *)NineBaseTexture9_GetLOD,
241 (void *)NineBaseTexture9_GetLevelCount,
242 (void *)NineBaseTexture9_SetAutoGenFilterType,
243 (void *)NineBaseTexture9_GetAutoGenFilterType,
244 (void *)NineBaseTexture9_GenerateMipSubLevels,
245 (void *)NineVolumeTexture9_GetLevelDesc,
246 (void *)NineVolumeTexture9_GetVolumeLevel,
247 (void *)NineVolumeTexture9_LockBox,
248 (void *)NineVolumeTexture9_UnlockBox,
249 (void *)NineVolumeTexture9_AddDirtyBox
250 };
251
252 static const GUID *NineVolumeTexture9_IIDs[] = {
253 &IID_IDirect3DVolumeTexture9,
254 &IID_IDirect3DBaseTexture9,
255 &IID_IDirect3DResource9,
256 &IID_IUnknown,
257 NULL
258 };
259
260 HRESULT
261 NineVolumeTexture9_new( struct NineDevice9 *pDevice,
262 UINT Width, UINT Height, UINT Depth, UINT Levels,
263 DWORD Usage,
264 D3DFORMAT Format,
265 D3DPOOL Pool,
266 struct NineVolumeTexture9 **ppOut,
267 HANDLE *pSharedHandle )
268 {
269 NINE_DEVICE_CHILD_NEW(VolumeTexture9, ppOut, pDevice,
270 Width, Height, Depth, Levels,
271 Usage, Format, Pool, pSharedHandle);
272 }
273