texture.c 14.6 KB
Newer Older
1
/*
2
 * IWineD3DTexture implementation
3 4
 *
 * Copyright 2002-2005 Jason Edmeades
5 6
 * Copyright 2002-2005 Raphael Junqueira
 * Copyright 2005 Oliver Stieber
7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 * 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
20
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 22 23 24 25
 */

#include "config.h"
#include "wined3d_private.h"

26
WINE_DEFAULT_DEBUG_CHANNEL(d3d_texture);
27 28 29 30 31
#define GLINFO_LOCATION ((IWineD3DImpl *)(((IWineD3DDeviceImpl *)This->resource.wineD3DDevice)->wineD3D))->gl_info

/* *******************************************
   IWineD3DTexture IUnknown parts follow
   ******************************************* */
32
static HRESULT WINAPI IWineD3DTextureImpl_QueryInterface(IWineD3DTexture *iface, REFIID riid, LPVOID *ppobj)
33 34
{
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
35 36
    TRACE("(%p)->(%s,%p)\n",This,debugstr_guid(riid),ppobj);
    if (IsEqualGUID(riid, &IID_IUnknown)
37
        || IsEqualGUID(riid, &IID_IWineD3DBase)
38 39 40 41 42
        || IsEqualGUID(riid, &IID_IWineD3DResource)
        || IsEqualGUID(riid, &IID_IWineD3DBaseTexture)
        || IsEqualGUID(riid, &IID_IWineD3DTexture)){
        IUnknown_AddRef(iface);
        *ppobj = This;
43
        return WINED3D_OK;
44
    }
45
    *ppobj = NULL;
46 47 48
    return E_NOINTERFACE;
}

49
static ULONG WINAPI IWineD3DTextureImpl_AddRef(IWineD3DTexture *iface) {
50
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
51
    TRACE("(%p) : AddRef increasing from %d\n", This, This->resource.ref);
52 53 54
    return InterlockedIncrement(&This->resource.ref);
}

55
static ULONG WINAPI IWineD3DTextureImpl_Release(IWineD3DTexture *iface) {
56 57
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
    ULONG ref;
58
    TRACE("(%p) : Releasing from %d\n", This, This->resource.ref);
59 60 61
    ref = InterlockedDecrement(&This->resource.ref);
    if (ref == 0) {
        int i;
62 63

        TRACE("(%p) : Cleaning up\n",This);
64 65
        for (i = 0; i < This->baseTexture.levels; i++) {
            if (This->surfaces[i] != NULL) {
66 67
                /* Because the surfaces were created using a callback we need to release there parent otehrwise we leave the parent hanging */
                IUnknown* surfaceParent;
68
                /* Clean out the texture name we gave to the surface so that the surface doesn't try and release it */
69
                IWineD3DSurface_SetGlTextureDesc(This->surfaces[i], 0, 0);
70 71 72
                /* Cleanup the container */
                IWineD3DSurface_SetContainer(This->surfaces[i], 0);
                /* Now, release the parent, which will take care of cleaning up the surface for us */
73 74 75
                IWineD3DSurface_GetParent(This->surfaces[i], &surfaceParent);
                IUnknown_Release(surfaceParent);
                IUnknown_Release(surfaceParent);
76 77
            }
        }
78
        TRACE("(%p) : cleaning up base texture\n", This);
79
        IWineD3DBaseTextureImpl_CleanUp((IWineD3DBaseTexture *)iface);
80
        /* free the object */
81 82 83 84 85 86 87 88
        HeapFree(GetProcessHeap(), 0, This);
    }
    return ref;
}

/* ****************************************************
   IWineD3DTexture IWineD3DResource parts follow
   **************************************************** */
89
static HRESULT WINAPI IWineD3DTextureImpl_GetDevice(IWineD3DTexture *iface, IWineD3DDevice** ppDevice) {
90 91 92
    return IWineD3DResourceImpl_GetDevice((IWineD3DResource *)iface, ppDevice);
}

93
static HRESULT WINAPI IWineD3DTextureImpl_SetPrivateData(IWineD3DTexture *iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
94 95 96
    return IWineD3DResourceImpl_SetPrivateData((IWineD3DResource *)iface, refguid, pData, SizeOfData, Flags);
}

97
static HRESULT WINAPI IWineD3DTextureImpl_GetPrivateData(IWineD3DTexture *iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
98 99 100
    return IWineD3DResourceImpl_GetPrivateData((IWineD3DResource *)iface, refguid, pData, pSizeOfData);
}

