2005-01-17 14:44:57 +01:00
|
|
|
/*
|
2005-03-14 11:12:52 +01:00
|
|
|
* IWineD3DVolumeTexture implementation
|
2005-01-17 14:44:57 +01:00
|
|
|
*
|
|
|
|
* Copyright 2002-2005 Jason Edmeades
|
2005-03-14 11:12:52 +01:00
|
|
|
* Copyright 2002-2005 Raphael Junqueira
|
|
|
|
* Copyright 2005 Oliver Stieber
|
2009-09-16 08:37:21 +02:00
|
|
|
* Copyright 2009 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
|
|
|
|
2010-09-02 19:25:00 +02:00
|
|
|
/* Do not call while under the GL lock. */
|
2009-06-03 10:47:26 +02:00
|
|
|
static void volumetexture_internal_preload(IWineD3DBaseTexture *iface, enum WINED3DSRGB srgb)
|
|
|
|
{
|
|
|
|
/* Override the IWineD3DResource Preload method. */
|
|
|
|
IWineD3DVolumeTextureImpl *This = (IWineD3DVolumeTextureImpl *)iface;
|
2009-12-09 20:32:08 +01:00
|
|
|
IWineD3DDeviceImpl *device = This->resource.device;
|
2009-07-17 10:34:01 +02: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;
|
2009-06-03 10:47:26 +02:00
|
|
|
BOOL srgb_mode = This->baseTexture.is_srgb;
|
|
|
|
BOOL srgb_was_toggled = FALSE;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
TRACE("(%p) : About to load texture.\n", This);
|
|
|
|
|
2010-05-03 22:03:28 +02:00
|
|
|
if (!device->isInDraw) context = context_acquire(device, NULL);
|
2009-10-29 10:37:11 +01:00
|
|
|
else if (gl_info->supported[EXT_TEXTURE_SRGB] && This->baseTexture.bindCount > 0)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2010-09-16 11:19:58 +02:00
|
|
|
srgb_mode = device->stateBlock->state.sampler_states[This->baseTexture.sampler][WINED3DSAMP_SRGBTEXTURE];
|
2009-06-03 10:47:26 +02:00
|
|
|
srgb_was_toggled = This->baseTexture.is_srgb != srgb_mode;
|
|
|
|
This->baseTexture.is_srgb = srgb_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the texture is marked dirty or the srgb sampler setting has changed
|
|
|
|
* since the last load then reload the volumes. */
|
2009-09-19 14:59:27 +02:00
|
|
|
if (This->baseTexture.texture_rgb.dirty)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
for (i = 0; i < This->baseTexture.level_count; ++i)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
IWineD3DVolume *volume = (IWineD3DVolume *)This->baseTexture.sub_resources[i];
|
|
|
|
IWineD3DVolume_LoadTexture(volume, i, srgb_mode);
|
2009-06-03 10:47:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (srgb_was_toggled)
|
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
for (i = 0; i < This->baseTexture.level_count; ++i)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
IWineD3DVolume *volume = (IWineD3DVolume *)This->baseTexture.sub_resources[i];
|
|
|
|
volume_add_dirty_box(volume, NULL);
|
|
|
|
IWineD3DVolume_LoadTexture(volume, i, srgb_mode);
|
2009-06-03 10:47:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TRACE("(%p) Texture not dirty, nothing to do.\n", iface);
|
|
|
|
}
|
|
|
|
|
2009-10-28 11:00:11 +01:00
|
|
|
if (context) context_release(context);
|
|
|
|
|
2009-06-03 10:47:26 +02:00
|
|
|
/* No longer dirty */
|
2009-09-19 14:59:27 +02:00
|
|
|
This->baseTexture.texture_rgb.dirty = FALSE;
|
2009-06-03 10:47:26 +02:00
|
|
|
}
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2009-09-16 08:37:19 +02:00
|
|
|
static void volumetexture_cleanup(IWineD3DVolumeTextureImpl *This)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
TRACE("(%p) : Cleaning up.\n", This);
|
|
|
|
|
2010-04-22 18:55:57 +02:00
|
|
|
for (i = 0; i < This->baseTexture.level_count; ++i)
|
2009-06-03 10:47:26 +02:00
|
|
|
{
|
2010-08-16 20:00:22 +02:00
|
|
|
IWineD3DVolumeImpl *volume = (IWineD3DVolumeImpl *)This->baseTexture.sub_resources[i];
|
2009-06-03 10:47:26 +02:00
|
|
|
|
|
|
|
if (volume)
|
|
|
|
{
|
|
|
|
/* Cleanup the container. */
|
2010-08-16 20:00:22 +02:00
|
|
|
volume_set_container(volume, NULL);
|
|
|
|
IWineD3DVolume_Release((IWineD3DVolume *)volume);
|
2009-06-03 10:47:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
basetexture_cleanup((IWineD3DBaseTexture *)This);
|
|
|
|
}
|
|
|
|
|
2005-01-17 14:44:57 +01:00
|
|
|
/* *******************************************
|
|
|
|
IWineD3DTexture IUnknown parts follow
|
|
|
|
******************************************* */
|
2009-06-03 10:47:26 +02:00
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DVolumeTextureImpl_QueryInterface(IWineD3DVolumeTexture *iface, REFIID riid, LPVOID *ppobj)
|
2005-01-17 14:44:57 +01:00
|
|
|
{
|
|
|
|
IWineD3DVolumeTextureImpl *This = (IWineD3DVolumeTextureImpl *)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)
|
|
|
|
|| IsEqualGUID(riid, &IID_IWineD3DVolumeTexture)) {
|
|
|
|
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 IWineD3DVolumeTextureImpl_AddRef(IWineD3DVolumeTexture *iface) {
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DVolumeTextureImpl *This = (IWineD3DVolumeTextureImpl *)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 IWineD3DVolumeTextureImpl_Release(IWineD3DVolumeTexture *iface) {
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DVolumeTextureImpl *This = (IWineD3DVolumeTextureImpl *)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-16 08:37:24 +02:00
|
|
|
if (!ref)
|
|
|
|
{
|
|
|
|
volumetexture_cleanup(This);
|
2009-09-17 23:03:33 +02:00
|
|
|
This->resource.parent_ops->wined3d_object_destroyed(This->resource.parent);
|
2009-09-16 08:37:24 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ****************************************************
|
|
|
|
IWineD3DVolumeTexture IWineD3DResource parts follow
|
|
|
|
**************************************************** */
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DVolumeTextureImpl_SetPrivateData(IWineD3DVolumeTexture *iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
|
2008-12-02 18:41:33 +01:00
|
|
|
return resource_set_private_data((IWineD3DResource *)iface, refguid, pData, SizeOfData, Flags);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DVolumeTextureImpl_GetPrivateData(IWineD3DVolumeTexture *iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
|
2008-12-02 18:41:33 +01:00
|
|
|
return resource_get_private_data((IWineD3DResource *)iface, refguid, pData, pSizeOfData);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DVolumeTextureImpl_FreePrivateData(IWineD3DVolumeTexture *iface, REFGUID refguid) {
|
2008-12-02 18:41:33 +01:00
|
|
|
return resource_free_private_data((IWineD3DResource *)iface, refguid);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static DWORD WINAPI IWineD3DVolumeTextureImpl_SetPriority(IWineD3DVolumeTexture *iface, DWORD PriorityNew) {
|
2008-12-02 18:41:33 +01:00
|
|
|
return resource_set_priority((IWineD3DResource *)iface, PriorityNew);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static DWORD WINAPI IWineD3DVolumeTextureImpl_GetPriority(IWineD3DVolumeTexture *iface) {
|
2008-12-02 18:41:33 +01:00
|
|
|
return resource_get_priority((IWineD3DResource *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2009-02-17 00:25:51 +01:00
|
|
|
static void WINAPI IWineD3DVolumeTextureImpl_PreLoad(IWineD3DVolumeTexture *iface) {
|
|
|
|
volumetexture_internal_preload((IWineD3DBaseTexture *) iface, SRGB_ANY);
|
|
|
|
}
|
|
|
|
|
2010-09-02 19:25:00 +02:00
|
|
|
/* Do not call while under the GL lock. */
|
2008-01-12 22:56:30 +01:00
|
|
|
static void WINAPI IWineD3DVolumeTextureImpl_UnLoad(IWineD3DVolumeTexture *iface) {
|
2008-01-08 15:48:39 +01:00
|
|
|
unsigned int i;
|
|
|
|
IWineD3DVolumeTextureImpl *This = (IWineD3DVolumeTextureImpl *)iface;
|
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
|
|
|
/* Unload all the surfaces and reset the texture name. If UnLoad was called on the
|
|
|
|
* surface before, this one will be a NOP and vice versa. Unloading an unloaded
|
|
|
|
* surface is fine
|
|
|
|
*/
|
2010-04-22 18:55:57 +02:00
|
|
|
for (i = 0; i < This->baseTexture.level_count; ++i)
|
|
|
|
{
|
|
|
|
IWineD3DVolume_UnLoad((IWineD3DVolume *)This->baseTexture.sub_resources[i]);
|
2008-01-08 15:48:39 +01:00
|
|
|
}
|
|
|
|
|
2008-12-02 18:41:32 +01:00
|
|
|
basetexture_unload((IWineD3DBaseTexture *)iface);
|
2008-01-12 22:56:30 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static WINED3DRESOURCETYPE WINAPI IWineD3DVolumeTextureImpl_GetType(IWineD3DVolumeTexture *iface) {
|
2008-12-02 18:41:33 +01:00
|
|
|
return resource_get_type((IWineD3DResource *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static void * WINAPI IWineD3DVolumeTextureImpl_GetParent(IWineD3DVolumeTexture *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return ((IWineD3DVolumeTextureImpl *)iface)->resource.parent;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ******************************************************
|
|
|
|
IWineD3DVolumeTexture IWineD3DBaseTexture parts follow
|
|
|
|
****************************************************** */
|
2006-06-10 13:15:32 +02:00
|
|
|
static DWORD WINAPI IWineD3DVolumeTextureImpl_SetLOD(IWineD3DVolumeTexture *iface, DWORD LODNew) {
|
2008-12-02 18:41:32 +01:00
|
|
|
return basetexture_set_lod((IWineD3DBaseTexture *)iface, LODNew);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static DWORD WINAPI IWineD3DVolumeTextureImpl_GetLOD(IWineD3DVolumeTexture *iface) {
|
2008-12-02 18:41:32 +01:00
|
|
|
return basetexture_get_lod((IWineD3DBaseTexture *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static DWORD WINAPI IWineD3DVolumeTextureImpl_GetLevelCount(IWineD3DVolumeTexture *iface) {
|
2008-12-02 18:41:32 +01:00
|
|
|
return basetexture_get_level_count((IWineD3DBaseTexture *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DVolumeTextureImpl_SetAutoGenFilterType(IWineD3DVolumeTexture *iface, WINED3DTEXTUREFILTERTYPE FilterType) {
|
2008-12-02 18:41:32 +01:00
|
|
|
return basetexture_set_autogen_filter_type((IWineD3DBaseTexture *)iface, FilterType);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static WINED3DTEXTUREFILTERTYPE WINAPI IWineD3DVolumeTextureImpl_GetAutoGenFilterType(IWineD3DVolumeTexture *iface) {
|
2008-12-02 18:41:32 +01:00
|
|
|
return basetexture_get_autogen_filter_type((IWineD3DBaseTexture *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static void WINAPI IWineD3DVolumeTextureImpl_GenerateMipSubLevels(IWineD3DVolumeTexture *iface) {
|
2008-12-02 18:41:32 +01:00
|
|
|
basetexture_generate_mipmaps((IWineD3DBaseTexture *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Internal function, No d3d mapping */
|
2006-06-10 13:15:32 +02:00
|
|
|
static BOOL WINAPI IWineD3DVolumeTextureImpl_SetDirty(IWineD3DVolumeTexture *iface, BOOL dirty) {
|
2008-12-02 18:41:32 +01:00
|
|
|
return basetexture_set_dirty((IWineD3DBaseTexture *)iface, dirty);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static BOOL WINAPI IWineD3DVolumeTextureImpl_GetDirty(IWineD3DVolumeTexture *iface) {
|
2008-12-02 18:41:32 +01:00
|
|
|
return basetexture_get_dirty((IWineD3DBaseTexture *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2009-06-26 10:07:12 +02:00
|
|
|
/* Context activation is done by the caller. */
|
2009-12-21 23:17:26 +01:00
|
|
|
static HRESULT WINAPI IWineD3DVolumeTextureImpl_BindTexture(IWineD3DVolumeTexture *iface, BOOL srgb)
|
|
|
|
{
|
2009-01-16 16:22:09 +01:00
|
|
|
BOOL dummy;
|
2009-12-21 23:17:26 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, srgb %#x.\n", iface, srgb);
|
|
|
|
|
2009-01-16 16:22:09 +01:00
|
|
|
return basetexture_bind((IWineD3DBaseTexture *)iface, srgb, &dummy);
|
2005-03-14 11:12:52 +01:00
|
|
|
}
|
|
|
|
|
2009-12-21 23:17:26 +01:00
|
|
|
static BOOL WINAPI IWineD3DVolumeTextureImpl_IsCondNP2(IWineD3DVolumeTexture *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 IWineD3DVolumeTextureImpl_GetLevelDesc(IWineD3DVolumeTexture *iface,
|
2010-10-21 12:40:46 +02:00
|
|
|
UINT sub_resource_idx, WINED3DVOLUME_DESC *desc)
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
|
|
|
IWineD3DVolume *volume;
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2010-10-21 12:40:46 +02:00
|
|
|
TRACE("iface %p, sub_resource_idx %u, desc %p.\n", iface, sub_resource_idx, desc);
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2010-10-25 12:33:39 +02:00
|
|
|
if (!(volume = (IWineD3DVolume *)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
|
|
|
|
2010-09-08 11:24:48 +02:00
|
|
|
IWineD3DVolume_GetDesc(volume, desc);
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
2010-04-22 18:55:57 +02:00
|
|
|
|
|
|
|
static HRESULT WINAPI IWineD3DVolumeTextureImpl_GetVolumeLevel(IWineD3DVolumeTexture *iface,
|
2010-10-21 12:40:46 +02:00
|
|
|
UINT sub_resource_idx, IWineD3DVolume **volume)
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
|
|
|
IWineD3DVolume *v;
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2010-10-21 12:40:46 +02:00
|
|
|
TRACE("iface %p, sub_resource_idx %u, volume %p.\n", iface, sub_resource_idx, volume);
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2010-10-25 12:33:39 +02:00
|
|
|
if (!(v= (IWineD3DVolume *)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
|
|
|
|
2010-04-22 18:55:59 +02:00
|
|
|
IWineD3DVolume_AddRef(v);
|
|
|
|
*volume = v;
|
2010-04-22 18:55:57 +02:00
|
|
|
|
|
|
|
TRACE("Returning volume %p.\n", *volume);
|
|
|
|
|
2006-04-07 12:51:12 +02:00
|
|
|
return WINED3D_OK;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-10-14 13:04:02 +02:00
|
|
|
static HRESULT WINAPI IWineD3DVolumeTextureImpl_Map(IWineD3DVolumeTexture *iface,
|
2010-10-21 12:40:46 +02:00
|
|
|
UINT sub_resource_idx, WINED3DLOCKED_BOX *locked_box, const WINED3DBOX *box, DWORD flags)
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
|
|
|
IWineD3DVolume *volume;
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2010-10-21 12:40:46 +02:00
|
|
|
TRACE("iface %p, sub_resource_idx %u, locked_box %p, box %p, flags %#x.\n",
|
|
|
|
iface, sub_resource_idx, locked_box, box, flags);
|
2010-04-22 18:55:57 +02:00
|
|
|
|
2010-10-25 12:33:39 +02:00
|
|
|
if (!(volume = (IWineD3DVolume *)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
|
|
|
|
2010-10-14 13:04:02 +02:00
|
|
|
return IWineD3DVolume_Map(volume, locked_box, box, flags);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-10-21 12:40:46 +02:00
|
|
|
static HRESULT WINAPI IWineD3DVolumeTextureImpl_Unmap(IWineD3DVolumeTexture *iface, UINT sub_resource_idx)
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
|
|
|
IWineD3DVolume *volume;
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2010-10-21 12:40:46 +02:00
|
|
|
TRACE("iface %p, sub_resource_idx %u.\n", iface, sub_resource_idx);
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2010-10-25 12:33:39 +02:00
|
|
|
if (!(volume = (IWineD3DVolume *)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
|
|
|
|
2010-10-14 13:04:02 +02:00
|
|
|
return IWineD3DVolume_Unmap(volume);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-04-22 18:55:57 +02:00
|
|
|
static HRESULT WINAPI IWineD3DVolumeTextureImpl_AddDirtyBox(IWineD3DVolumeTexture *iface, const WINED3DBOX *dirty_box)
|
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
|
|
|
IWineD3DVolume *volume;
|
2010-04-22 18:55:57 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, dirty_box %p.\n", iface, dirty_box);
|
|
|
|
|
2010-10-25 12:33:39 +02:00
|
|
|
if (!(volume = (IWineD3DVolume *)basetexture_get_sub_resource(texture, 0)))
|
2010-04-22 18:55:59 +02:00
|
|
|
{
|
|
|
|
WARN("Failed to get sub-resource.\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2010-04-22 18:55:57 +02:00
|
|
|
texture->baseTexture.texture_rgb.dirty = TRUE;
|
|
|
|
texture->baseTexture.texture_srgb.dirty = TRUE;
|
2010-04-22 18:55:59 +02:00
|
|
|
volume_add_dirty_box(volume, dirty_box);
|
2009-01-14 10:01:10 +01:00
|
|
|
|
|
|
|
return WINED3D_OK;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2009-09-16 08:37:21 +02:00
|
|
|
static const IWineD3DVolumeTextureVtbl IWineD3DVolumeTexture_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
|
|
|
IWineD3DVolumeTextureImpl_QueryInterface,
|
|
|
|
IWineD3DVolumeTextureImpl_AddRef,
|
|
|
|
IWineD3DVolumeTextureImpl_Release,
|
2005-03-14 11:12:52 +01:00
|
|
|
/* resource */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DVolumeTextureImpl_GetParent,
|
|
|
|
IWineD3DVolumeTextureImpl_SetPrivateData,
|
|
|
|
IWineD3DVolumeTextureImpl_GetPrivateData,
|
|
|
|
IWineD3DVolumeTextureImpl_FreePrivateData,
|
|
|
|
IWineD3DVolumeTextureImpl_SetPriority,
|
|
|
|
IWineD3DVolumeTextureImpl_GetPriority,
|
|
|
|
IWineD3DVolumeTextureImpl_PreLoad,
|
2008-01-12 22:56:30 +01:00
|
|
|
IWineD3DVolumeTextureImpl_UnLoad,
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DVolumeTextureImpl_GetType,
|
2005-03-14 11:12:52 +01:00
|
|
|
/* BaseTexture */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DVolumeTextureImpl_SetLOD,
|
|
|
|
IWineD3DVolumeTextureImpl_GetLOD,
|
|
|
|
IWineD3DVolumeTextureImpl_GetLevelCount,
|
|
|
|
IWineD3DVolumeTextureImpl_SetAutoGenFilterType,
|
|
|
|
IWineD3DVolumeTextureImpl_GetAutoGenFilterType,
|
|
|
|
IWineD3DVolumeTextureImpl_GenerateMipSubLevels,
|
|
|
|
IWineD3DVolumeTextureImpl_SetDirty,
|
|
|
|
IWineD3DVolumeTextureImpl_GetDirty,
|
2005-03-14 11:12:52 +01:00
|
|
|
/* not in d3d */
|
|
|
|
IWineD3DVolumeTextureImpl_BindTexture,
|
2008-07-09 01:59:10 +02:00
|
|
|
IWineD3DVolumeTextureImpl_IsCondNP2,
|
2005-03-14 11:12:52 +01:00
|
|
|
/* volume texture */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DVolumeTextureImpl_GetLevelDesc,
|
|
|
|
IWineD3DVolumeTextureImpl_GetVolumeLevel,
|
2010-10-14 13:04:02 +02:00
|
|
|
IWineD3DVolumeTextureImpl_Map,
|
|
|
|
IWineD3DVolumeTextureImpl_Unmap,
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DVolumeTextureImpl_AddDirtyBox
|
|
|
|
};
|
2009-09-16 08:37:21 +02:00
|
|
|
|
2009-09-16 08:37:24 +02:00
|
|
|
HRESULT volumetexture_init(IWineD3DVolumeTextureImpl *texture, UINT width, UINT height,
|
2010-08-23 18:28:10 +02:00
|
|
|
UINT depth, UINT levels, IWineD3DDeviceImpl *device, DWORD usage, enum wined3d_format_id format_id,
|
2010-08-31 18:41:40 +02:00
|
|
|
WINED3DPOOL pool, 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 tmp_w, tmp_h, tmp_d;
|
|
|
|
unsigned int i;
|
|
|
|
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[EXT_TEXTURE3D])
|
|
|
|
{
|
|
|
|
WARN("(%p) : Texture cannot be created - no volume texture support.\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(max(max(width, height), depth)) + 1;
|
|
|
|
TRACE("Calculated levels = %u.\n", levels);
|
|
|
|
}
|
|
|
|
|
|
|
|
texture->lpVtbl = &IWineD3DVolumeTexture_Vtbl;
|
|
|
|
|
2010-04-22 18:55:57 +02:00
|
|
|
hr = basetexture_init((IWineD3DBaseTextureImpl *)texture, 1, levels,
|
2010-08-30 20:29:49 +02:00
|
|
|
WINED3DRTYPE_VOLUMETEXTURE, device, 0, usage, format, pool, parent, parent_ops);
|
2009-09-16 08:37:21 +02:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize basetexture, returning %#x.\n", hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Is NP2 support for volumes needed? */
|
|
|
|
texture->baseTexture.pow2Matrix[0] = 1.0f;
|
|
|
|
texture->baseTexture.pow2Matrix[5] = 1.0f;
|
|
|
|
texture->baseTexture.pow2Matrix[10] = 1.0f;
|
|
|
|
texture->baseTexture.pow2Matrix[15] = 1.0f;
|
2010-09-17 11:59:38 +02:00
|
|
|
texture->baseTexture.target = GL_TEXTURE_3D;
|
2009-09-16 08:37:21 +02:00
|
|
|
|
|
|
|
/* Generate all the surfaces. */
|
|
|
|
tmp_w = width;
|
|
|
|
tmp_h = height;
|
|
|
|
tmp_d = depth;
|
|
|
|
|
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
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
IWineD3DVolume *volume;
|
|
|
|
|
2009-09-16 08:37:21 +02:00
|
|
|
/* Create the volume. */
|
|
|
|
hr = IWineD3DDeviceParent_CreateVolume(device->device_parent, parent,
|
2010-08-23 18:28:10 +02:00
|
|
|
tmp_w, tmp_h, tmp_d, format_id, pool, usage, &volume);
|
2009-09-16 08:37:21 +02:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
ERR("Creating a volume for the volume texture failed, hr %#x.\n", hr);
|
|
|
|
volumetexture_cleanup(texture);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set its container to this texture. */
|
2010-08-16 20:00:24 +02:00
|
|
|
volume_set_container((IWineD3DVolumeImpl *)volume, texture);
|
2010-04-22 18:55:57 +02:00
|
|
|
texture->baseTexture.sub_resources[i] = (IWineD3DResourceImpl *)volume;
|
2009-09-16 08:37:21 +02:00
|
|
|
|
|
|
|
/* Calculate the next mipmap level. */
|
|
|
|
tmp_w = max(1, tmp_w >> 1);
|
|
|
|
tmp_h = max(1, tmp_h >> 1);
|
|
|
|
tmp_d = max(1, tmp_d >> 1);
|
|
|
|
}
|
|
|
|
texture->baseTexture.internal_preload = volumetexture_internal_preload;
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|