crypt32: Initialize HashEncryptionAlgorithm.
[wine/wine-gecko.git] / dlls / wined3d / cubetexture.c
blob13ec3a842408084013c889b83f67ce7c3ba070a7
1 /*
2 * IWineD3DCubeTexture implementation
4 * Copyright 2002-2005 Jason Edmeades
5 * Copyright 2002-2005 Raphael Junqueira
6 * Copyright 2005 Oliver Stieber
7 * Copyright 2007-2008 Stefan Dösinger for CodeWeavers
8 * Copyright 2009 Henri Verbeet for CodeWeavers
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "config.h"
26 #include "wined3d_private.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(d3d_texture);
30 /* Do not call while under the GL lock. */
31 static void cubetexture_internal_preload(IWineD3DBaseTexture *iface, enum WINED3DSRGB srgb)
33 /* Override the IWineD3DResource Preload method. */
34 IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
35 UINT sub_count = This->baseTexture.level_count * This->baseTexture.layer_count;
36 IWineD3DDeviceImpl *device = This->resource.device;
37 struct wined3d_context *context = NULL;
38 BOOL srgb_mode;
39 BOOL *dirty;
40 UINT i;
42 switch (srgb)
44 case SRGB_RGB:
45 srgb_mode = FALSE;
46 break;
48 case SRGB_BOTH:
49 cubetexture_internal_preload(iface, SRGB_RGB);
50 /* Fallthrough */
52 case SRGB_SRGB:
53 srgb_mode = TRUE;
54 break;
56 default:
57 srgb_mode = This->baseTexture.is_srgb;
58 break;
60 dirty = srgb_mode ? &This->baseTexture.texture_srgb.dirty : &This->baseTexture.texture_rgb.dirty;
62 TRACE("(%p) : About to load texture: dirtified(%u).\n", This, *dirty);
64 /* We only have to activate a context for gl when we're not drawing.
65 * In most cases PreLoad will be called during draw and a context was
66 * activated at the beginning of drawPrimitive. */
67 if (!device->isInDraw)
69 /* No danger of recursive calls, context_acquire() sets isInDraw to true
70 * when loading offscreen render targets into their texture. */
71 context = context_acquire(device, NULL);
74 if (This->resource.format->id == WINED3DFMT_P8_UINT
75 || This->resource.format->id == WINED3DFMT_P8_UINT_A8_UNORM)
77 for (i = 0; i < sub_count; ++i)
79 IWineD3DSurfaceImpl *surface = (IWineD3DSurfaceImpl *)This->baseTexture.sub_resources[i];
81 if (palette9_changed(surface))
83 TRACE("Reloading surface %p because the d3d8/9 palette was changed.\n", surface);
84 /* TODO: This is not necessarily needed with hw palettized texture support. */
85 surface_load_location(surface, SFLAG_INSYSMEM, NULL);
86 /* Make sure the texture is reloaded because of the palette change,
87 * this kills performance though :( */
88 surface_modify_location(surface, SFLAG_INTEXTURE, FALSE);
93 /* If the texture is marked dirty or the srgb sampler setting has changed
94 * since the last load then reload the surfaces. */
95 if (*dirty)
97 for (i = 0; i < sub_count; ++i)
99 IWineD3DSurface_LoadTexture((IWineD3DSurface *)This->baseTexture.sub_resources[i], srgb_mode);
102 else
104 TRACE("(%p) Texture not dirty, nothing to do.\n" , iface);
107 /* No longer dirty. */
108 *dirty = FALSE;
110 if (context) context_release(context);
113 static void cubetexture_cleanup(IWineD3DCubeTextureImpl *This)
115 UINT sub_count = This->baseTexture.level_count * This->baseTexture.layer_count;
116 UINT i;
118 TRACE("(%p) : Cleaning up.\n", This);
120 for (i = 0; i < sub_count; ++i)
122 IWineD3DSurfaceImpl *surface = (IWineD3DSurfaceImpl *)This->baseTexture.sub_resources[i];
124 if (surface)
126 /* Clean out the texture name we gave to the surface so that the
127 * surface doesn't try and release it. */
128 surface_set_texture_name(surface, 0, TRUE);
129 surface_set_texture_name(surface, 0, FALSE);
130 surface_set_texture_target(surface, 0);
131 surface_set_container(surface, WINED3D_CONTAINER_NONE, NULL);
132 IWineD3DSurface_Release((IWineD3DSurface *)surface);
135 basetexture_cleanup((IWineD3DBaseTexture *)This);
138 /* *******************************************
139 IWineD3DCubeTexture IUnknown parts follow
140 ******************************************* */
142 static HRESULT WINAPI IWineD3DCubeTextureImpl_QueryInterface(IWineD3DCubeTexture *iface, REFIID riid, LPVOID *ppobj)
144 IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
145 TRACE("(%p)->(%s,%p)\n",This,debugstr_guid(riid),ppobj);
146 if (IsEqualGUID(riid, &IID_IUnknown)
147 || IsEqualGUID(riid, &IID_IWineD3DBase)
148 || IsEqualGUID(riid, &IID_IWineD3DResource)
149 || IsEqualGUID(riid, &IID_IWineD3DBaseTexture)
150 || IsEqualGUID(riid, &IID_IWineD3DCubeTexture)) {
151 IUnknown_AddRef(iface);
152 *ppobj = This;
153 return S_OK;
155 *ppobj = NULL;
156 return E_NOINTERFACE;
159 static ULONG WINAPI IWineD3DCubeTextureImpl_AddRef(IWineD3DCubeTexture *iface) {
160 IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
161 TRACE("(%p) : AddRef increasing from %d\n", This, This->resource.ref);
162 return InterlockedIncrement(&This->resource.ref);
165 /* Do not call while under the GL lock. */
166 static ULONG WINAPI IWineD3DCubeTextureImpl_Release(IWineD3DCubeTexture *iface) {
167 IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
168 ULONG ref;
169 TRACE("(%p) : Releasing from %d\n", This, This->resource.ref);
170 ref = InterlockedDecrement(&This->resource.ref);
171 if (!ref)
173 cubetexture_cleanup(This);
174 This->resource.parent_ops->wined3d_object_destroyed(This->resource.parent);
175 HeapFree(GetProcessHeap(), 0, This);
177 return ref;
180 /* ****************************************************
181 IWineD3DCubeTexture IWineD3DResource parts follow
182 **************************************************** */
183 static HRESULT WINAPI IWineD3DCubeTextureImpl_SetPrivateData(IWineD3DCubeTexture *iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
184 return resource_set_private_data((IWineD3DResource *)iface, refguid, pData, SizeOfData, Flags);
187 static HRESULT WINAPI IWineD3DCubeTextureImpl_GetPrivateData(IWineD3DCubeTexture *iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
188 return resource_get_private_data((IWineD3DResource *)iface, refguid, pData, pSizeOfData);
191 static HRESULT WINAPI IWineD3DCubeTextureImpl_FreePrivateData(IWineD3DCubeTexture *iface, REFGUID refguid) {
192 return resource_free_private_data((IWineD3DResource *)iface, refguid);
195 static DWORD WINAPI IWineD3DCubeTextureImpl_SetPriority(IWineD3DCubeTexture *iface, DWORD PriorityNew) {
196 return resource_set_priority((IWineD3DResource *)iface, PriorityNew);
199 static DWORD WINAPI IWineD3DCubeTextureImpl_GetPriority(IWineD3DCubeTexture *iface) {
200 return resource_get_priority((IWineD3DResource *)iface);
203 /* Do not call while under the GL lock. */
204 static void WINAPI IWineD3DCubeTextureImpl_PreLoad(IWineD3DCubeTexture *iface) {
205 cubetexture_internal_preload((IWineD3DBaseTexture *) iface, SRGB_ANY);
208 /* Do not call while under the GL lock. */
209 static void WINAPI IWineD3DCubeTextureImpl_UnLoad(IWineD3DCubeTexture *iface)
211 IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
212 UINT sub_count = This->baseTexture.level_count * This->baseTexture.layer_count;
213 UINT i;
215 TRACE("iface %p.\n", iface);
217 /* Unload all the surfaces and reset the texture name. If UnLoad was called on the
218 * surface before, this one will be a NOP and vice versa. Unloading an unloaded
219 * surface is fine. */
221 for (i = 0; i < sub_count; ++i)
223 IWineD3DSurfaceImpl *surface = (IWineD3DSurfaceImpl *)This->baseTexture.sub_resources[i];
225 IWineD3DSurface_UnLoad((IWineD3DSurface *)surface);
226 surface_set_texture_name(surface, 0, TRUE);
227 surface_set_texture_name(surface, 0, FALSE);
230 basetexture_unload((IWineD3DBaseTexture *)iface);
233 static WINED3DRESOURCETYPE WINAPI IWineD3DCubeTextureImpl_GetType(IWineD3DCubeTexture *iface) {
234 return resource_get_type((IWineD3DResource *)iface);
237 static void * WINAPI IWineD3DCubeTextureImpl_GetParent(IWineD3DCubeTexture *iface)
239 TRACE("iface %p.\n", iface);
241 return ((IWineD3DCubeTextureImpl *)iface)->resource.parent;
244 /* ******************************************************
245 IWineD3DCubeTexture IWineD3DBaseTexture parts follow
246 ****************************************************** */
247 static DWORD WINAPI IWineD3DCubeTextureImpl_SetLOD(IWineD3DCubeTexture *iface, DWORD LODNew) {
248 return basetexture_set_lod((IWineD3DBaseTexture *)iface, LODNew);
251 static DWORD WINAPI IWineD3DCubeTextureImpl_GetLOD(IWineD3DCubeTexture *iface) {
252 return basetexture_get_lod((IWineD3DBaseTexture *)iface);
255 static DWORD WINAPI IWineD3DCubeTextureImpl_GetLevelCount(IWineD3DCubeTexture *iface) {
256 return basetexture_get_level_count((IWineD3DBaseTexture *)iface);
259 static HRESULT WINAPI IWineD3DCubeTextureImpl_SetAutoGenFilterType(IWineD3DCubeTexture *iface, WINED3DTEXTUREFILTERTYPE FilterType) {
260 return basetexture_set_autogen_filter_type((IWineD3DBaseTexture *)iface, FilterType);
263 static WINED3DTEXTUREFILTERTYPE WINAPI IWineD3DCubeTextureImpl_GetAutoGenFilterType(IWineD3DCubeTexture *iface) {
264 return basetexture_get_autogen_filter_type((IWineD3DBaseTexture *)iface);
267 static void WINAPI IWineD3DCubeTextureImpl_GenerateMipSubLevels(IWineD3DCubeTexture *iface) {
268 basetexture_generate_mipmaps((IWineD3DBaseTexture *)iface);
271 /* Internal function, No d3d mapping */
272 static BOOL WINAPI IWineD3DCubeTextureImpl_SetDirty(IWineD3DCubeTexture *iface, BOOL dirty) {
273 return basetexture_set_dirty((IWineD3DBaseTexture *)iface, dirty);
276 /* Internal function, No d3d mapping */
277 static BOOL WINAPI IWineD3DCubeTextureImpl_GetDirty(IWineD3DCubeTexture *iface) {
278 return basetexture_get_dirty((IWineD3DBaseTexture *)iface);
281 /* Context activation is done by the caller. */
282 static HRESULT WINAPI IWineD3DCubeTextureImpl_BindTexture(IWineD3DCubeTexture *iface, BOOL srgb) {
283 IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
284 BOOL set_gl_texture_desc;
285 HRESULT hr;
287 TRACE("(%p) : relay to BaseTexture\n", This);
289 hr = basetexture_bind((IWineD3DBaseTexture *)iface, srgb, &set_gl_texture_desc);
290 if (set_gl_texture_desc && SUCCEEDED(hr))
292 UINT sub_count = This->baseTexture.level_count * This->baseTexture.layer_count;
293 UINT i;
295 for (i = 0; i < sub_count; ++i)
297 IWineD3DSurfaceImpl *surface = (IWineD3DSurfaceImpl *)This->baseTexture.sub_resources[i];
299 if (This->baseTexture.is_srgb)
300 surface_set_texture_name(surface, This->baseTexture.texture_srgb.name, TRUE);
301 else
302 surface_set_texture_name(surface, This->baseTexture.texture_rgb.name, FALSE);
306 return hr;
309 static UINT WINAPI IWineD3DCubeTextureImpl_GetTextureDimensions(IWineD3DCubeTexture *iface)
311 TRACE("iface %p.\n", iface);
313 return GL_TEXTURE_CUBE_MAP_ARB;
316 static BOOL WINAPI IWineD3DCubeTextureImpl_IsCondNP2(IWineD3DCubeTexture *iface)
318 TRACE("iface %p.\n", iface);
320 return FALSE;
323 /* *******************************************
324 IWineD3DCubeTexture IWineD3DCubeTexture parts follow
325 ******************************************* */
326 static HRESULT WINAPI IWineD3DCubeTextureImpl_GetLevelDesc(IWineD3DCubeTexture *iface,
327 UINT level, WINED3DSURFACE_DESC *desc)
329 IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
330 IWineD3DSurface *surface;
332 TRACE("iface %p, level %u, desc %p.\n", iface, level, desc);
334 if (!(surface = (IWineD3DSurface *)basetexture_get_sub_resource(texture, 0, level)))
336 WARN("Failed to get sub-resource.\n");
337 return WINED3DERR_INVALIDCALL;
340 IWineD3DSurface_GetDesc(surface, desc);
342 return WINED3D_OK;
345 static HRESULT WINAPI IWineD3DCubeTextureImpl_GetCubeMapSurface(IWineD3DCubeTexture *iface,
346 WINED3DCUBEMAP_FACES face, UINT level, IWineD3DSurface **surface)
348 IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
349 IWineD3DSurface *s;
351 TRACE("iface %p, face %u, level %u, surface %p.\n",
352 iface, face, level, surface);
354 if (!(s = (IWineD3DSurface *)basetexture_get_sub_resource(texture, face, level)))
356 WARN("Failed to get sub-resource.\n");
357 return WINED3DERR_INVALIDCALL;
360 IWineD3DSurface_AddRef(s);
361 *surface = s;
363 TRACE("Returning surface %p.\n", *surface);
365 return WINED3D_OK;
368 static HRESULT WINAPI IWineD3DCubeTextureImpl_LockRect(IWineD3DCubeTexture *iface,
369 WINED3DCUBEMAP_FACES face, UINT level, WINED3DLOCKED_RECT *locked_rect, const RECT *rect, DWORD flags)
371 IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
372 IWineD3DSurface *surface;
374 TRACE("iface %p, face %u, level %u, locked_rect %p, rect %s, flags %#x.\n",
375 iface, face, level, locked_rect, wine_dbgstr_rect(rect), flags);
377 if (!(surface = (IWineD3DSurface *)basetexture_get_sub_resource(texture, face, level)))
379 WARN("Failed to get sub-resource.\n");
380 return WINED3DERR_INVALIDCALL;
383 return IWineD3DSurface_LockRect(surface, locked_rect, rect, flags);
386 static HRESULT WINAPI IWineD3DCubeTextureImpl_UnlockRect(IWineD3DCubeTexture *iface,
387 WINED3DCUBEMAP_FACES face, UINT level)
389 IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
390 IWineD3DSurface *surface;
392 TRACE("iface %p, face %u, level %u.\n",
393 iface, face, level);
395 if (!(surface = (IWineD3DSurface *)basetexture_get_sub_resource(texture, face, level)))
397 WARN("Failed to get sub-resource.\n");
398 return WINED3DERR_INVALIDCALL;
401 return IWineD3DSurface_UnlockRect(surface);
404 static HRESULT WINAPI IWineD3DCubeTextureImpl_AddDirtyRect(IWineD3DCubeTexture *iface,
405 WINED3DCUBEMAP_FACES face, const RECT *dirty_rect)
407 IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
408 IWineD3DSurfaceImpl *surface;
410 TRACE("iface %p, face %u, dirty_rect %s.\n",
411 iface, face, wine_dbgstr_rect(dirty_rect));
413 if (!(surface = (IWineD3DSurfaceImpl *)basetexture_get_sub_resource(texture, face, 0)))
415 WARN("Failed to get sub-resource.\n");
416 return WINED3DERR_INVALIDCALL;
419 texture->baseTexture.texture_rgb.dirty = TRUE;
420 texture->baseTexture.texture_srgb.dirty = TRUE;
421 surface_add_dirty_rect(surface, dirty_rect);
423 return WINED3D_OK;
426 static const IWineD3DCubeTextureVtbl IWineD3DCubeTexture_Vtbl =
428 /* IUnknown */
429 IWineD3DCubeTextureImpl_QueryInterface,
430 IWineD3DCubeTextureImpl_AddRef,
431 IWineD3DCubeTextureImpl_Release,
432 /* IWineD3DResource */
433 IWineD3DCubeTextureImpl_GetParent,
434 IWineD3DCubeTextureImpl_SetPrivateData,
435 IWineD3DCubeTextureImpl_GetPrivateData,
436 IWineD3DCubeTextureImpl_FreePrivateData,
437 IWineD3DCubeTextureImpl_SetPriority,
438 IWineD3DCubeTextureImpl_GetPriority,
439 IWineD3DCubeTextureImpl_PreLoad,
440 IWineD3DCubeTextureImpl_UnLoad,
441 IWineD3DCubeTextureImpl_GetType,
442 /* IWineD3DBaseTexture */
443 IWineD3DCubeTextureImpl_SetLOD,
444 IWineD3DCubeTextureImpl_GetLOD,
445 IWineD3DCubeTextureImpl_GetLevelCount,
446 IWineD3DCubeTextureImpl_SetAutoGenFilterType,
447 IWineD3DCubeTextureImpl_GetAutoGenFilterType,
448 IWineD3DCubeTextureImpl_GenerateMipSubLevels,
449 IWineD3DCubeTextureImpl_SetDirty,
450 IWineD3DCubeTextureImpl_GetDirty,
451 IWineD3DCubeTextureImpl_BindTexture,
452 IWineD3DCubeTextureImpl_GetTextureDimensions,
453 IWineD3DCubeTextureImpl_IsCondNP2,
454 /* IWineD3DCubeTexture */
455 IWineD3DCubeTextureImpl_GetLevelDesc,
456 IWineD3DCubeTextureImpl_GetCubeMapSurface,
457 IWineD3DCubeTextureImpl_LockRect,
458 IWineD3DCubeTextureImpl_UnlockRect,
459 IWineD3DCubeTextureImpl_AddDirtyRect
462 HRESULT cubetexture_init(IWineD3DCubeTextureImpl *texture, UINT edge_length, UINT levels,
463 IWineD3DDeviceImpl *device, DWORD usage, enum wined3d_format_id format_id, WINED3DPOOL pool,
464 void *parent, const struct wined3d_parent_ops *parent_ops)
466 const struct wined3d_gl_info *gl_info = &device->adapter->gl_info;
467 const struct wined3d_format *format = wined3d_get_format(gl_info, format_id);
468 UINT pow2_edge_length;
469 unsigned int i, j;
470 UINT tmp_w;
471 HRESULT hr;
473 /* TODO: It should only be possible to create textures for formats
474 * that are reported as supported. */
475 if (WINED3DFMT_UNKNOWN >= format_id)
477 WARN("(%p) : Texture cannot be created with a format of WINED3DFMT_UNKNOWN.\n", texture);
478 return WINED3DERR_INVALIDCALL;
481 if (!gl_info->supported[ARB_TEXTURE_CUBE_MAP] && pool != WINED3DPOOL_SCRATCH)
483 WARN("(%p) : Tried to create not supported cube texture.\n", texture);
484 return WINED3DERR_INVALIDCALL;
487 /* Calculate levels for mip mapping */
488 if (usage & WINED3DUSAGE_AUTOGENMIPMAP)
490 if (!gl_info->supported[SGIS_GENERATE_MIPMAP])
492 WARN("No mipmap generation support, returning D3DERR_INVALIDCALL.\n");
493 return WINED3DERR_INVALIDCALL;
496 if (levels > 1)
498 WARN("D3DUSAGE_AUTOGENMIPMAP is set, and level count > 1, returning D3DERR_INVALIDCALL.\n");
499 return WINED3DERR_INVALIDCALL;
502 levels = 1;
504 else if (!levels)
506 levels = wined3d_log2i(edge_length) + 1;
507 TRACE("Calculated levels = %u.\n", levels);
510 texture->lpVtbl = &IWineD3DCubeTexture_Vtbl;
512 hr = basetexture_init((IWineD3DBaseTextureImpl *)texture, 6, levels,
513 WINED3DRTYPE_CUBETEXTURE, device, 0, usage, format, pool, parent, parent_ops);
514 if (FAILED(hr))
516 WARN("Failed to initialize basetexture, returning %#x\n", hr);
517 return hr;
520 /* Find the nearest pow2 match. */
521 pow2_edge_length = 1;
522 while (pow2_edge_length < edge_length) pow2_edge_length <<= 1;
524 if (gl_info->supported[ARB_TEXTURE_NON_POWER_OF_TWO] || (edge_length == pow2_edge_length))
526 /* Precalculated scaling for 'faked' non power of two texture coords. */
527 texture->baseTexture.pow2Matrix[0] = 1.0f;
528 texture->baseTexture.pow2Matrix[5] = 1.0f;
529 texture->baseTexture.pow2Matrix[10] = 1.0f;
530 texture->baseTexture.pow2Matrix[15] = 1.0f;
532 else
534 /* Precalculated scaling for 'faked' non power of two texture coords. */
535 texture->baseTexture.pow2Matrix[0] = ((float)edge_length) / ((float)pow2_edge_length);
536 texture->baseTexture.pow2Matrix[5] = ((float)edge_length) / ((float)pow2_edge_length);
537 texture->baseTexture.pow2Matrix[10] = ((float)edge_length) / ((float)pow2_edge_length);
538 texture->baseTexture.pow2Matrix[15] = 1.0f;
539 texture->baseTexture.pow2Matrix_identity = FALSE;
542 /* Generate all the surfaces. */
543 tmp_w = edge_length;
544 for (i = 0; i < texture->baseTexture.level_count; ++i)
546 /* Create the 6 faces. */
547 for (j = 0; j < 6; ++j)
549 static const GLenum cube_targets[6] =
551 GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB,
552 GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB,
553 GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB,
554 GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB,
555 GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB,
556 GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB,
558 UINT idx = j * texture->baseTexture.level_count + i;
559 IWineD3DSurface *surface;
561 hr = IWineD3DDeviceParent_CreateSurface(device->device_parent, parent, tmp_w, tmp_w,
562 format_id, usage, pool, i /* Level */, j, &surface);
563 if (FAILED(hr))
565 FIXME("(%p) Failed to create surface, hr %#x.\n", texture, hr);
566 cubetexture_cleanup(texture);
567 return hr;
570 surface_set_container((IWineD3DSurfaceImpl *)surface, WINED3D_CONTAINER_TEXTURE, (IWineD3DBase *)texture);
571 surface_set_texture_target((IWineD3DSurfaceImpl *)surface, cube_targets[j]);
572 texture->baseTexture.sub_resources[idx] = (IWineD3DResourceImpl *)surface;
573 TRACE("Created surface level %u @ %p.\n", i, surface);
575 tmp_w = max(1, tmp_w >> 1);
577 texture->baseTexture.internal_preload = cubetexture_internal_preload;
579 return WINED3D_OK;