2005-01-17 14:44:57 +01:00
|
|
|
/*
|
2005-07-11 22:38:27 +02:00
|
|
|
* IWineD3DTexture 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
|
2008-10-18 19:21:20 +02:00
|
|
|
* Copyright 2007-2008 Stefan Dösinger for CodeWeavers
|
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"
|
|
|
|
|
2005-08-03 21:49:05 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d_texture);
|
2009-06-03 10:47:25 +02:00
|
|
|
|
2010-09-02 19:25:00 +02:00
|
|
|
/* Do not call while under the GL lock. */
|
2009-06-03 10:47:25 +02:00
|
|
|
static void texture_internal_preload(IWineD3DBaseTexture *iface, enum WINED3DSRGB srgb)
|
|
|
|
{
|
|
|
|
/* Override the IWineD3DResource PreLoad method. */
|
|
|
|
IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
|
2009-12-09 20:32:08 +01:00
|
|
|
IWineD3DDeviceImpl *device = This->resource.device;
|
2009-10-28 11:00:11 +01:00
|
|
|
struct wined3d_context *context = NULL;
|
2009-06-03 10:47:25 +02:00
|
|
|
unsigned int i;
|
|
|
|
BOOL srgb_mode;
|
|
|
|
BOOL *dirty;
|
|
|
|
|
|
|
|
TRACE("(%p) : About to load texture.\n", This);
|
|
|
|
|
|
|
|
switch (srgb)
|
|
|
|
{
|
|
|
|
case SRGB_RGB:
|
|
|
|
srgb_mode = FALSE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SRGB_BOTH:
|
|
|
|
texture_internal_preload(iface, SRGB_RGB);
|
|
|
|
/* Fallthrough */
|
|
|
|
|
|
|
|
case SRGB_SRGB:
|
|
|
|
srgb_mode = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
srgb_mode = This->baseTexture.is_srgb;
|
|
|
|
break;
|
|
|
|
}
|
2009-09-19 14:59:27 +02:00
|
|
|
dirty = srgb_mode ? &This->baseTexture.texture_srgb.dirty : &This->baseTexture.texture_rgb.dirty;
|
2009-06-03 10:47:25 +02:00
|
|
|
|
|
|
|
if (!device->isInDraw)
|
|
|
|
{
|
2009-10-28 11:00:11 +01:00
|
|
|
/* context_acquire() sets isInDraw to TRUE when loading a pbuffer into a texture,
|
2009-06-03 10:47:25 +02:00
|
|
|
* thus no danger of recursive calls. */
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(device, NULL);
|
2009-06-03 10:47:25 +02:00
|
|
|
}
|
|
|
|
|
2010-08-30 20:29:49 +02:00
|
|
|
if (This->resource.format->id == WINED3DFMT_P8_UINT
|
|
|
|
|| This->resource.format->id == WINED3DFMT_P8_UINT_A8_UNORM)
|
2009-06-03 10:47:25 +02:00
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
for (i = 0; i < This->baseTexture.level_count; ++i)
|
2009-06-03 10:47:25 +02:00
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
IWineD3DSurfaceImpl *surface = (IWineD3DSurfaceImpl *)This->baseTexture.sub_resources[i];
|
|
|
|
if (palette9_changed(surface))
|
2009-06-03 10:47:25 +02:00
|
|
|
{
|
|
|
|
TRACE("Reloading surface because the d3d8/9 palette was changed.\n");
|
|
|
|
/* 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);
|
2009-06-03 10:47:25 +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:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the texture is marked dirty or the srgb sampler setting has changed
|
|
|
|
* since the last load then reload the surfaces. */
|
|
|
|
if (*dirty)
|
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
for (i = 0; i < This->baseTexture.level_count; ++i)
|
2009-06-03 10:47:25 +02:00
|
|
|
{
|
2010-04-22 18:55:57 +02:00
|
|
|
IWineD3DSurface_LoadTexture((IWineD3DSurface *)This->baseTexture.sub_resources[i], srgb_mode);
|
2009-06-03 10:47:25 +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:25 +02:00
|
|
|
/* No longer dirty. */
|
|
|
|
*dirty = FALSE;
|
|
|
|
}
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2009-09-16 08:37:15 +02:00
|
|
|
static void texture_cleanup(IWineD3DTextureImpl *This)
|
2009-06-02 09:01:17 +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-02 09:01:17 +02:00
|
|
|
{
|
2010-04-26 21:33:02 +02:00
|
|
|
IWineD3DSurfaceImpl *surface = (IWineD3DSurfaceImpl *)This->baseTexture.sub_resources[i];
|
2010-04-22 18:55:57 +02:00
|
|
|
if (surface)
|
2009-06-02 09:01:17 +02:00
|
|
|
{
|
|
|
|
/* Clean out the texture name we gave to the surface so that the
|
|
|
|
* surface doesn't try and release it */
|
2010-04-22 18:55:57 +02:00
|
|
|
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-02 09:01:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("(%p) : Cleaning up base texture\n", This);
|
|
|
|
basetexture_cleanup((IWineD3DBaseTexture *)This);
|
|
|
|
}
|
|
|
|
|
2005-01-17 14:44:57 +01:00
|
|
|
/* *******************************************
|
|
|
|
IWineD3DTexture IUnknown parts follow
|
|
|
|
******************************************* */
|
2009-06-03 10:47:25 +02:00
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DTextureImpl_QueryInterface(IWineD3DTexture *iface, REFIID riid, LPVOID *ppobj)
|
2005-01-17 14:44:57 +01:00
|
|
|
{
|
|
|
|
IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)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_IWineD3DTexture)){
|
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
*ppobj = This;
|
2006-04-07 12:51:12 +02:00
|
|
|
return WINED3D_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 IWineD3DTextureImpl_AddRef(IWineD3DTexture *iface) {
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)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 IWineD3DTextureImpl_Release(IWineD3DTexture *iface) {
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)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 23:03:25 +02:00
|
|
|
if (!ref)
|
|
|
|
{
|
|
|
|
texture_cleanup(This);
|
2009-09-17 23:03:33 +02:00
|
|
|
This->resource.parent_ops->wined3d_object_destroyed(This->resource.parent);
|
2009-09-17 23:03:25 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2006-12-05 00:28:58 +01:00
|
|
|
|
2005-01-17 14:44:57 +01:00
|
|
|
/* ****************************************************
|
|
|
|
IWineD3DTexture IWineD3DResource parts follow
|
|
|
|
**************************************************** */
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DTextureImpl_SetPrivateData(IWineD3DTexture *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 IWineD3DTextureImpl_GetPrivateData(IWineD3DTexture *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 IWineD3DTextureImpl_FreePrivateData(IWineD3DTexture *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 IWineD3DTextureImpl_SetPriority(IWineD3DTexture *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 IWineD3DTextureImpl_GetPriority(IWineD3DTexture *iface) {
|
2008-12-02 18:41:33 +01:00
|
|
|
return resource_get_priority((IWineD3DResource *)iface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-09-02 19:25:00 +02:00
|
|
|
/* Do not call while under the GL lock. */
|
2009-02-17 00:25:51 +01:00
|
|
|
static void WINAPI IWineD3DTextureImpl_PreLoad(IWineD3DTexture *iface) {
|
|
|
|
texture_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 IWineD3DTextureImpl_UnLoad(IWineD3DTexture *iface) {
|
2008-01-08 15:33:24 +01:00
|
|
|
unsigned int i;
|
|
|
|
IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)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)
|
|
|
|
{
|
2010-04-26 21:33:02 +02:00
|
|
|
IWineD3DSurfaceImpl *surface = (IWineD3DSurfaceImpl *)This->baseTexture.sub_resources[i];
|
|
|
|
IWineD3DSurface_UnLoad((IWineD3DSurface *)surface);
|
2010-04-22 18:55:57 +02:00
|
|
|
surface_set_texture_name(surface, 0, FALSE); /* Delete rgb name */
|
|
|
|
surface_set_texture_name(surface, 0, TRUE); /* delete srgb name */
|
2008-01-08 15:33:24 +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 IWineD3DTextureImpl_GetType(IWineD3DTexture *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 IWineD3DTextureImpl_GetParent(IWineD3DTexture *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return ((IWineD3DTextureImpl *)iface)->resource.parent;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ******************************************************
|
|
|
|
IWineD3DTexture IWineD3DBaseTexture parts follow
|
|
|
|
****************************************************** */
|
2006-06-10 13:15:32 +02:00
|
|
|
static DWORD WINAPI IWineD3DTextureImpl_SetLOD(IWineD3DTexture *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 IWineD3DTextureImpl_GetLOD(IWineD3DTexture *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 IWineD3DTextureImpl_GetLevelCount(IWineD3DTexture *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 IWineD3DTextureImpl_SetAutoGenFilterType(IWineD3DTexture *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 IWineD3DTextureImpl_GetAutoGenFilterType(IWineD3DTexture *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 IWineD3DTextureImpl_GenerateMipSubLevels(IWineD3DTexture *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 IWineD3DTextureImpl_SetDirty(IWineD3DTexture *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 IWineD3DTextureImpl_GetDirty(IWineD3DTexture *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-01-16 16:22:09 +01:00
|
|
|
static HRESULT WINAPI IWineD3DTextureImpl_BindTexture(IWineD3DTexture *iface, BOOL srgb) {
|
2005-03-14 11:12:52 +01:00
|
|
|
IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
|
2009-01-16 16:22:09 +01:00
|
|
|
BOOL set_gl_texture_desc;
|
2008-01-02 19:52:05 +01:00
|
|
|
HRESULT hr;
|
|
|
|
|
2005-11-10 13:14:56 +01:00
|
|
|
TRACE("(%p) : relay to BaseTexture\n", This);
|
2008-01-02 19:52:05 +01:00
|
|
|
|
2009-01-16 16:22:09 +01:00
|
|
|
hr = basetexture_bind((IWineD3DBaseTexture *)iface, srgb, &set_gl_texture_desc);
|
2008-01-02 19:52:05 +01:00
|
|
|
if (set_gl_texture_desc && SUCCEEDED(hr)) {
|
|
|
|
UINT i;
|
2009-09-19 14:59:27 +02:00
|
|
|
struct gl_texture *gl_tex;
|
|
|
|
|
|
|
|
if(This->baseTexture.is_srgb) {
|
|
|
|
gl_tex = &This->baseTexture.texture_srgb;
|
|
|
|
} else {
|
|
|
|
gl_tex = &This->baseTexture.texture_rgb;
|
|
|
|
}
|
|
|
|
|
2010-04-22 18:55:57 +02:00
|
|
|
for (i = 0; i < This->baseTexture.level_count; ++i)
|
|
|
|
{
|
2010-04-26 21:33:02 +02:00
|
|
|
IWineD3DSurfaceImpl *surface = (IWineD3DSurfaceImpl *)This->baseTexture.sub_resources[i];
|
2010-04-22 18:55:57 +02:00
|
|
|
surface_set_texture_name(surface, gl_tex->name, This->baseTexture.is_srgb);
|
2008-01-02 19:52:05 +01:00
|
|
|
}
|
2010-04-22 18:55:57 +02:00
|
|
|
|
|
|
|
/* Conditinal non power of two textures use a different clamping
|
|
|
|
* default. If we're using the GL_WINE_normalized_texrect partial
|
|
|
|
* driver emulation, we're dealing with a GL_TEXTURE_2D texture which
|
|
|
|
* has the address mode set to repeat - something that prevents us
|
|
|
|
* from hitting the accelerated codepath. Thus manually set the GL
|
|
|
|
* state. The same applies to filtering. Even if the texture has only
|
|
|
|
* one mip level, the default LINEAR_MIPMAP_LINEAR filter causes a SW
|
|
|
|
* fallback on macos. */
|
2010-09-17 11:59:39 +02:00
|
|
|
if (IWineD3DBaseTexture_IsCondNP2(iface))
|
|
|
|
{
|
|
|
|
GLenum target = This->baseTexture.target;
|
|
|
|
|
2008-08-13 00:18:25 +02:00
|
|
|
ENTER_GL();
|
2010-09-17 11:59:39 +02:00
|
|
|
glTexParameteri(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
checkGLcall("glTexParameteri(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)");
|
|
|
|
glTexParameteri(target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
|
|
checkGLcall("glTexParameteri(target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)");
|
|
|
|
glTexParameteri(target, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
|
checkGLcall("glTexParameteri(target, GL_TEXTURE_MIN_FILTER, GL_NEAREST)");
|
|
|
|
glTexParameteri(target, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
checkGLcall("glTexParameteri(target, GL_TEXTURE_MAG_FILTER, GL_NEAREST)");
|
2008-08-13 00:18:25 +02:00
|
|
|
LEAVE_GL();
|
2009-09-19 14:59:27 +02:00
|
|
|
gl_tex->states[WINED3DTEXSTA_ADDRESSU] = WINED3DTADDRESS_CLAMP;
|
|
|
|
gl_tex->states[WINED3DTEXSTA_ADDRESSV] = WINED3DTADDRESS_CLAMP;
|
|
|
|
gl_tex->states[WINED3DTEXSTA_MAGFILTER] = WINED3DTEXF_POINT;
|
|
|
|
gl_tex->states[WINED3DTEXSTA_MINFILTER] = WINED3DTEXF_POINT;
|
|
|
|
gl_tex->states[WINED3DTEXSTA_MIPFILTER] = WINED3DTEXF_NONE;
|
2008-08-13 00:18:25 +02:00
|
|
|
}
|
2008-01-02 19:52:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
2005-03-14 11:12:52 +01:00
|
|
|
}
|
|
|
|
|
2008-07-09 01:59:10 +02:00
|
|
|
static BOOL WINAPI IWineD3DTextureImpl_IsCondNP2(IWineD3DTexture *iface) {
|
|
|
|
IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
|
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
|
|
|
return This->cond_np2;
|
|
|
|
}
|
|
|
|
|
2005-01-17 14:44:57 +01:00
|
|
|
/* *******************************************
|
|
|
|
IWineD3DTexture IWineD3DTexture parts follow
|
|
|
|
******************************************* */
|
2010-04-22 18:55:59 +02:00
|
|
|
static HRESULT WINAPI IWineD3DTextureImpl_GetLevelDesc(IWineD3DTexture *iface, UINT level, WINED3DSURFACE_DESC *desc)
|
|
|
|
{
|
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
|
|
|
IWineD3DSurface *surface;
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2010-04-22 18:55:59 +02:00
|
|
|
TRACE("iface %p, level %u, desc %p.\n", iface, level, desc);
|
|
|
|
|
|
|
|
if (!(surface = (IWineD3DSurface *)basetexture_get_sub_resource(texture, 0, level)))
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
WARN("Failed to get sub-resource.\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
2010-04-22 18:55:59 +02:00
|
|
|
|
2010-09-08 11:24:47 +02:00
|
|
|
IWineD3DSurface_GetDesc(surface, desc);
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-04-22 18:55:59 +02:00
|
|
|
static HRESULT WINAPI IWineD3DTextureImpl_GetSurfaceLevel(IWineD3DTexture *iface,
|
|
|
|
UINT level, IWineD3DSurface **surface)
|
|
|
|
{
|
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
|
|
|
IWineD3DSurface *s;
|
2005-06-23 18:44:19 +02:00
|
|
|
|
2010-04-22 18:55:59 +02:00
|
|
|
TRACE("iface %p, level %u, surface %p.\n", iface, level, surface);
|
|
|
|
|
|
|
|
if (!(s = (IWineD3DSurface *)basetexture_get_sub_resource(texture, 0, level)))
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
WARN("Failed to get sub-resource.\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
2005-06-23 18:44:19 +02:00
|
|
|
}
|
2010-04-22 18:55:59 +02:00
|
|
|
|
|
|
|
IWineD3DSurface_AddRef(s);
|
|
|
|
*surface = s;
|
|
|
|
|
|
|
|
TRACE("Returning surface %p.\n", *surface);
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-04-22 18:55:59 +02:00
|
|
|
static HRESULT WINAPI IWineD3DTextureImpl_LockRect(IWineD3DTexture *iface,
|
|
|
|
UINT level, WINED3DLOCKED_RECT *locked_rect, const RECT *rect, DWORD flags)
|
|
|
|
{
|
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
|
|
|
IWineD3DSurface *surface;
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2010-04-22 18:55:59 +02:00
|
|
|
TRACE("iface %p, level %u, locked_rect %p, rect %s, flags %#x.\n",
|
|
|
|
iface, level, locked_rect, wine_dbgstr_rect(rect), flags);
|
|
|
|
|
|
|
|
if (!(surface = (IWineD3DSurface *)basetexture_get_sub_resource(texture, 0, level)))
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
WARN("Failed to get sub-resource.\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
2005-06-23 18:44:19 +02:00
|
|
|
|
2010-04-22 18:55:59 +02:00
|
|
|
return IWineD3DSurface_LockRect(surface, locked_rect, rect, flags);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-04-22 18:55:59 +02:00
|
|
|
static HRESULT WINAPI IWineD3DTextureImpl_UnlockRect(IWineD3DTexture *iface, UINT level)
|
|
|
|
{
|
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
|
|
|
IWineD3DSurface *surface;
|
|
|
|
|
|
|
|
TRACE("iface %p, level %u.\n", iface, level);
|
2005-01-17 14:44:57 +01:00
|
|
|
|
2010-04-22 18:55:59 +02:00
|
|
|
if (!(surface = (IWineD3DSurface *)basetexture_get_sub_resource(texture, 0, level)))
|
2010-04-22 18:55:57 +02:00
|
|
|
{
|
2010-04-22 18:55:59 +02:00
|
|
|
WARN("Failed to get sub-resource.\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
2010-04-22 18:55:59 +02:00
|
|
|
|
|
|
|
return IWineD3DSurface_UnlockRect(surface);
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2010-04-22 18:55:59 +02:00
|
|
|
static HRESULT WINAPI IWineD3DTextureImpl_AddDirtyRect(IWineD3DTexture *iface, const RECT *dirty_rect)
|
|
|
|
{
|
|
|
|
IWineD3DBaseTextureImpl *texture = (IWineD3DBaseTextureImpl *)iface;
|
2010-04-26 21:33:04 +02:00
|
|
|
IWineD3DSurfaceImpl *surface;
|
2010-04-22 18:55:59 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, dirty_rect %s.\n", iface, wine_dbgstr_rect(dirty_rect));
|
|
|
|
|
2010-04-26 21:33:04 +02:00
|
|
|
if (!(surface = (IWineD3DSurfaceImpl *)basetexture_get_sub_resource(texture, 0, 0)))
|
2010-04-22 18:55:59 +02:00
|
|
|
{
|
|
|
|
WARN("Failed to get sub-resource.\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
texture->baseTexture.texture_rgb.dirty = TRUE;
|
|
|
|
texture->baseTexture.texture_srgb.dirty = TRUE;
|
|
|
|
surface_add_dirty_rect(surface, dirty_rect);
|
2009-01-14 10:01:11 +01:00
|
|
|
|
|
|
|
return WINED3D_OK;
|
2005-01-17 14:44:57 +01:00
|
|
|
}
|
|
|
|
|
2009-09-16 08:37:21 +02:00
|
|
|
static const IWineD3DTextureVtbl IWineD3DTexture_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
|
|
|
IWineD3DTextureImpl_QueryInterface,
|
|
|
|
IWineD3DTextureImpl_AddRef,
|
|
|
|
IWineD3DTextureImpl_Release,
|
2005-06-23 18:44:19 +02:00
|
|
|
/* IWineD3DResource */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DTextureImpl_GetParent,
|
|
|
|
IWineD3DTextureImpl_SetPrivateData,
|
|
|
|
IWineD3DTextureImpl_GetPrivateData,
|
|
|
|
IWineD3DTextureImpl_FreePrivateData,
|
|
|
|
IWineD3DTextureImpl_SetPriority,
|
|
|
|
IWineD3DTextureImpl_GetPriority,
|
|
|
|
IWineD3DTextureImpl_PreLoad,
|
2008-01-12 22:56:30 +01:00
|
|
|
IWineD3DTextureImpl_UnLoad,
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DTextureImpl_GetType,
|
2005-06-23 18:44:19 +02:00
|
|
|
/* IWineD3DBaseTexture */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DTextureImpl_SetLOD,
|
|
|
|
IWineD3DTextureImpl_GetLOD,
|
|
|
|
IWineD3DTextureImpl_GetLevelCount,
|
|
|
|
IWineD3DTextureImpl_SetAutoGenFilterType,
|
|
|
|
IWineD3DTextureImpl_GetAutoGenFilterType,
|
|
|
|
IWineD3DTextureImpl_GenerateMipSubLevels,
|
|
|
|
IWineD3DTextureImpl_SetDirty,
|
|
|
|
IWineD3DTextureImpl_GetDirty,
|
2005-03-14 11:12:52 +01:00
|
|
|
IWineD3DTextureImpl_BindTexture,
|
2008-07-09 01:59:10 +02:00
|
|
|
IWineD3DTextureImpl_IsCondNP2,
|
2005-06-23 18:44:19 +02:00
|
|
|
/* IWineD3DTexture */
|
2005-01-17 14:44:57 +01:00
|
|
|
IWineD3DTextureImpl_GetLevelDesc,
|
|
|
|
IWineD3DTextureImpl_GetSurfaceLevel,
|
|
|
|
IWineD3DTextureImpl_LockRect,
|
|
|
|
IWineD3DTextureImpl_UnlockRect,
|
|
|
|
IWineD3DTextureImpl_AddDirtyRect
|
|
|
|
};
|
2009-09-16 08:37:21 +02:00
|
|
|
|
|
|
|
HRESULT texture_init(IWineD3DTextureImpl *texture, UINT width, UINT height, 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_width, pow2_height;
|
|
|
|
UINT tmp_w, tmp_h;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Non-power2 support. */
|
|
|
|
if (gl_info->supported[ARB_TEXTURE_NON_POWER_OF_TWO])
|
|
|
|
{
|
|
|
|
pow2_width = width;
|
|
|
|
pow2_height = height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Find the nearest pow2 match. */
|
|
|
|
pow2_width = pow2_height = 1;
|
|
|
|
while (pow2_width < width) pow2_width <<= 1;
|
|
|
|
while (pow2_height < height) pow2_height <<= 1;
|
|
|
|
|
|
|
|
if (pow2_width != width || pow2_height != height)
|
|
|
|
{
|
|
|
|
if (levels > 1)
|
|
|
|
{
|
|
|
|
WARN("Attempted to create a mipmapped np2 texture without unconditional np2 support.\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
levels = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate levels for mip mapping. */
|
|
|
|
if (usage & WINED3DUSAGE_AUTOGENMIPMAP)
|
|
|
|
{
|
|
|
|
if (!gl_info->supported[SGIS_GENERATE_MIPMAP])
|
|
|
|
{
|
|
|
|
WARN("No mipmap generation support, returning WINED3DERR_INVALIDCALL.\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (levels > 1)
|
|
|
|
{
|
|
|
|
WARN("D3DUSAGE_AUTOGENMIPMAP is set, and level count > 1, returning WINED3DERR_INVALIDCALL.\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
levels = 1;
|
|
|
|
}
|
|
|
|
else if (!levels)
|
|
|
|
{
|
|
|
|
levels = wined3d_log2i(max(width, height)) + 1;
|
|
|
|
TRACE("Calculated levels = %u.\n", levels);
|
|
|
|
}
|
|
|
|
|
|
|
|
texture->lpVtbl = &IWineD3DTexture_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_TEXTURE, 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Precalculated scaling for 'faked' non power of two texture coords.
|
|
|
|
* Second also don't use ARB_TEXTURE_RECTANGLE in case the surface format is P8 and EXT_PALETTED_TEXTURE
|
|
|
|
* is used in combination with texture uploads (RTL_READTEX). The reason is that EXT_PALETTED_TEXTURE
|
|
|
|
* doesn't work in combination with ARB_TEXTURE_RECTANGLE. */
|
2010-07-20 18:51:54 +02:00
|
|
|
if (gl_info->supported[WINED3D_GL_NORMALIZED_TEXRECT] && (width != pow2_width || height != pow2_height))
|
2009-09-16 08:37:21 +02:00
|
|
|
{
|
|
|
|
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_2D;
|
2009-09-16 08:37:21 +02:00
|
|
|
texture->cond_np2 = TRUE;
|
|
|
|
texture->baseTexture.minMipLookup = minMipLookup_noFilter;
|
|
|
|
}
|
|
|
|
else if (gl_info->supported[ARB_TEXTURE_RECTANGLE] && (width != pow2_width || height != pow2_height)
|
2010-08-30 20:29:49 +02:00
|
|
|
&& !(format->id == WINED3DFMT_P8_UINT && gl_info->supported[EXT_PALETTED_TEXTURE]
|
2009-09-25 13:31:49 +02:00
|
|
|
&& wined3d_settings.rendertargetlock_mode == RTL_READTEX))
|
2009-09-16 08:37:21 +02:00
|
|
|
{
|
|
|
|
if ((width != 1) || (height != 1)) texture->baseTexture.pow2Matrix_identity = FALSE;
|
|
|
|
|
|
|
|
texture->baseTexture.pow2Matrix[0] = (float)width;
|
|
|
|
texture->baseTexture.pow2Matrix[5] = (float)height;
|
|
|
|
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_RECTANGLE_ARB;
|
2009-09-16 08:37:21 +02:00
|
|
|
texture->cond_np2 = TRUE;
|
|
|
|
|
2010-08-30 20:29:49 +02:00
|
|
|
if(texture->resource.format->Flags & WINED3DFMT_FLAG_FILTERING)
|
2009-09-16 08:37:21 +02:00
|
|
|
{
|
|
|
|
texture->baseTexture.minMipLookup = minMipLookup_noMip;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
texture->baseTexture.minMipLookup = minMipLookup_noFilter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((width != pow2_width) || (height != pow2_height))
|
|
|
|
{
|
|
|
|
texture->baseTexture.pow2Matrix_identity = FALSE;
|
|
|
|
texture->baseTexture.pow2Matrix[0] = (((float)width) / ((float)pow2_width));
|
|
|
|
texture->baseTexture.pow2Matrix[5] = (((float)height) / ((float)pow2_height));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
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_2D;
|
2009-09-16 08:37:21 +02:00
|
|
|
texture->cond_np2 = FALSE;
|
|
|
|
}
|
|
|
|
TRACE("xf(%f) yf(%f)\n", texture->baseTexture.pow2Matrix[0], texture->baseTexture.pow2Matrix[5]);
|
|
|
|
|
|
|
|
/* Generate all the surfaces. */
|
|
|
|
tmp_w = width;
|
|
|
|
tmp_h = height;
|
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
|
|
|
IWineD3DSurface *surface;
|
|
|
|
|
2009-09-16 08:37:21 +02:00
|
|
|
/* Use the callback to create the texture surface. */
|
2010-08-25 20:46:51 +02:00
|
|
|
hr = IWineD3DDeviceParent_CreateSurface(device->device_parent, parent, tmp_w, tmp_h,
|
2010-08-30 20:29:49 +02:00
|
|
|
format->id, usage, pool, i, 0, &surface);
|
2010-03-11 15:03:50 +01:00
|
|
|
if (FAILED(hr))
|
2009-09-16 08:37:21 +02:00
|
|
|
{
|
|
|
|
FIXME("Failed to create surface %p, hr %#x\n", texture, hr);
|
|
|
|
texture_cleanup(texture);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2010-08-16 20:00:25 +02:00
|
|
|
surface_set_container((IWineD3DSurfaceImpl *)surface, WINED3D_CONTAINER_TEXTURE, (IWineD3DBase *)texture);
|
2010-09-17 11:59:38 +02:00
|
|
|
surface_set_texture_target((IWineD3DSurfaceImpl *)surface, texture->baseTexture.target);
|
2010-04-22 18:55:57 +02:00
|
|
|
texture->baseTexture.sub_resources[i] = (IWineD3DResourceImpl *)surface;
|
|
|
|
TRACE("Created surface level %u @ %p.\n", i, surface);
|
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);
|
|
|
|
}
|
|
|
|
texture->baseTexture.internal_preload = texture_internal_preload;
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|