2005-01-17 14:44:57 +01:00
|
|
|
/*
|
2005-03-14 11:12:52 +01:00
|
|
|
* IWineD3DCubeTexture implementation
|
2005-01-17 14:44:57 +01:00
|
|
|
*
|
|
|
|
* Copyright 2002-2005 Jason Edmeades
|
2005-03-02 14:44:58 +01:00
|
|
|
* Copyright 2002-2005 Raphael Junqueira
|
|
|
|
* Copyright 2005 Oliver Stieber
|
2008-10-18 19:21:20 +02:00
|
|
|
* Copyright 2007-2008 Stefan Dösinger for CodeWeavers
|
2010-11-18 20:50:40 +01:00
|
|
|
* Copyright 2009-2010 Henri Verbeet for CodeWeavers
|
2005-01-17 14:44:57 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-01-17 14:44:57 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wined3d_private.h"
|
|
|
|
|
2008-09-17 17:51:44 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d_texture);
|
2009-06-03 10:47:26 +02:00
|
|
|
|
2011-01-04 17:42:03 +01:00
|
|
|
/* Context activation is done by the caller. */
|
2011-03-03 09:24:11 +01:00
|
|
|
static HRESULT cubetexture_bind(IWineD3DBaseTextureImpl *texture,
|
|
|
|
const struct wined3d_gl_info *gl_info, BOOL srgb)
|
2011-01-04 17:42:03 +01:00
|
|
|
{
|
|
|
|
BOOL set_gl_texture_desc;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2011-03-03 09:24:11 +01:00
|
|
|
TRACE("texture %p, gl_info %p, srgb %#x.\n", texture, gl_info, srgb);
|
2011-01-04 17:42:03 +01:00
|
|
|
|
2011-03-03 09:24:11 +01:00
|
|
|
hr = basetexture_bind(texture, gl_info, srgb, &set_gl_texture_desc);
|
2011-01-04 17:42:03 +01:00
|
|
|
if (set_gl_texture_desc && SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
UINT sub_count = texture->baseTexture.level_count * texture->baseTexture.layer_count;
|
2011-03-03 09:24:10 +01:00
|
|
|
BOOL srgb_tex = !gl_info->supported[EXT_TEXTURE_SRGB_DECODE] && texture->baseTexture.is_srgb;
|
|
|
|
GLuint name = srgb_tex ? texture->baseTexture.texture_srgb.name : texture->baseTexture.texture_rgb.name;
|
2011-01-04 17:42:03 +01:00
|
|
|
UINT i;
|
|
|
|
|
|
|
|
for (i = 0; i < sub_count; ++i)
|
|
|
|
{
|
2011-03-01 09:47:56 +01:00
|
|
|
IWineD3DSurfaceImpl *surface = surface_from_resource(texture->baseTexture.sub_resources[i]);
|
2011-03-03 09:24:10 +01:00
|
|
|
surface_set_texture_name(surface, name, srgb_tex);
|
2011-01-04 17:42:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2010-09-02 19:25:00 +02:00
|
|
|
/* Do not call while under the GL lock. */
|
2011-01-04 17:42:03 +01:00
|
|
|
static void cubetexture_preload(IWineD3DBaseTextureImpl *texture, enum WINED3DSRGB srgb)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2011-01-03 18:51:41 +01:00
|
|
|
UINT sub_count = texture->baseTexture.level_count * texture->baseTexture.layer_count;
|
|
|
|
IWineD3DDeviceImpl *device = texture->resource.device;
|
2011-03-03 09:24:10 +01:00
|
|
|
const struct wined3d_gl_info *gl_info = &device->adapter->gl_info;
|
2009-10-28 11:00:11 +01:00
|
|
|
struct wined3d_context *context = NULL;
|
2011-03-03 09:24:08 +01:00
|
|
|
struct gl_texture *gl_tex;
|
2009-06-03 10:47:26 +02:00
|
|
|
BOOL srgb_mode;
|
2010-04-22 18:55:57 +02:00
|
|
|
UINT i;
|
2009-06-03 10:47:26 +02:00
|
|
|
|
2011-01-03 18:51:41 +01:00
|
|
|
TRACE("texture %p, srgb %#x.\n", texture, srgb);
|
|
|
|
|
2009-06-03 10:47:26 +02:00
|
|
|
switch (srgb)
|
|
|
|
{
|
|
|
|
case SRGB_RGB:
|
|
|
|
srgb_mode = FALSE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SRGB_BOTH:
|
2011-01-04 17:42:03 +01:00
|
|
|
cubetexture_preload(texture, SRGB_RGB);
|
2009-06-03 10:47:26 +02:00
|
|
|
/* Fallthrough */
|
|
|
|
|
|
|
|
case SRGB_SRGB:
|
|
|
|
srgb_mode = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2011-01-03 18:51:41 +01:00
|
|
|
srgb_mode = texture->baseTexture.is_srgb;
|
2009-06-03 10:47:26 +02:00
|
|
|
break;
|
|
|
|
}
|
2011-03-03 09:24:08 +01:00
|
|
|
|
2011-03-03 09:24:10 +01:00
|
|
|
gl_tex = basetexture_get_gl_texture(texture, gl_info, srgb_mode);
|
2009-06-03 10:47:26 +02:00
|
|
|
|
|
|
|
/* We only have to activate a context for gl when we're not drawing.
|
|
|
|
* In most cases PreLoad will be called during draw and a context was
|
|
|
|
* activated at the beginning of drawPrimitive. */
|
|
|
|
if (!device->isInDraw)
|
|
|
|
{
|
2009-10-28 11:00:11 +01:00
|
|
|
/* No danger of recursive calls, context_acquire() sets isInDraw to true
|
2009-06-03 10:47:26 +02:00
|
|
|
* when loading offscreen render targets into their texture. */
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(device, NULL);
|
2009-06-03 10:47:26 +02:00
|
|
|
}
|
|
|
|
|
2011-01-03 18:51:41 +01:00
|
|
|
if (texture->resource.format->id == WINED3DFMT_P8_UINT
|
|
|
|
|| texture->resource.format->id == WINED3DFMT_P8_UINT_A8_UNORM)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
for (i = 0; i < sub_count; ++i)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2011-03-01 09:47:56 +01:00
|
|
|
IWineD3DSurfaceImpl *surface = surface_from_resource(texture->baseTexture.sub_resources[i]);
|
2010-04-22 18:55:57 +02:00
|
|
|
|
|
|
|
if (palette9_changed(surface))
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
TRACE("Reloading surface %p because the d3d8/9 palette was changed.\n", surface);
|
|
|
|
/* TODO: This is not necessarily needed with hw palettized texture support. */
|
2010-07-21 18:48:22 +02:00
|
|
|
surface_load_location(surface, SFLAG_INSYSMEM, NULL);
|
2010-04-22 18:55:57 +02:00
|
|
|
/* Make sure the texture is reloaded because of the palette change,
|
|
|
|
* this kills performance though :( */
|
2010-07-21 18:48:21 +02:00
|
|
|
surface_modify_location(surface, SFLAG_INTEXTURE, FALSE);
|
2009-06-03 10:47:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the texture is marked dirty or the srgb sampler setting has changed
|
|
|
|
* since the last load then reload the surfaces. */
|
2011-03-03 09:24:08 +01:00
|
|
|
if (gl_tex->dirty)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
for (i = 0; i < sub_count; ++i)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2011-03-01 09:47:56 +01:00
|
|
|
surface_load(surface_from_resource(texture->baseTexture.sub_resources[i]), srgb_mode);
|
2009-06-03 10:47:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-03 18:51:41 +01:00
|
|
|
TRACE("Texture %p not dirty, nothing to do.\n" , texture);
|
2009-06-03 10:47:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* No longer dirty. */
|
2011-03-03 09:24:08 +01:00
|
|
|
gl_tex->dirty = FALSE;
|
2009-10-28 11:00:11 +01:00
|
|
|
|
|
|
|
if (context) context_release(context);
|
2009-06-03 10:47:26 +02:00
|
|
|
}
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2011-02-28 08:05:39 +01:00
|
|
|
/* Do not call while under the GL lock. */
|
2011-03-01 09:47:56 +01:00
|
|
|
static void cubetexture_unload(struct wined3d_resource *resource)
|
2011-02-28 08:05:39 +01:00
|
|
|
{
|
2011-03-01 09:47:56 +01:00
|
|
|
IWineD3DBaseTextureImpl *texture = basetexture_from_resource(resource);
|
2011-02-28 08:05:39 +01:00
|
|
|
UINT sub_count = texture->baseTexture.level_count * texture->baseTexture.layer_count;
|
|
|
|
UINT i;
|
|
|
|
|
|
|
|
TRACE("texture %p.\n", texture);
|
|
|
|
|
|
|
|
for (i = 0; i < sub_count; ++i)
|
|
|
|
{
|
2011-03-01 09:47:56 +01:00
|
|
|
struct wined3d_resource *sub_resource = texture->baseTexture.sub_resources[i];
|
|
|
|
IWineD3DSurfaceImpl *surface = surface_from_resource(sub_resource);
|
2011-02-28 08:05:39 +01:00
|
|
|
|
2011-03-01 09:47:56 +01:00
|
|
|
resource->resource_ops->resource_unload(sub_resource);
|
2011-02-28 08:05:39 +01:00
|
|
|
surface_set_texture_name(surface, 0, TRUE);
|
|
|
|
surface_set_texture_name(surface, 0, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
basetexture_unload(texture);
|
|
|
|
}
|
|
|
|
|
2011-01-04 17:42:03 +01:00
|
|
|
static const struct wined3d_texture_ops cubetexture_ops =
|
|
|
|
{
|
|
|
|
cubetexture_bind,
|
|
|
|
cubetexture_preload,
|
|
|
|
};
|
|
|
|
|
2011-02-28 08:05:39 +01:00
|
|
|
static const struct wined3d_resource_ops cubetexture_resource_ops =
|
|
|
|
{
|
|
|
|
cubetexture_unload,
|
|
|
|
};
|
|
|
|
|
2009-09-16 08:37:15 +02:00
|
|
|
static void cubetexture_cleanup(IWineD3DCubeTextureImpl *This)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
UINT sub_count = This->baseTexture.level_count * This->baseTexture.layer_count;
|
|
|
|
UINT i;
|
2009-06-03 10:47:26 +02:00
|
|
|
|
|
|
|
TRACE("(%p) : Cleaning up.\n", This);
|
|
|
|
|
2010-04-22 18:55:57 +02:00
|
|
|
for (i = 0; i < sub_count; ++i)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2011-03-07 01:30:31 +01:00
|
|
|
struct wined3d_resource *sub_resource = This->baseTexture.sub_resources[i];
|
2009-06-03 10:47:26 +02:00
|
|
|
|
2011-03-07 01:30:31 +01:00
|
|
|
if (sub_resource)
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2011-03-07 01:30:31 +01:00
|
|
|
IWineD3DSurfaceImpl *surface = surface_from_resource(sub_resource);
|
|
|
|
|
2010-04-22 18:55:57 +02:00
|
|
|
/* Clean out the texture name we gave to the surface so that the
|
|
|
|
* surface doesn't try and release it. */
|
|
|
|
surface_set_texture_name(surface, 0, TRUE);
|
|
|
|
surface_set_texture_name(surface, 0, FALSE);
|
2010-04-26 21:33:03 +02:00
|
|
|
surface_set_texture_target(surface, 0);
|
2010-08-16 20:00:25 +02:00
|
|
|
surface_set_container(surface, WINED3D_CONTAINER_NONE, NULL);
|
2010-04-26 21:33:02 +02:00
|
|
|
IWineD3DSurface_Release((IWineD3DSurface *)surface);
|
2009-06-03 10:47:26 +02:00
|
|
|
}
|
|
|
|
}
|
2010-12-15 21:06:25 +01:00
|
|
|
basetexture_cleanup((IWineD3DBaseTextureImpl *)This);
|
2009-06-03 10:47:26 +02:00
|
|
|
}
|
|
|
|
|
2005-01-17 14:44:57 +01:00
|
|
|
/* *******************************************
|
|
|
|
IWineD3DCubeTexture IUnknown parts follow
|
|
|
|
******************************************* */
|
2009-06-03 10:47:26 +02:00
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DCubeTextureImpl_QueryInterface(IWineD3DCubeTexture *iface, REFIID riid, LPVOID *ppobj)
|
2005-01-17 14:44:57 +01:00
|
|
|
{
|
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
2005-03-02 14:44:58 +01:00
|
|
|
TRACE("(%p)->(%s,%p)\n",This,debugstr_guid(riid),ppobj);
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
2006-02-06 11:32:41 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IWineD3DBase)
|
2005-03-02 14:44:58 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IWineD3DResource)
|
|
|
|
|| IsEqualGUID(riid, &IID_IWineD3DBaseTexture)
|
2008-09-16 14:55:40 +02:00
|
|
|
|| IsEqualGUID(riid, &IID_IWineD3DCubeTexture)) {
|
2005-03-02 14:44:58 +01:00
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
*ppobj = This;
|
2006-04-25 23:59:12 +02:00
|
|
|
return S_OK;
|
2005-03-02 14:44:58 +01:00
|
|
|
}
|
2006-04-25 23:59:12 +02:00
|
|
|
*ppobj = NULL;
|
2005-01-17 14:44:57 +01:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static ULONG WINAPI IWineD3DCubeTextureImpl_AddRef(IWineD3DCubeTexture *iface) {
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
2006-10-01 05:20:10 +02:00
|
|
|
TRACE("(%p) : AddRef increasing from %d\n", This, This->resource.ref);
|
2005-01-17 14:44:57 +01:00
|
|
|
return InterlockedIncrement(&This->resource.ref);
|
|
|
|
}
|
|
|
|
|
2010-09-02 19:25:00 +02:00
|
|
|
/* Do not call while under the GL lock. */
|
2006-06-10 13:15:32 +02:00
|
|
|
static ULONG WINAPI IWineD3DCubeTextureImpl_Release(IWineD3DCubeTexture *iface) {
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl *This = (IWineD3DCubeTextureImpl *)iface;
|
|
|
|
ULONG ref;
|
2006-10-01 05:20:10 +02:00
|
|
|
TRACE("(%p) : Releasing from %d\n", This, This->resource.ref);
|
2005-01-17 14:44:57 +01:00
|
|
|
ref = InterlockedDecrement(&This->resource.ref);
|
2009-09-17 12:35:25 +02:00
|
|
|
if (!ref)
|
|
|
|
{
|
|
|
|
cubetexture_cleanup(This);
|
2009-09-17 23:03:33 +02:00
|
|
|
This->resource.parent_ops->wined3d_object_destroyed(This->resource.parent);
|
2009-09-17 12:35:25 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ****************************************************
|
|
|
|
IWineD3DCubeTexture IWineD3DResource parts follow
|
|
|
|
**************************************************** */
|
2010-11-18 20:50:40 +01:00
|
|
|
static HRESULT WINAPI IWineD3DCubeTextureImpl_SetPrivateData(IWineD3DCubeTexture *iface,
|
|
|
|
REFGUID riid, const void *data, DWORD data_size, DWORD flags)
|
|
|
|
{
|
2011-03-01 09:47:56 +01:00
|
|
|
return resource_set_private_data(&((IWineD3DCubeTextureImpl *)iface)->resource, riid, data, data_size, flags);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2011-01-06 09:39:02 +01:00
|
|
|
static HRESULT WINAPI IWineD3DCubeTextureImpl_GetPrivateData(IWineD3DCubeTexture *iface,
|
|
|
|
REFGUID guid, void *data, DWORD *data_size)
|
|
|
|
{
|
2011-03-01 09:47:56 +01:00
|
|
|
return resource_get_private_data(&((IWineD3DCubeTextureImpl *)iface)->resource, guid, data, data_size);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2011-01-06 09:39:01 +01:00
|
|
|
static HRESULT WINAPI IWineD3DCubeTextureImpl_FreePrivateData(IWineD3DCubeTexture *iface, REFGUID refguid)
|
|
|
|
{
|
2011-03-01 09:47:56 +01:00
|
|
|
return resource_free_private_data(&((IWineD3DCubeTextureImpl *)iface)->resource, refguid);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2011-01-07 10:16:40 +01:00
|
|
|
static DWORD WINAPI IWineD3DCubeTextureImpl_SetPriority(IWineD3DCubeTexture *iface, DWORD priority)
|
|
|
|
{
|
2011-03-01 09:47:56 +01:00
|
|
|
return resource_set_priority(&((IWineD3DCubeTextureImpl *)iface)->resource, priority);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2011-01-07 10:16:39 +01:00
|
|
|
static DWORD WINAPI IWineD3DCubeTextureImpl_GetPriority(IWineD3DCubeTexture *iface)
|
|
|
|
{
|
2011-03-01 09:47:56 +01:00
|
|
|
return resource_get_priority(&((IWineD3DCubeTextureImpl *)iface)->resource);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-09-02 19:25:00 +02:00
|
|
|
/* Do not call while under the GL lock. */
|
2011-01-03 18:51:41 +01:00
|
|
|
static void WINAPI IWineD3DCubeTextureImpl_PreLoad(IWineD3DCubeTexture *iface)
|
|
|
|
{
|
2011-01-04 17:42:03 +01:00
|
|
|
cubetexture_preload((IWineD3DBaseTextureImpl *)iface, SRGB_ANY);
|
2009-02-17 00:25:51 +01:00
|
|
|
}
|
|
|
|
|
2011-01-07 10:16:41 +01:00
|
|
|
static WINED3DRESOURCETYPE WINAPI IWineD3DCubeTextureImpl_GetType(IWineD3DCubeTexture *iface)
|
|
|
|
{
|
2011-03-01 09:47:56 +01:00
|
|
|
return resource_get_type(&((IWineD3DCubeTextureImpl *)iface)->resource);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static void * WINAPI IWineD3DCubeTextureImpl_GetParent(IWineD3DCubeTexture *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return ((IWineD3DCubeTextureImpl *)iface)->resource.parent;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ******************************************************
|
|
|
|
IWineD3DCubeTexture IWineD3DBaseTexture parts follow
|
|
|
|
****************************************************** */
|
2006-06-10 13:15:32 +02:00
|
|
|
static DWORD WINAPI IWineD3DCubeTextureImpl_SetLOD(IWineD3DCubeTexture *iface, DWORD LODNew) {
|
2011-01-02 12:26:35 +01:00
|
|
|
return basetexture_set_lod((IWineD3DBaseTextureImpl *)iface, LODNew);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static DWORD WINAPI IWineD3DCubeTextureImpl_GetLOD(IWineD3DCubeTexture *iface) {
|
2011-01-02 12:26:36 +01:00
|
|
|
return basetexture_get_lod((IWineD3DBaseTextureImpl *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-12-15 21:06:26 +01:00
|
|
|
static DWORD WINAPI IWineD3DCubeTextureImpl_GetLevelCount(IWineD3DCubeTexture *iface)
|
|
|
|
{
|
|
|
|
return basetexture_get_level_count((IWineD3DBaseTextureImpl *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2011-01-02 12:26:37 +01:00
|
|
|
static HRESULT WINAPI IWineD3DCubeTextureImpl_SetAutoGenFilterType(IWineD3DCubeTexture *iface,
|
|
|
|
WINED3DTEXTUREFILTERTYPE FilterType)
|
|
|
|
{
|
|
|
|
return basetexture_set_autogen_filter_type((IWineD3DBaseTextureImpl *)iface, FilterType);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2011-01-02 12:26:38 +01:00
|
|
|
static WINED3DTEXTUREFILTERTYPE WINAPI IWineD3DCubeTextureImpl_GetAutoGenFilterType(IWineD3DCubeTexture *iface)
|
|
|
|
{
|
|
|
|
return basetexture_get_autogen_filter_type((IWineD3DBaseTextureImpl *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2011-01-03 18:51:38 +01:00
|
|
|
static void WINAPI IWineD3DCubeTextureImpl_GenerateMipSubLevels(IWineD3DCubeTexture *iface)
|
|
|
|
{
|
|
|
|
basetexture_generate_mipmaps((IWineD3DBaseTextureImpl *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2009-12-21 23:17:26 +01:00
|
|
|
static BOOL WINAPI IWineD3DCubeTextureImpl_IsCondNP2(IWineD3DCubeTexture *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p.\n", iface);
|
2008-07-09 01:59:10 +02:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-04-22 18:55:57 +02:00
|
|
|
static HRESULT WINAPI IWineD3DCubeTextureImpl_GetLevelDesc(IWineD3DCubeTexture *iface,
|
2010-10-25 12:33:39 +02:00
|
|
|
UINT sub_resource_idx, WINED3DSURFACE_DESC *desc)
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
2011-03-01 09:47:56 +01:00
|
|
|
struct wined3d_resource *sub_resource;
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2010-10-25 12:33:39 +02:00
|
|
|
TRACE("iface %p, sub_resource_idx %u, desc %p.\n", iface, sub_resource_idx, desc);
|
2005-07-13 16:15:54 +02:00
|
|
|
|
2011-03-01 09:47:56 +01:00
|
|
|
if (!(sub_resource = basetexture_get_sub_resource(texture, sub_resource_idx)))
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
WARN("Failed to get sub-resource.\n");
|
2010-04-22 18:55:57 +02:00
|
|
|
return WINED3DERR_INVALIDCALL;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2011-03-01 09:47:56 +01:00
|
|
|
IWineD3DSurface_GetDesc((IWineD3DSurface *)surface_from_resource(sub_resource), desc);
|
2010-09-08 11:24:47 +02:00
|
|
|
|
|
|
|
return WINED3D_OK;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-04-22 18:55:57 +02:00
|
|
|
static HRESULT WINAPI IWineD3DCubeTextureImpl_GetCubeMapSurface(IWineD3DCubeTexture *iface,
|
2010-10-25 12:33:39 +02:00
|
|
|
UINT sub_resource_idx, IWineD3DSurface **surface)
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
2011-03-01 09:47:56 +01:00
|
|
|
struct wined3d_resource *sub_resource;
|
2005-07-14 14:31:05 +02:00
|
|
|
|
2010-10-25 12:33:39 +02:00
|
|
|
TRACE("iface %p, sub_resource_idx %u, surface %p.\n",
|
|
|
|
iface, sub_resource_idx, surface);
|
2005-07-14 14:31:05 +02:00
|
|
|
|
2011-03-01 09:47:56 +01:00
|
|
|
if (!(sub_resource = basetexture_get_sub_resource(texture, sub_resource_idx)))
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
WARN("Failed to get sub-resource.\n");
|
2010-04-22 18:55:57 +02:00
|
|
|
return WINED3DERR_INVALIDCALL;
|
2005-07-14 14:31:05 +02:00
|
|
|
}
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2011-03-01 09:47:56 +01:00
|
|
|
*surface = (IWineD3DSurface *)surface_from_resource(sub_resource);
|
|
|
|
IWineD3DSurface_AddRef(*surface);
|
2010-04-22 18:55:57 +02:00
|
|
|
|
|
|
|
TRACE("Returning surface %p.\n", *surface);
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-10-14 13:04:02 +02:00
|
|
|
static HRESULT WINAPI IWineD3DCubeTextureImpl_Map(IWineD3DCubeTexture *iface,
|
2010-10-25 12:33:39 +02:00
|
|
|
UINT sub_resource_idx, WINED3DLOCKED_RECT *locked_rect, const RECT *rect, DWORD flags)
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
2011-03-01 09:47:56 +01:00
|
|
|
struct wined3d_resource *sub_resource;
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2010-10-25 12:33:39 +02:00
|
|
|
TRACE("iface %p, sub_resource_idx %u, locked_rect %p, rect %s, flags %#x.\n",
|
|
|
|
iface, sub_resource_idx, locked_rect, wine_dbgstr_rect(rect), flags);
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2011-03-01 09:47:56 +01:00
|
|
|
if (!(sub_resource = basetexture_get_sub_resource(texture, sub_resource_idx)))
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
WARN("Failed to get sub-resource.\n");
|
2010-04-22 18:55:57 +02:00
|
|
|
return WINED3DERR_INVALIDCALL;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
2005-07-14 14:31:05 +02:00
|
|
|
|
2011-03-01 09:47:56 +01:00
|
|
|
return IWineD3DSurface_Map((IWineD3DSurface *)surface_from_resource(sub_resource),
|
|
|
|
locked_rect, rect, flags);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-10-14 13:04:02 +02:00
|
|
|
static HRESULT WINAPI IWineD3DCubeTextureImpl_Unmap(IWineD3DCubeTexture *iface,
|
2010-10-25 12:33:39 +02:00
|
|
|
UINT sub_resource_idx)
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
2011-03-01 09:47:56 +01:00
|
|
|
struct wined3d_resource *sub_resource;
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2010-10-25 12:33:39 +02:00
|
|
|
TRACE("iface %p, sub_resource_idx %u.\n",
|
|
|
|
iface, sub_resource_idx);
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2011-03-01 09:47:56 +01:00
|
|
|
if (!(sub_resource = basetexture_get_sub_resource(texture, sub_resource_idx)))
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
WARN("Failed to get sub-resource.\n");
|
2010-04-22 18:55:57 +02:00
|
|
|
return WINED3DERR_INVALIDCALL;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2011-03-01 09:47:56 +01:00
|
|
|
return IWineD3DSurface_Unmap((IWineD3DSurface *)surface_from_resource(sub_resource));
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-04-22 18:55:57 +02:00
|
|
|
static HRESULT WINAPI IWineD3DCubeTextureImpl_AddDirtyRect(IWineD3DCubeTexture *iface,
|
|
|
|
WINED3DCUBEMAP_FACES face, const RECT *dirty_rect)
|
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
2010-10-25 12:33:39 +02:00
|
|
|
UINT sub_resource_idx = face * texture->baseTexture.level_count;
|
2011-03-01 09:47:56 +01:00
|
|
|
struct wined3d_resource *sub_resource;
|
2010-04-22 18:55:57 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, face %u, dirty_rect %s.\n",
|
|
|
|
iface, face, wine_dbgstr_rect(dirty_rect));
|
|
|
|
|
2011-03-01 09:47:56 +01:00
|
|
|
if (!(sub_resource = basetexture_get_sub_resource(texture, sub_resource_idx)))
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
WARN("Failed to get sub-resource.\n");
|
2010-04-22 18:55:57 +02:00
|
|
|
return WINED3DERR_INVALIDCALL;
|
2005-12-13 11:10:20 +01:00
|
|
|
}
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2011-03-02 08:55:47 +01:00
|
|
|
basetexture_set_dirty(texture, TRUE);
|
2011-03-01 09:47:56 +01:00
|
|
|
surface_add_dirty_rect(surface_from_resource(sub_resource), dirty_rect);
|
2010-04-22 18:55:57 +02:00
|
|
|
|
|
|
|
return WINED3D_OK;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2009-09-16 08:37:21 +02:00
|
|
|
static const IWineD3DCubeTextureVtbl IWineD3DCubeTexture_Vtbl =
|
2005-01-17 14:44:57 +01:00
|
|
|
{
|
2005-03-14 11:12:52 +01:00
|
|
|
/* IUnknown */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl_QueryInterface,
|
|
|
|
IWineD3DCubeTextureImpl_AddRef,
|
|
|
|
IWineD3DCubeTextureImpl_Release,
|
2005-03-14 11:12:52 +01:00
|
|
|
/* IWineD3DResource */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl_GetParent,
|
|
|
|
IWineD3DCubeTextureImpl_SetPrivateData,
|
|
|
|
IWineD3DCubeTextureImpl_GetPrivateData,
|
|
|
|
IWineD3DCubeTextureImpl_FreePrivateData,
|
|
|
|
IWineD3DCubeTextureImpl_SetPriority,
|
|
|
|
IWineD3DCubeTextureImpl_GetPriority,
|
|
|
|
IWineD3DCubeTextureImpl_PreLoad,
|
|
|
|
IWineD3DCubeTextureImpl_GetType,
|
2005-07-13 16:15:54 +02:00
|
|
|
/* IWineD3DBaseTexture */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl_SetLOD,
|
|
|
|
IWineD3DCubeTextureImpl_GetLOD,
|
|
|
|
IWineD3DCubeTextureImpl_GetLevelCount,
|
|
|
|
IWineD3DCubeTextureImpl_SetAutoGenFilterType,
|
|
|
|
IWineD3DCubeTextureImpl_GetAutoGenFilterType,
|
|
|
|
IWineD3DCubeTextureImpl_GenerateMipSubLevels,
|
2008-07-09 01:59:10 +02:00
|
|
|
IWineD3DCubeTextureImpl_IsCondNP2,
|
2005-07-13 16:15:54 +02:00
|
|
|
/* IWineD3DCubeTexture */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl_GetLevelDesc,
|
|
|
|
IWineD3DCubeTextureImpl_GetCubeMapSurface,
|
2010-10-14 13:04:02 +02:00
|
|
|
IWineD3DCubeTextureImpl_Map,
|
|
|
|
IWineD3DCubeTextureImpl_Unmap,
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DCubeTextureImpl_AddDirtyRect
|
|
|
|
};
|
2009-09-16 08:37:21 +02:00
|
|
|
|
|
|
|
HRESULT cubetexture_init(IWineD3DCubeTextureImpl *texture, UINT edge_length, UINT levels,
|
2010-08-23 18:28:10 +02:00
|
|
|
IWineD3DDeviceImpl *device, DWORD usage, enum wined3d_format_id format_id, WINED3DPOOL pool,
|
2010-08-31 18:41:40 +02:00
|
|
|
void *parent, const struct wined3d_parent_ops *parent_ops)
|
2009-09-16 08:37:21 +02:00
|
|
|
{
|
|
|
|
const struct wined3d_gl_info *gl_info = &device->adapter->gl_info;
|
2010-08-30 20:29:49 +02:00
|
|
|
const struct wined3d_format *format = wined3d_get_format(gl_info, format_id);
|
2009-09-16 08:37:21 +02:00
|
|
|
UINT pow2_edge_length;
|
|
|
|
unsigned int i, j;
|
|
|
|
UINT tmp_w;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
/* TODO: It should only be possible to create textures for formats
|
|
|
|
* that are reported as supported. */
|
2010-08-23 18:28:10 +02:00
|
|
|
if (WINED3DFMT_UNKNOWN >= format_id)
|
2009-09-16 08:37:21 +02:00
|
|
|
{
|
|
|
|
WARN("(%p) : Texture cannot be created with a format of WINED3DFMT_UNKNOWN.\n", texture);
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gl_info->supported[ARB_TEXTURE_CUBE_MAP] && pool != WINED3DPOOL_SCRATCH)
|
|
|
|
{
|
|
|
|
WARN("(%p) : Tried to create not supported cube texture.\n", texture);
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate levels for mip mapping */
|
|
|
|
if (usage & WINED3DUSAGE_AUTOGENMIPMAP)
|
|
|
|
{
|
|
|
|
if (!gl_info->supported[SGIS_GENERATE_MIPMAP])
|
|
|
|
{
|
|
|
|
WARN("No mipmap generation support, returning D3DERR_INVALIDCALL.\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (levels > 1)
|
|
|
|
{
|
|
|
|
WARN("D3DUSAGE_AUTOGENMIPMAP is set, and level count > 1, returning D3DERR_INVALIDCALL.\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
levels = 1;
|
|
|
|
}
|
|
|
|
else if (!levels)
|
|
|
|
{
|
|
|
|
levels = wined3d_log2i(edge_length) + 1;
|
|
|
|
TRACE("Calculated levels = %u.\n", levels);
|
|
|
|
}
|
|
|
|
|
|
|
|
texture->lpVtbl = &IWineD3DCubeTexture_Vtbl;
|
|
|
|
|
2011-01-04 17:42:03 +01:00
|
|
|
hr = basetexture_init((IWineD3DBaseTextureImpl *)texture, &cubetexture_ops,
|
|
|
|
6, levels, WINED3DRTYPE_CUBETEXTURE, device, usage, format, pool,
|
2011-02-28 08:05:39 +01:00
|
|
|
parent, parent_ops, &cubetexture_resource_ops);
|
2009-09-16 08:37:21 +02:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize basetexture, returning %#x\n", hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the nearest pow2 match. */
|
|
|
|
pow2_edge_length = 1;
|
|
|
|
while (pow2_edge_length < edge_length) pow2_edge_length <<= 1;
|
|
|
|
|
|
|
|
if (gl_info->supported[ARB_TEXTURE_NON_POWER_OF_TWO] || (edge_length == pow2_edge_length))
|
|
|
|
{
|
|
|
|
/* Precalculated scaling for 'faked' non power of two texture coords. */
|
|
|
|
texture->baseTexture.pow2Matrix[0] = 1.0f;
|
|
|
|
texture->baseTexture.pow2Matrix[5] = 1.0f;
|
|
|
|
texture->baseTexture.pow2Matrix[10] = 1.0f;
|
|
|
|
texture->baseTexture.pow2Matrix[15] = 1.0f;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Precalculated scaling for 'faked' non power of two texture coords. */
|
|
|
|
texture->baseTexture.pow2Matrix[0] = ((float)edge_length) / ((float)pow2_edge_length);
|
|
|
|
texture->baseTexture.pow2Matrix[5] = ((float)edge_length) / ((float)pow2_edge_length);
|
|
|
|
texture->baseTexture.pow2Matrix[10] = ((float)edge_length) / ((float)pow2_edge_length);
|
|
|
|
texture->baseTexture.pow2Matrix[15] = 1.0f;
|
|
|
|
texture->baseTexture.pow2Matrix_identity = FALSE;
|
|
|
|
}
|
2010-09-17 11:59:38 +02:00
|
|
|
texture->baseTexture.target = GL_TEXTURE_CUBE_MAP_ARB;
|
2009-09-16 08:37:21 +02:00
|
|
|
|
|
|
|
/* Generate all the surfaces. */
|
|
|
|
tmp_w = edge_length;
|
2010-04-22 18:55:57 +02:00
|
|
|
for (i = 0; i < texture->baseTexture.level_count; ++i)
|
2009-09-16 08:37:21 +02:00
|
|
|
{
|
|
|
|
/* Create the 6 faces. */
|
|
|
|
for (j = 0; j < 6; ++j)
|
|
|
|
{
|
|
|
|
static const GLenum cube_targets[6] =
|
|
|
|
{
|
|
|
|
GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB,
|
|
|
|
GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB,
|
|
|
|
GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB,
|
|
|
|
GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB,
|
|
|
|
GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB,
|
|
|
|
GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB,
|
|
|
|
};
|
2010-04-22 18:55:57 +02:00
|
|
|
UINT idx = j * texture->baseTexture.level_count + i;
|
|
|
|
IWineD3DSurface *surface;
|
2009-09-16 08:37:21 +02:00
|
|
|
|
|
|
|
hr = IWineD3DDeviceParent_CreateSurface(device->device_parent, parent, tmp_w, tmp_w,
|
2010-08-23 18:28:10 +02:00
|
|
|
format_id, usage, pool, i /* Level */, j, &surface);
|
2009-09-16 08:37:21 +02:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
FIXME("(%p) Failed to create surface, hr %#x.\n", texture, hr);
|
|
|
|
cubetexture_cleanup(texture);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2010-08-16 20:00:25 +02:00
|
|
|
surface_set_container((IWineD3DSurfaceImpl *)surface, WINED3D_CONTAINER_TEXTURE, (IWineD3DBase *)texture);
|
2010-04-26 21:33:03 +02:00
|
|
|
surface_set_texture_target((IWineD3DSurfaceImpl *)surface, cube_targets[j]);
|
2011-03-01 09:47:56 +01:00
|
|
|
texture->baseTexture.sub_resources[idx] = &((IWineD3DSurfaceImpl *)surface)->resource;
|
2010-04-22 18:55:57 +02:00
|
|
|
TRACE("Created surface level %u @ %p.\n", i, surface);
|
2009-09-16 08:37:21 +02:00
|
|
|
}
|
|
|
|
tmp_w = max(1, tmp_w >> 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|