101
static HRESULT WINAPI IWineD3DTextureImpl_FreePrivateData(IWineD3DTexture *iface, REFGUID refguid) {
102 103 104
    return IWineD3DResourceImpl_FreePrivateData((IWineD3DResource *)iface, refguid);
}

105
static DWORD WINAPI IWineD3DTextureImpl_SetPriority(IWineD3DTexture *iface, DWORD PriorityNew) {
106 107 108
    return IWineD3DResourceImpl_SetPriority((IWineD3DResource *)iface, PriorityNew);
}

109
static DWORD WINAPI IWineD3DTextureImpl_GetPriority(IWineD3DTexture *iface) {
110 111 112
    return IWineD3DResourceImpl_GetPriority((IWineD3DResource *)iface);
}

113
static void WINAPI IWineD3DTextureImpl_PreLoad(IWineD3DTexture *iface) {
114 115

    /* Override the IWineD3DResource PreLoad method */
116
    unsigned int i;
117
    BOOL setGlTextureDesc = FALSE;
118
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
119

120
    TRACE("(%p) : About to load texture\n", This);
121

122 123
    if (This->baseTexture.textureName == 0)  setGlTextureDesc = TRUE;

124 125
    IWineD3DTexture_BindTexture(iface);
    ENTER_GL();
126
        /* If were dirty then reload the surfaces */
127
    if(This->baseTexture.dirty) {
128

129
        for (i = 0; i < This->baseTexture.levels; i++) {
130 131 132
            if(setGlTextureDesc)
                IWineD3DSurface_SetGlTextureDesc(This->surfaces[i], This->baseTexture.textureName, IWineD3DTexture_GetTextureDimensions(iface));
            IWineD3DSurface_LoadTexture(This->surfaces[i]);
133
        }
134

135
        /* No longer dirty */
136
        This->baseTexture.dirty = FALSE;
137 138
    } else {
        TRACE("(%p) Texture not dirty, nothing to do\n" , iface);
139
    }
140 141 142 143 144
    LEAVE_GL();

    return ;
}

145
static WINED3DRESOURCETYPE WINAPI IWineD3DTextureImpl_GetType(IWineD3DTexture *iface) {
146 147 148
    return IWineD3DResourceImpl_GetType((IWineD3DResource *)iface);
}

149
static HRESULT WINAPI IWineD3DTextureImpl_GetParent(IWineD3DTexture *iface, IUnknown **pParent) {
150 151 152 153 154 155
    return IWineD3DResourceImpl_GetParent((IWineD3DResource *)iface, pParent);
}

/* ******************************************************
   IWineD3DTexture IWineD3DBaseTexture parts follow
   ****************************************************** */
156
static DWORD WINAPI IWineD3DTextureImpl_SetLOD(IWineD3DTexture *iface, DWORD LODNew) {
157 158 159
    return IWineD3DBaseTextureImpl_SetLOD((IWineD3DBaseTexture *)iface, LODNew);
}

160
static DWORD WINAPI IWineD3DTextureImpl_GetLOD(IWineD3DTexture *iface) {
161 162 163
    return IWineD3DBaseTextureImpl_GetLOD((IWineD3DBaseTexture *)iface);
}

164
static DWORD WINAPI IWineD3DTextureImpl_GetLevelCount(IWineD3DTexture *iface) {
165 166 167
    return IWineD3DBaseTextureImpl_GetLevelCount((IWineD3DBaseTexture *)iface);
}

168
static HRESULT WINAPI IWineD3DTextureImpl_SetAutoGenFilterType(IWineD3DTexture *iface, WINED3DTEXTUREFILTERTYPE FilterType) {
169 170 171
  return IWineD3DBaseTextureImpl_SetAutoGenFilterType((IWineD3DBaseTexture *)iface, FilterType);
}

172
static WINED3DTEXTUREFILTERTYPE WINAPI IWineD3DTextureImpl_GetAutoGenFilterType(IWineD3DTexture *iface) {
173 174 175
  return IWineD3DBaseTextureImpl_GetAutoGenFilterType((IWineD3DBaseTexture *)iface);
}

176
static void WINAPI IWineD3DTextureImpl_GenerateMipSubLevels(IWineD3DTexture *iface) {
177 178 179 180
  return IWineD3DBaseTextureImpl_GenerateMipSubLevels((IWineD3DBaseTexture *)iface);
}

/* Internal function, No d3d mapping */
181
static BOOL WINAPI IWineD3DTextureImpl_SetDirty(IWineD3DTexture *iface, BOOL dirty) {
182
    return IWineD3DBaseTextureImpl_SetDirty((IWineD3DBaseTexture *)iface, dirty);
183 184
}

