2003-07-01 01:09:17 +00:00
|
|
|
/*
|
|
|
|
* IDirect3DVertexDeclaration9 implementation
|
|
|
|
*
|
|
|
|
* Copyright 2002-2003 Raphael Junqueira
|
|
|
|
* Jason Edmeades
|
|
|
|
*
|
|
|
|
* 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 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-07-01 01:09:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "d3d9_private.h"
|
|
|
|
|
2005-07-07 20:45:39 +00:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
2003-07-01 01:09:17 +00:00
|
|
|
|
2006-07-04 08:53:13 +00:00
|
|
|
typedef struct _D3DDECLTYPE_INFO {
|
|
|
|
D3DDECLTYPE d3dType;
|
2009-03-27 09:25:56 +00:00
|
|
|
WINED3DFORMAT format;
|
2006-07-04 08:53:13 +00:00
|
|
|
int size;
|
|
|
|
int typesize;
|
|
|
|
} D3DDECLTYPE_INFO;
|
|
|
|
|
2006-07-27 20:19:31 +00:00
|
|
|
static D3DDECLTYPE_INFO const d3d_dtype_lookup[D3DDECLTYPE_UNUSED] = {
|
2009-03-27 09:25:56 +00:00
|
|
|
{D3DDECLTYPE_FLOAT1, WINED3DFMT_R32_FLOAT, 1, sizeof(float)},
|
|
|
|
{D3DDECLTYPE_FLOAT2, WINED3DFMT_R32G32_FLOAT, 2, sizeof(float)},
|
|
|
|
{D3DDECLTYPE_FLOAT3, WINED3DFMT_R32G32B32_FLOAT, 3, sizeof(float)},
|
|
|
|
{D3DDECLTYPE_FLOAT4, WINED3DFMT_R32G32B32A32_FLOAT, 4, sizeof(float)},
|
|
|
|
{D3DDECLTYPE_D3DCOLOR, WINED3DFMT_A8R8G8B8, 4, sizeof(BYTE)},
|
|
|
|
{D3DDECLTYPE_UBYTE4, WINED3DFMT_R8G8B8A8_UINT, 4, sizeof(BYTE)},
|
|
|
|
{D3DDECLTYPE_SHORT2, WINED3DFMT_R16G16_SINT, 2, sizeof(short int)},
|
|
|
|
{D3DDECLTYPE_SHORT4, WINED3DFMT_R16G16B16A16_SINT, 4, sizeof(short int)},
|
|
|
|
{D3DDECLTYPE_UBYTE4N, WINED3DFMT_R8G8B8A8_UNORM, 4, sizeof(BYTE)},
|
|
|
|
{D3DDECLTYPE_SHORT2N, WINED3DFMT_R16G16_SNORM, 2, sizeof(short int)},
|
|
|
|
{D3DDECLTYPE_SHORT4N, WINED3DFMT_R16G16B16A16_SNORM, 4, sizeof(short int)},
|
|
|
|
{D3DDECLTYPE_USHORT2N, WINED3DFMT_R16G16_UNORM, 2, sizeof(short int)},
|
|
|
|
{D3DDECLTYPE_USHORT4N, WINED3DFMT_R16G16B16A16_UNORM, 4, sizeof(short int)},
|
|
|
|
{D3DDECLTYPE_UDEC3, WINED3DFMT_R10G10B10A2_UINT, 3, sizeof(short int)},
|
|
|
|
{D3DDECLTYPE_DEC3N, WINED3DFMT_R10G10B10A2_SNORM, 3, sizeof(short int)},
|
|
|
|
{D3DDECLTYPE_FLOAT16_2, WINED3DFMT_R16G16_FLOAT, 2, sizeof(short int)},
|
|
|
|
{D3DDECLTYPE_FLOAT16_4, WINED3DFMT_R16G16B16A16_FLOAT, 4, sizeof(short int)}};
|
2006-07-04 08:53:13 +00:00
|
|
|
|
|
|
|
#define D3D_DECL_SIZE(type) d3d_dtype_lookup[type].size
|
|
|
|
#define D3D_DECL_TYPESIZE(type) d3d_dtype_lookup[type].typesize
|
|
|
|
|
|
|
|
HRESULT vdecl_convert_fvf(
|
|
|
|
DWORD fvf,
|
|
|
|
D3DVERTEXELEMENT9** ppVertexElements) {
|
|
|
|
|
|
|
|
unsigned int idx, idx2;
|
|
|
|
unsigned int offset;
|
|
|
|
BOOL has_pos = (fvf & D3DFVF_POSITION_MASK) != 0;
|
|
|
|
BOOL has_blend = (fvf & D3DFVF_XYZB5) > D3DFVF_XYZRHW;
|
|
|
|
BOOL has_blend_idx = has_blend &&
|
|
|
|
(((fvf & D3DFVF_XYZB5) == D3DFVF_XYZB5) ||
|
|
|
|
(fvf & D3DFVF_LASTBETA_D3DCOLOR) ||
|
|
|
|
(fvf & D3DFVF_LASTBETA_UBYTE4));
|
|
|
|
BOOL has_normal = (fvf & D3DFVF_NORMAL) != 0;
|
|
|
|
BOOL has_psize = (fvf & D3DFVF_PSIZE) != 0;
|
2007-06-14 19:45:15 +00:00
|
|
|
|
2006-07-04 08:53:13 +00:00
|
|
|
BOOL has_diffuse = (fvf & D3DFVF_DIFFUSE) != 0;
|
|
|
|
BOOL has_specular = (fvf & D3DFVF_SPECULAR) !=0;
|
|
|
|
|
|
|
|
DWORD num_textures = (fvf & D3DFVF_TEXCOUNT_MASK) >> D3DFVF_TEXCOUNT_SHIFT;
|
2008-08-20 15:51:45 +00:00
|
|
|
DWORD texcoords = (fvf & 0xFFFF0000) >> 16;
|
2006-07-04 08:53:13 +00:00
|
|
|
|
|
|
|
D3DVERTEXELEMENT9 end_element = D3DDECL_END();
|
|
|
|
D3DVERTEXELEMENT9 *elements = NULL;
|
|
|
|
|
|
|
|
unsigned int size;
|
|
|
|
DWORD num_blends = 1 + (((fvf & D3DFVF_XYZB5) - D3DFVF_XYZB1) >> 1);
|
|
|
|
if (has_blend_idx) num_blends--;
|
|
|
|
|
|
|
|
/* Compute declaration size */
|
|
|
|
size = has_pos + (has_blend && num_blends > 0) + has_blend_idx + has_normal +
|
|
|
|
has_psize + has_diffuse + has_specular + num_textures + 1;
|
|
|
|
|
|
|
|
/* convert the declaration */
|
|
|
|
elements = HeapAlloc(GetProcessHeap(), 0, size * sizeof(D3DVERTEXELEMENT9));
|
|
|
|
if (!elements)
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
|
2008-02-14 22:02:31 +00:00
|
|
|
elements[size-1] = end_element;
|
2006-07-04 08:53:13 +00:00
|
|
|
idx = 0;
|
|
|
|
if (has_pos) {
|
|
|
|
if (!has_blend && (fvf & D3DFVF_XYZRHW)) {
|
|
|
|
elements[idx].Type = D3DDECLTYPE_FLOAT4;
|
|
|
|
elements[idx].Usage = D3DDECLUSAGE_POSITIONT;
|
|
|
|
}
|
2008-12-28 17:57:13 +00:00
|
|
|
else if (!has_blend && (fvf & D3DFVF_XYZW) == D3DFVF_XYZW) {
|
|
|
|
elements[idx].Type = D3DDECLTYPE_FLOAT4;
|
|
|
|
elements[idx].Usage = D3DDECLUSAGE_POSITION;
|
|
|
|
}
|
2006-07-04 08:53:13 +00:00
|
|
|
else {
|
|
|
|
elements[idx].Type = D3DDECLTYPE_FLOAT3;
|
|
|
|
elements[idx].Usage = D3DDECLUSAGE_POSITION;
|
|
|
|
}
|
|
|
|
elements[idx].UsageIndex = 0;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
if (has_blend && (num_blends > 0)) {
|
|
|
|
if (((fvf & D3DFVF_XYZB5) == D3DFVF_XYZB2) && (fvf & D3DFVF_LASTBETA_D3DCOLOR))
|
|
|
|
elements[idx].Type = D3DDECLTYPE_D3DCOLOR;
|
2008-11-02 23:38:14 +00:00
|
|
|
else {
|
|
|
|
switch(num_blends) {
|
|
|
|
case 1: elements[idx].Type = D3DDECLTYPE_FLOAT1; break;
|
|
|
|
case 2: elements[idx].Type = D3DDECLTYPE_FLOAT2; break;
|
|
|
|
case 3: elements[idx].Type = D3DDECLTYPE_FLOAT3; break;
|
|
|
|
case 4: elements[idx].Type = D3DDECLTYPE_FLOAT4; break;
|
|
|
|
default:
|
|
|
|
ERR("Unexpected amount of blend values: %u\n", num_blends);
|
|
|
|
}
|
|
|
|
}
|
2006-07-04 08:53:13 +00:00
|
|
|
elements[idx].Usage = D3DDECLUSAGE_BLENDWEIGHT;
|
|
|
|
elements[idx].UsageIndex = 0;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
if (has_blend_idx) {
|
|
|
|
if (fvf & D3DFVF_LASTBETA_UBYTE4 ||
|
|
|
|
(((fvf & D3DFVF_XYZB5) == D3DFVF_XYZB2) && (fvf & D3DFVF_LASTBETA_D3DCOLOR)))
|
|
|
|
elements[idx].Type = D3DDECLTYPE_UBYTE4;
|
|
|
|
else if (fvf & D3DFVF_LASTBETA_D3DCOLOR)
|
|
|
|
elements[idx].Type = D3DDECLTYPE_D3DCOLOR;
|
|
|
|
else
|
|
|
|
elements[idx].Type = D3DDECLTYPE_FLOAT1;
|
|
|
|
elements[idx].Usage = D3DDECLUSAGE_BLENDINDICES;
|
|
|
|
elements[idx].UsageIndex = 0;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
if (has_normal) {
|
|
|
|
elements[idx].Type = D3DDECLTYPE_FLOAT3;
|
|
|
|
elements[idx].Usage = D3DDECLUSAGE_NORMAL;
|
|
|
|
elements[idx].UsageIndex = 0;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
if (has_psize) {
|
|
|
|
elements[idx].Type = D3DDECLTYPE_FLOAT1;
|
|
|
|
elements[idx].Usage = D3DDECLUSAGE_PSIZE;
|
|
|
|
elements[idx].UsageIndex = 0;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
if (has_diffuse) {
|
|
|
|
elements[idx].Type = D3DDECLTYPE_D3DCOLOR;
|
|
|
|
elements[idx].Usage = D3DDECLUSAGE_COLOR;
|
|
|
|
elements[idx].UsageIndex = 0;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
if (has_specular) {
|
|
|
|
elements[idx].Type = D3DDECLTYPE_D3DCOLOR;
|
|
|
|
elements[idx].Usage = D3DDECLUSAGE_COLOR;
|
|
|
|
elements[idx].UsageIndex = 1;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
for (idx2 = 0; idx2 < num_textures; idx2++) {
|
|
|
|
unsigned int numcoords = (texcoords >> (idx2*2)) & 0x03;
|
|
|
|
switch (numcoords) {
|
|
|
|
case D3DFVF_TEXTUREFORMAT1:
|
|
|
|
elements[idx].Type = D3DDECLTYPE_FLOAT1;
|
|
|
|
break;
|
|
|
|
case D3DFVF_TEXTUREFORMAT2:
|
|
|
|
elements[idx].Type = D3DDECLTYPE_FLOAT2;
|
|
|
|
break;
|
|
|
|
case D3DFVF_TEXTUREFORMAT3:
|
|
|
|
elements[idx].Type = D3DDECLTYPE_FLOAT3;
|
|
|
|
break;
|
|
|
|
case D3DFVF_TEXTUREFORMAT4:
|
|
|
|
elements[idx].Type = D3DDECLTYPE_FLOAT4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
elements[idx].Usage = D3DDECLUSAGE_TEXCOORD;
|
|
|
|
elements[idx].UsageIndex = idx2;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now compute offsets, and initialize the rest of the fields */
|
|
|
|
for (idx = 0, offset = 0; idx < size-1; idx++) {
|
|
|
|
elements[idx].Stream = 0;
|
|
|
|
elements[idx].Method = D3DDECLMETHOD_DEFAULT;
|
|
|
|
elements[idx].Offset = offset;
|
|
|
|
offset += D3D_DECL_SIZE(elements[idx].Type) * D3D_DECL_TYPESIZE(elements[idx].Type);
|
|
|
|
}
|
|
|
|
|
|
|
|
*ppVertexElements = elements;
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
2003-07-01 01:09:17 +00:00
|
|
|
/* IDirect3DVertexDeclaration9 IUnknown parts follow: */
|
2006-06-10 09:51:05 +00:00
|
|
|
static HRESULT WINAPI IDirect3DVertexDeclaration9Impl_QueryInterface(LPDIRECT3DVERTEXDECLARATION9 iface, REFIID riid, LPVOID* ppobj) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DVertexDeclaration9Impl *This = (IDirect3DVertexDeclaration9Impl *)iface;
|
2003-07-01 01:09:17 +00:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DVertexDeclaration9)) {
|
2008-11-02 22:49:40 +00:00
|
|
|
IDirect3DVertexDeclaration9_AddRef(iface);
|
2003-07-01 01:09:17 +00:00
|
|
|
*ppobj = This;
|
2006-06-07 13:13:29 +00:00
|
|
|
return S_OK;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 13:13:29 +00:00
|
|
|
*ppobj = NULL;
|
2003-07-01 01:09:17 +00:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 09:51:05 +00:00
|
|
|
static ULONG WINAPI IDirect3DVertexDeclaration9Impl_AddRef(LPDIRECT3DVERTEXDECLARATION9 iface) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DVertexDeclaration9Impl *This = (IDirect3DVertexDeclaration9Impl *)iface;
|
2005-01-24 11:31:45 +00:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2006-10-10 17:23:22 +00:00
|
|
|
TRACE("(%p) : AddRef from %d\n", This, ref - 1);
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2007-04-07 20:56:42 +00:00
|
|
|
if(ref == 1) {
|
2008-11-02 22:49:40 +00:00
|
|
|
IDirect3DDevice9Ex_AddRef(This->parentDevice);
|
2007-04-07 20:56:42 +00:00
|
|
|
}
|
|
|
|
|
2005-01-24 11:31:45 +00:00
|
|
|
return ref;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2007-04-17 18:04:26 +00:00
|
|
|
void IDirect3DVertexDeclaration9Impl_Destroy(LPDIRECT3DVERTEXDECLARATION9 iface) {
|
|
|
|
IDirect3DVertexDeclaration9Impl *This = (IDirect3DVertexDeclaration9Impl *)iface;
|
|
|
|
|
|
|
|
if(This->ref != 0) {
|
|
|
|
/* Should not happen unless wine has a bug or the application releases references it does not own */
|
|
|
|
ERR("Destroying vdecl with ref != 0\n");
|
|
|
|
}
|
2007-06-14 19:45:15 +00:00
|
|
|
EnterCriticalSection(&d3d9_cs);
|
2007-04-17 18:04:26 +00:00
|
|
|
IWineD3DVertexDeclaration_Release(This->wineD3DVertexDeclaration);
|
2007-06-14 19:45:15 +00:00
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
2007-04-17 18:04:26 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, This->elements);
|
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
|
2006-06-10 09:51:05 +00:00
|
|
|
static ULONG WINAPI IDirect3DVertexDeclaration9Impl_Release(LPDIRECT3DVERTEXDECLARATION9 iface) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DVertexDeclaration9Impl *This = (IDirect3DVertexDeclaration9Impl *)iface;
|
2005-01-24 11:31:45 +00:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
2006-10-10 17:23:22 +00:00
|
|
|
TRACE("(%p) : ReleaseRef to %d\n", This, ref);
|
2005-01-24 11:31:45 +00:00
|
|
|
|
2003-07-01 01:09:17 +00:00
|
|
|
if (ref == 0) {
|
2008-02-28 20:25:35 +00:00
|
|
|
IDirect3DDevice9Ex *parentDevice = This->parentDevice;
|
2007-04-07 22:11:09 +00:00
|
|
|
|
2007-04-17 18:04:26 +00:00
|
|
|
if(!This->convFVF) {
|
|
|
|
IDirect3DVertexDeclaration9Impl_Release(iface);
|
2007-04-07 22:11:09 +00:00
|
|
|
}
|
2008-11-02 22:49:40 +00:00
|
|
|
IDirect3DDevice9Ex_Release(parentDevice);
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DVertexDeclaration9 Interface follow: */
|
2006-06-10 09:51:05 +00:00
|
|
|
static HRESULT WINAPI IDirect3DVertexDeclaration9Impl_GetDevice(LPDIRECT3DVERTEXDECLARATION9 iface, IDirect3DDevice9** ppDevice) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DVertexDeclaration9Impl *This = (IDirect3DVertexDeclaration9Impl *)iface;
|
2005-01-28 14:03:32 +00:00
|
|
|
IWineD3DDevice *myDevice = NULL;
|
2005-07-07 20:45:39 +00:00
|
|
|
HRESULT hr = D3D_OK;
|
|
|
|
|
|
|
|
TRACE("(%p) : Relay\n", iface);
|
|
|
|
|
2007-06-14 19:45:15 +00:00
|
|
|
EnterCriticalSection(&d3d9_cs);
|
2005-07-07 20:45:39 +00:00
|
|
|
hr = IWineD3DVertexDeclaration_GetDevice(This->wineD3DVertexDeclaration, &myDevice);
|
|
|
|
if (hr == D3D_OK && myDevice != NULL) {
|
|
|
|
hr = IWineD3DDevice_GetParent(myDevice, (IUnknown **)ppDevice);
|
|
|
|
IWineD3DDevice_Release(myDevice);
|
|
|
|
}
|
2007-06-14 19:45:15 +00:00
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
2005-07-07 20:45:39 +00:00
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2006-06-10 09:51:05 +00:00
|
|
|
static HRESULT WINAPI IDirect3DVertexDeclaration9Impl_GetDeclaration(LPDIRECT3DVERTEXDECLARATION9 iface, D3DVERTEXELEMENT9* pDecl, UINT* pNumElements) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DVertexDeclaration9Impl *This = (IDirect3DVertexDeclaration9Impl *)iface;
|
2003-07-01 01:09:17 +00:00
|
|
|
|
2007-02-13 22:12:36 +00:00
|
|
|
TRACE("(%p) : pDecl %p, pNumElements %p)\n", This, pDecl, pNumElements);
|
|
|
|
|
|
|
|
*pNumElements = This->element_count;
|
|
|
|
|
|
|
|
/* Passing a NULL pDecl is used to just retrieve the number of elements */
|
|
|
|
if (!pDecl) {
|
|
|
|
TRACE("NULL pDecl passed. Returning D3D_OK.\n");
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Copying %p to %p\n", This->elements, pDecl);
|
|
|
|
CopyMemory(pDecl, This->elements, This->element_count * sizeof(D3DVERTEXELEMENT9));
|
|
|
|
|
|
|
|
return D3D_OK;
|
2005-07-07 20:45:39 +00:00
|
|
|
}
|
2003-07-01 01:09:17 +00:00
|
|
|
|
2006-06-10 09:51:05 +00:00
|
|
|
static const IDirect3DVertexDeclaration9Vtbl Direct3DVertexDeclaration9_Vtbl =
|
2003-07-01 01:09:17 +00:00
|
|
|
{
|
2005-07-07 20:45:39 +00:00
|
|
|
/* IUnknown */
|
2003-07-01 01:09:17 +00:00
|
|
|
IDirect3DVertexDeclaration9Impl_QueryInterface,
|
|
|
|
IDirect3DVertexDeclaration9Impl_AddRef,
|
|
|
|
IDirect3DVertexDeclaration9Impl_Release,
|
2005-07-07 20:45:39 +00:00
|
|
|
/* IDirect3DVertexDeclaration9 */
|
2003-07-01 01:09:17 +00:00
|
|
|
IDirect3DVertexDeclaration9Impl_GetDevice,
|
|
|
|
IDirect3DVertexDeclaration9Impl_GetDeclaration
|
|
|
|
};
|
|
|
|
|
2009-03-27 09:25:56 +00:00
|
|
|
static HRESULT convert_to_wined3d_declaration(const D3DVERTEXELEMENT9* d3d9_elements,
|
|
|
|
WINED3DVERTEXELEMENT **wined3d_elements, UINT *element_count)
|
|
|
|
{
|
2007-02-13 22:12:36 +00:00
|
|
|
const D3DVERTEXELEMENT9* element;
|
2009-03-27 09:25:56 +00:00
|
|
|
UINT count = 1;
|
2008-01-07 16:17:04 +00:00
|
|
|
UINT i;
|
2007-02-13 22:12:36 +00:00
|
|
|
|
|
|
|
TRACE("d3d9_elements %p, wined3d_elements %p\n", d3d9_elements, wined3d_elements);
|
|
|
|
|
|
|
|
element = d3d9_elements;
|
2009-03-27 09:25:56 +00:00
|
|
|
while (element++->Stream != 0xff && count++ < 128);
|
2007-02-13 22:12:36 +00:00
|
|
|
|
2009-03-27 09:25:56 +00:00
|
|
|
if (count == 128) return E_FAIL;
|
2007-02-13 22:12:36 +00:00
|
|
|
|
2009-03-27 09:25:56 +00:00
|
|
|
/* Skip the END element */
|
2009-03-27 09:25:56 +00:00
|
|
|
--count;
|
2009-03-27 09:25:56 +00:00
|
|
|
|
2009-03-27 09:25:56 +00:00
|
|
|
*wined3d_elements = HeapAlloc(GetProcessHeap(), 0, count * sizeof(WINED3DVERTEXELEMENT));
|
2007-02-13 22:12:36 +00:00
|
|
|
if (!*wined3d_elements) {
|
|
|
|
FIXME("Memory allocation failed\n");
|
2009-03-27 09:25:56 +00:00
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
2007-02-13 22:12:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-27 09:25:56 +00:00
|
|
|
for (i = 0; i < count; ++i)
|
|
|
|
{
|
|
|
|
if (d3d9_elements[i].Type >= (sizeof(d3d_dtype_lookup) / sizeof(*d3d_dtype_lookup)))
|
|
|
|
{
|
|
|
|
WARN("Invalid element type %#x.\n", d3d9_elements[i].Type);
|
|
|
|
HeapFree(GetProcessHeap(), 0, *wined3d_elements);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
(*wined3d_elements)[i].format = d3d_dtype_lookup[d3d9_elements[i].Type].format;
|
|
|
|
(*wined3d_elements)[i].input_slot = d3d9_elements[i].Stream;
|
|
|
|
(*wined3d_elements)[i].offset = d3d9_elements[i].Offset;
|
|
|
|
(*wined3d_elements)[i].output_slot = ~0U;
|
|
|
|
(*wined3d_elements)[i].method = d3d9_elements[i].Method;
|
|
|
|
(*wined3d_elements)[i].usage = d3d9_elements[i].Usage;
|
|
|
|
(*wined3d_elements)[i].usage_idx = d3d9_elements[i].UsageIndex;
|
2007-02-13 22:12:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-27 09:25:56 +00:00
|
|
|
*element_count = count;
|
|
|
|
|
|
|
|
return D3D_OK;
|
2007-02-13 22:12:36 +00:00
|
|
|
}
|
2003-07-01 01:09:17 +00:00
|
|
|
|
|
|
|
/* IDirect3DDevice9 IDirect3DVertexDeclaration9 Methods follow: */
|
2008-02-28 20:25:35 +00:00
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_CreateVertexDeclaration(LPDIRECT3DDEVICE9EX iface, CONST D3DVERTEXELEMENT9* pVertexElements, IDirect3DVertexDeclaration9** ppDecl) {
|
2005-03-02 12:16:10 +00:00
|
|
|
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2005-01-28 14:03:32 +00:00
|
|
|
IDirect3DVertexDeclaration9Impl *object = NULL;
|
2007-02-13 22:12:36 +00:00
|
|
|
WINED3DVERTEXELEMENT* wined3d_elements;
|
2009-03-27 09:25:56 +00:00
|
|
|
UINT wined3d_element_count;
|
2008-01-07 16:17:04 +00:00
|
|
|
UINT element_count;
|
2009-03-27 09:25:56 +00:00
|
|
|
HRESULT hr;
|
2005-07-07 20:45:39 +00:00
|
|
|
|
|
|
|
TRACE("(%p) : Relay\n", iface);
|
2005-01-28 14:03:32 +00:00
|
|
|
if (NULL == ppDecl) {
|
2006-10-05 09:11:03 +00:00
|
|
|
WARN("(%p) : Caller passed NULL As ppDecl, returning D3DERR_INVALIDCALL\n",This);
|
2005-11-14 11:21:46 +00:00
|
|
|
return D3DERR_INVALIDCALL;
|
2005-01-28 14:03:32 +00:00
|
|
|
}
|
2007-02-13 22:12:36 +00:00
|
|
|
|
2009-03-27 09:25:56 +00:00
|
|
|
hr = convert_to_wined3d_declaration(pVertexElements, &wined3d_elements, &wined3d_element_count);
|
|
|
|
if (FAILED(hr))
|
2009-03-27 09:25:56 +00:00
|
|
|
{
|
2009-03-27 09:25:56 +00:00
|
|
|
WARN("(%p) : Error parsing vertex declaration\n", This);
|
|
|
|
return hr;
|
2007-02-13 22:12:36 +00:00
|
|
|
}
|
|
|
|
|
2005-01-28 14:03:32 +00:00
|
|
|
/* Allocate the storage for the device */
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DVertexDeclaration9Impl));
|
|
|
|
if (NULL == object) {
|
2007-02-13 22:12:36 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, wined3d_elements);
|
2005-11-14 11:21:46 +00:00
|
|
|
FIXME("Allocation of memory failed, returning D3DERR_OUTOFVIDEOMEMORY\n");
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
2005-01-28 14:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
object->lpVtbl = &Direct3DVertexDeclaration9_Vtbl;
|
2007-04-07 20:56:42 +00:00
|
|
|
object->ref = 0;
|
2007-02-13 22:12:36 +00:00
|
|
|
|
2009-03-27 09:25:56 +00:00
|
|
|
element_count = wined3d_element_count + 1;
|
2007-02-13 22:12:36 +00:00
|
|
|
object->elements = HeapAlloc(GetProcessHeap(), 0, element_count * sizeof(D3DVERTEXELEMENT9));
|
|
|
|
if (!object->elements) {
|
|
|
|
HeapFree(GetProcessHeap(), 0, wined3d_elements);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
ERR("Memory allocation failed\n");
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
CopyMemory(object->elements, pVertexElements, element_count * sizeof(D3DVERTEXELEMENT9));
|
|
|
|
object->element_count = element_count;
|
|
|
|
|
2007-06-14 19:45:15 +00:00
|
|
|
EnterCriticalSection(&d3d9_cs);
|
2009-03-27 09:25:56 +00:00
|
|
|
hr = IWineD3DDevice_CreateVertexDeclaration(This->WineD3DDevice, &object->wineD3DVertexDeclaration,
|
|
|
|
(IUnknown *)object, wined3d_elements, wined3d_element_count);
|
2007-06-14 19:45:15 +00:00
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
2007-02-13 22:12:36 +00:00
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, wined3d_elements);
|
2005-01-28 14:03:32 +00:00
|
|
|
|
|
|
|
if (FAILED(hr)) {
|
2005-11-14 11:21:46 +00:00
|
|
|
|
|
|
|
/* free up object */
|
2007-12-20 19:48:03 +00:00
|
|
|
WARN("(%p) call to IWineD3DDevice_CreateVertexDeclaration failed\n", This);
|
2007-02-25 19:06:01 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, object->elements);
|
2005-11-14 11:21:46 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
2005-01-28 14:03:32 +00:00
|
|
|
} else {
|
2006-04-12 04:09:27 +00:00
|
|
|
object->parentDevice = iface;
|
2005-11-14 11:21:46 +00:00
|
|
|
*ppDecl = (LPDIRECT3DVERTEXDECLARATION9) object;
|
2008-11-02 22:49:40 +00:00
|
|
|
IDirect3DVertexDeclaration9_AddRef(*ppDecl);
|
2006-10-04 16:10:56 +00:00
|
|
|
TRACE("(%p) : Created vertex declaration %p\n", This, object);
|
2005-01-28 14:03:32 +00:00
|
|
|
}
|
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2008-02-28 20:25:35 +00:00
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_SetVertexDeclaration(LPDIRECT3DDEVICE9EX iface, IDirect3DVertexDeclaration9* pDecl) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2005-01-28 14:03:32 +00:00
|
|
|
IDirect3DVertexDeclaration9Impl *pDeclImpl = (IDirect3DVertexDeclaration9Impl *)pDecl;
|
2005-07-07 20:45:39 +00:00
|
|
|
HRESULT hr = D3D_OK;
|
|
|
|
|
|
|
|
TRACE("(%p) : Relay\n", iface);
|
|
|
|
|
2007-06-14 19:45:15 +00:00
|
|
|
EnterCriticalSection(&d3d9_cs);
|
2005-07-07 20:45:39 +00:00
|
|
|
hr = IWineD3DDevice_SetVertexDeclaration(This->WineD3DDevice, pDeclImpl == NULL ? NULL : pDeclImpl->wineD3DVertexDeclaration);
|
2007-06-14 19:45:15 +00:00
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
2005-01-28 14:03:32 +00:00
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|
|
|
|
|
2008-02-28 20:25:35 +00:00
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_GetVertexDeclaration(LPDIRECT3DDEVICE9EX iface, IDirect3DVertexDeclaration9** ppDecl) {
|
2005-01-28 14:03:32 +00:00
|
|
|
IDirect3DDevice9Impl* This = (IDirect3DDevice9Impl*) iface;
|
|
|
|
IWineD3DVertexDeclaration* pTest = NULL;
|
2005-07-07 20:45:39 +00:00
|
|
|
HRESULT hr = D3D_OK;
|
|
|
|
|
|
|
|
TRACE("(%p) : Relay+\n", iface);
|
2005-01-28 14:03:32 +00:00
|
|
|
|
|
|
|
if (NULL == ppDecl) {
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2005-07-07 20:45:39 +00:00
|
|
|
|
2005-01-28 14:03:32 +00:00
|
|
|
*ppDecl = NULL;
|
2007-06-14 19:45:15 +00:00
|
|
|
EnterCriticalSection(&d3d9_cs);
|
2005-01-28 14:03:32 +00:00
|
|
|
hr = IWineD3DDevice_GetVertexDeclaration(This->WineD3DDevice, &pTest);
|
2005-07-07 20:45:39 +00:00
|
|
|
if (hr == D3D_OK && NULL != pTest) {
|
2006-11-30 23:16:10 +00:00
|
|
|
IWineD3DVertexDeclaration_GetParent(pTest, (IUnknown **)ppDecl);
|
|
|
|
IWineD3DVertexDeclaration_Release(pTest);
|
2005-07-07 20:45:39 +00:00
|
|
|
} else {
|
|
|
|
*ppDecl = NULL;
|
2005-01-28 14:03:32 +00:00
|
|
|
}
|
2007-06-14 19:45:15 +00:00
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
2005-07-07 20:45:39 +00:00
|
|
|
TRACE("(%p) : returning %p\n", This, *ppDecl);
|
2005-01-28 14:03:32 +00:00
|
|
|
return hr;
|
2003-07-01 01:09:17 +00:00
|
|
|
}
|