185
static BOOL WINAPI IWineD3DTextureImpl_GetDirty(IWineD3DTexture *iface) {
186 187 188
    return IWineD3DBaseTextureImpl_GetDirty((IWineD3DBaseTexture *)iface);
}

189
static HRESULT WINAPI IWineD3DTextureImpl_BindTexture(IWineD3DTexture *iface) {
190
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
191
    TRACE("(%p) : relay to BaseTexture\n", This);
192
    return IWineD3DBaseTextureImpl_BindTexture((IWineD3DBaseTexture *)iface);
193 194
}

195
static HRESULT WINAPI IWineD3DTextureImpl_UnBindTexture(IWineD3DTexture *iface) {
196
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
197
    TRACE("(%p) : relay to BaseTexture\n", This);
198
    return IWineD3DBaseTextureImpl_UnBindTexture((IWineD3DBaseTexture *)iface);
199 200
}

201
static UINT WINAPI IWineD3DTextureImpl_GetTextureDimensions(IWineD3DTexture *iface) {
202
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
203
    TRACE("(%p)\n", This);
204 205 206 207

    return GL_TEXTURE_2D;
}

208
static void WINAPI IWineD3DTextureImpl_ApplyStateChanges(IWineD3DTexture *iface,
209 210
                                                   const DWORD textureStates[WINED3D_HIGHEST_TEXTURE_STATE + 1],
                                                   const DWORD samplerStates[WINED3D_HIGHEST_SAMPLER_STATE + 1]) {
211 212
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
    float matrix[16];
213
    IWineD3DBaseTextureImpl_ApplyStateChanges((IWineD3DBaseTexture *)iface, textureStates, samplerStates);
214 215 216 217 218

    /** non-power2 fixups using texture matrix **/
    if(This->pow2scalingFactorX != 1.0f || This->pow2scalingFactorY != 1.0f) {
        /* Apply non-power2 mappings and texture offsets so long as the texture coords aren't projected or generated */
        if(((textureStates[WINED3DTSS_TEXCOORDINDEX] & 0xFFFF0000) == D3DTSS_TCI_PASSTHRU) &&
219
                      (~textureStates[WINED3DTSS_TEXTURETRANSFORMFLAGS] & WINED3DTTFF_PROJECTED)) {
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
            glMatrixMode(GL_TEXTURE);
            memset(matrix, 0 , sizeof(matrix));
            matrix[0] = This->pow2scalingFactorX;
            matrix[5] = This->pow2scalingFactorY;
#if 0   /* this isn't needed any more, I changed the translation in drawprim.c to 0.9/width instead of 1/width and everything lines up ok. left here as a reminder */
            matrix[12] = -0.25f / (float)This->width;
            matrix[13] = -0.75f / (float)This->height;
#endif
            matrix[10] = 1;
            matrix[15] = 1;
            TRACE("(%p) Setup Matrix:\n", This);
            TRACE(" %f %f %f %f\n", matrix[0], matrix[1], matrix[2], matrix[3]);
            TRACE(" %f %f %f %f\n", matrix[4], matrix[5], matrix[6], matrix[7]);
            TRACE(" %f %f %f %f\n", matrix[8], matrix[9], matrix[10], matrix[11]);
            TRACE(" %f %f %f %f\n", matrix[12], matrix[13], matrix[14], matrix[15]);
            TRACE("\n");

            glMultMatrixf(matrix);
        } else {
            /* I don't expect nonpower 2 textures to be used with generated texture coordinates, but if they are present a fixme. */
            FIXME("Non-power2 texture being used with generated texture coords\n");
        }
    }

244
}
245

246 247 248
/* *******************************************
   IWineD3DTexture IWineD3DTexture parts follow
   ******************************************* */
249
static HRESULT WINAPI IWineD3DTextureImpl_GetLevelDesc(IWineD3DTexture *iface, UINT Level, WINED3DSURFACE_DESC* pDesc) {
250 251 252 253
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;

    if (Level < This->baseTexture.levels) {
        TRACE("(%p) Level (%d)\n", This, Level);
254
        return IWineD3DSurface_GetDesc(This->surfaces[Level], pDesc);
255 256
    }
    FIXME("(%p) level(%d) overflow Levels(%d)\n", This, Level, This->baseTexture.levels);
257
    return WINED3DERR_INVALIDCALL;
258 259
}

260
static HRESULT WINAPI IWineD3DTextureImpl_GetSurfaceLevel(IWineD3DTexture *iface, UINT Level, IWineD3DSurface** ppSurfaceLevel) {
261
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
262
    HRESULT hr = WINED3DERR_INVALIDCALL;
263 264 265 266

    if (Level < This->baseTexture.levels) {
        *ppSurfaceLevel = This->surfaces[Level];
        IWineD3DSurface_AddRef((IWineD3DSurface*) This->surfaces[Level]);
267
        hr = WINED3D_OK;
268 269
        TRACE("(%p) : returning %p for level %d\n", This, *ppSurfaceLevel, Level);
    }
270
    if (WINED3D_OK != hr) {
271 272 273 274
        WARN("(%p) level(%d) overflow Levels(%d)\n", This, Level, This->baseTexture.levels);
        *ppSurfaceLevel = NULL; /* Just to be on the safe side.. */
    }
    return hr;
275 276
}

277
static HRESULT WINAPI IWineD3DTextureImpl_LockRect(IWineD3DTexture *iface, UINT Level, WINED3DLOCKED_RECT *pLockedRect,
278 279
                                            CONST RECT *pRect, DWORD Flags) {
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
280
    HRESULT hr = WINED3DERR_INVALIDCALL;
281 282

    if (Level < This->baseTexture.levels) {
283
        hr = IWineD3DSurface_LockRect(This->surfaces[Level], pLockedRect, pRect, Flags);
284
    }
285
    if (WINED3D_OK == hr) {
286
        TRACE("(%p) Level (%d) success\n", This, Level);
287
    } else {
288
        WARN("(%p) level(%d) overflow Levels(%d)\n", This, Level, This->baseTexture.levels);
289
    }
290

291 292 293
    return hr;
}

294
static HRESULT WINAPI IWineD3DTextureImpl_UnlockRect(IWineD3DTexture *iface, UINT Level) {
295
   IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
296
    HRESULT hr = WINED3DERR_INVALIDCALL;
297 298

    if (Level < This->baseTexture.levels) {
299 300
        hr = IWineD3DSurface_UnlockRect(This->surfaces[Level]);
    }
301
    if ( WINED3D_OK == hr) {
302
        TRACE("(%p) Level (%d) success\n", This, Level);
303
    } else {
304
        WARN("(%p) level(%d) overflow Levels(%d)\n", This, Level, This->baseTexture.levels);
305 306 307 308
    }
    return hr;
}

309
static HRESULT WINAPI IWineD3DTextureImpl_AddDirtyRect(IWineD3DTexture *iface, CONST RECT* pDirtyRect) {
310 311
    IWineD3DTextureImpl *This = (IWineD3DTextureImpl *)iface;
    This->baseTexture.dirty = TRUE;
312
    TRACE("(%p) : dirtyfication of surface Level (0)\n", This);
313
    return IWineD3DSurface_AddDirtyRect(This->surfaces[0], pDirtyRect);
314 315
}

316
const IWineD3DTextureVtbl IWineD3DTexture_Vtbl =
317
{
318
    /* IUnknown */
319 320 321
    IWineD3DTextureImpl_QueryInterface,
    IWineD3DTextureImpl_AddRef,
    IWineD3DTextureImpl_Release,
322
    /* IWineD3DResource */
323 324 325 326 327 328 329 330 331
    IWineD3DTextureImpl_GetParent,
    IWineD3DTextureImpl_GetDevice,
    IWineD3DTextureImpl_SetPrivateData,
    IWineD3DTextureImpl_GetPrivateData,
    IWineD3DTextureImpl_FreePrivateData,
    IWineD3DTextureImpl_SetPriority,
    IWineD3DTextureImpl_GetPriority,
    IWineD3DTextureImpl_PreLoad,
    IWineD3DTextureImpl_GetType,
332
    /* IWineD3DBaseTexture */
333 334 335 336 337 338 339 340
    IWineD3DTextureImpl_SetLOD,
    IWineD3DTextureImpl_GetLOD,
    IWineD3DTextureImpl_GetLevelCount,
    IWineD3DTextureImpl_SetAutoGenFilterType,
    IWineD3DTextureImpl_GetAutoGenFilterType,
    IWineD3DTextureImpl_GenerateMipSubLevels,
    IWineD3DTextureImpl_SetDirty,
    IWineD3DTextureImpl_GetDirty,
341 342
    IWineD3DTextureImpl_BindTexture,
    IWineD3DTextureImpl_UnBindTexture,
343
    IWineD3DTextureImpl_GetTextureDimensions,
344
    IWineD3DTextureImpl_ApplyStateChanges,
345
    /* IWineD3DTexture */
346 347 348 349 350 351
    IWineD3DTextureImpl_GetLevelDesc,
    IWineD3DTextureImpl_GetSurfaceLevel,
    IWineD3DTextureImpl_LockRect,
    IWineD3DTextureImpl_UnlockRect,
    IWineD3DTextureImpl_AddDirtyRect
};