2003-07-01 03:09:17 +02: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 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-07-01 03:09:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "d3d9_private.h"
|
|
|
|
|
2005-07-07 22:45:39 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-05-24 18:27:44 +02:00
|
|
|
static const struct
|
|
|
|
{
|
2010-08-23 18:28:10 +02:00
|
|
|
enum wined3d_format_id format;
|
2012-05-25 16:10:28 +02:00
|
|
|
unsigned int component_count;
|
|
|
|
unsigned int component_size;
|
2012-05-24 18:27:44 +02:00
|
|
|
}
|
|
|
|
d3d_dtype_lookup[] =
|
|
|
|
{
|
2012-05-25 16:10:27 +02: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_B8G8R8A8_UNORM, 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 10:53:13 +02:00
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
static inline struct d3d9_vertex_declaration *impl_from_IDirect3DVertexDeclaration9(IDirect3DVertexDeclaration9 *iface)
|
2012-04-12 22:49:03 +02:00
|
|
|
{
|
2012-06-01 17:22:52 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d9_vertex_declaration, IDirect3DVertexDeclaration9_iface);
|
2012-04-12 22:49:03 +02:00
|
|
|
}
|
|
|
|
|
2006-07-04 10:53:13 +02:00
|
|
|
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 21:45:15 +02:00
|
|
|
|
2006-07-04 10:53:13 +02: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 17:51:45 +02:00
|
|
|
DWORD texcoords = (fvf & 0xFFFF0000) >> 16;
|
2006-07-04 10:53:13 +02: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));
|
2009-08-28 10:23:11 +02:00
|
|
|
if (!elements) return D3DERR_OUTOFVIDEOMEMORY;
|
2006-07-04 10:53:13 +02:00
|
|
|
|
2008-02-14 23:02:31 +01:00
|
|
|
elements[size-1] = end_element;
|
2006-07-04 10:53:13 +02: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 18:57:13 +01:00
|
|
|
else if (!has_blend && (fvf & D3DFVF_XYZW) == D3DFVF_XYZW) {
|
|
|
|
elements[idx].Type = D3DDECLTYPE_FLOAT4;
|
|
|
|
elements[idx].Usage = D3DDECLUSAGE_POSITION;
|
|
|
|
}
|
2006-07-04 10:53:13 +02: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-03 00:38:14 +01: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 10:53:13 +02: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;
|
2012-05-25 16:10:28 +02:00
|
|
|
offset += d3d_dtype_lookup[elements[idx].Type].component_count
|
|
|
|
* d3d_dtype_lookup[elements[idx].Type].component_size;
|
2006-07-04 10:53:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
*ppVertexElements = elements;
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
static HRESULT WINAPI d3d9_vertex_declaration_QueryInterface(IDirect3DVertexDeclaration9 *iface,
|
2012-03-28 20:22:39 +02:00
|
|
|
REFIID riid, void **out)
|
|
|
|
{
|
|
|
|
TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out);
|
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IDirect3DVertexDeclaration9)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2008-11-02 23:49:40 +01:00
|
|
|
IDirect3DVertexDeclaration9_AddRef(iface);
|
2012-03-28 20:22:39 +02:00
|
|
|
*out = iface;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-03-28 20:22:39 +02:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*out = NULL;
|
2003-07-01 03:09:17 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
static ULONG WINAPI d3d9_vertex_declaration_AddRef(IDirect3DVertexDeclaration9 *iface)
|
2012-04-12 22:49:03 +02:00
|
|
|
{
|
2012-06-01 17:22:52 +02:00
|
|
|
struct d3d9_vertex_declaration *declaration = impl_from_IDirect3DVertexDeclaration9(iface);
|
|
|
|
ULONG refcount = InterlockedIncrement(&declaration->refcount);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", iface, refcount);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
if (refcount == 1)
|
2012-04-11 22:52:03 +02:00
|
|
|
{
|
2012-06-01 17:22:52 +02:00
|
|
|
IDirect3DDevice9Ex_AddRef(declaration->parent_device);
|
2012-04-11 22:52:03 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-06-01 17:22:52 +02:00
|
|
|
wined3d_vertex_declaration_incref(declaration->wined3d_declaration);
|
2012-04-11 22:52:03 +02:00
|
|
|
wined3d_mutex_unlock();
|
2007-04-07 22:56:42 +02:00
|
|
|
}
|
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
return refcount;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
static ULONG WINAPI d3d9_vertex_declaration_Release(IDirect3DVertexDeclaration9 *iface)
|
2012-04-12 22:49:03 +02:00
|
|
|
{
|
2012-06-01 17:22:52 +02:00
|
|
|
struct d3d9_vertex_declaration *declaration = impl_from_IDirect3DVertexDeclaration9(iface);
|
|
|
|
ULONG refcount = InterlockedDecrement(&declaration->refcount);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", iface, refcount);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
if (!refcount)
|
2012-04-11 22:52:03 +02:00
|
|
|
{
|
2012-06-01 17:22:52 +02:00
|
|
|
IDirect3DDevice9Ex *parent_device = declaration->parent_device;
|
2012-04-11 22:52:03 +02:00
|
|
|
wined3d_mutex_lock();
|
2012-06-01 17:22:52 +02:00
|
|
|
wined3d_vertex_declaration_decref(declaration->wined3d_declaration);
|
2012-04-11 22:52:03 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-09-26 15:56:16 +02:00
|
|
|
|
|
|
|
/* Release the device last, as it may cause the device to be destroyed. */
|
2012-06-01 17:22:52 +02:00
|
|
|
IDirect3DDevice9Ex_Release(parent_device);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
2012-06-01 17:22:52 +02:00
|
|
|
|
|
|
|
return refcount;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
static HRESULT WINAPI d3d9_vertex_declaration_GetDevice(IDirect3DVertexDeclaration9 *iface, IDirect3DDevice9 **device)
|
2009-12-04 11:50:47 +01:00
|
|
|
{
|
2012-06-01 17:22:52 +02:00
|
|
|
struct d3d9_vertex_declaration *declaration = impl_from_IDirect3DVertexDeclaration9(iface);
|
2005-07-07 22:45:39 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
2005-07-07 22:45:39 +02:00
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
*device = (IDirect3DDevice9 *)declaration->parent_device;
|
2009-12-04 11:50:47 +01:00
|
|
|
IDirect3DDevice9_AddRef(*device);
|
2009-08-26 10:18:09 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
TRACE("Returning device %p.\n", *device);
|
|
|
|
|
|
|
|
return D3D_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
static HRESULT WINAPI d3d9_vertex_declaration_GetDeclaration(IDirect3DVertexDeclaration9 *iface,
|
2012-04-12 22:49:03 +02:00
|
|
|
D3DVERTEXELEMENT9 *elements, UINT *element_count)
|
|
|
|
{
|
2012-06-01 17:22:52 +02:00
|
|
|
struct d3d9_vertex_declaration *declaration = impl_from_IDirect3DVertexDeclaration9(iface);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-04-12 22:49:03 +02:00
|
|
|
TRACE("iface %p, elements %p, element_count %p.\n", iface, elements, element_count);
|
2007-02-13 23:12:36 +01:00
|
|
|
|
2012-04-12 22:49:03 +02:00
|
|
|
*element_count = declaration->element_count;
|
2007-02-13 23:12:36 +01:00
|
|
|
|
2012-04-12 22:49:03 +02:00
|
|
|
/* Passing a NULL elements is used to just retrieve the number of elements */
|
|
|
|
if (!elements)
|
2007-02-13 23:12:36 +01:00
|
|
|
return D3D_OK;
|
|
|
|
|
2012-04-12 22:49:03 +02:00
|
|
|
TRACE("Copying %p to %p.\n", declaration->elements, elements);
|
|
|
|
memcpy(elements, declaration->elements, sizeof(*declaration->elements) * declaration->element_count);
|
2007-02-13 23:12:36 +01:00
|
|
|
|
|
|
|
return D3D_OK;
|
2005-07-07 22:45:39 +02:00
|
|
|
}
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
static const struct IDirect3DVertexDeclaration9Vtbl d3d9_vertex_declaration_vtbl =
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2005-07-07 22:45:39 +02:00
|
|
|
/* IUnknown */
|
2012-06-01 17:22:52 +02:00
|
|
|
d3d9_vertex_declaration_QueryInterface,
|
|
|
|
d3d9_vertex_declaration_AddRef,
|
|
|
|
d3d9_vertex_declaration_Release,
|
2005-07-07 22:45:39 +02:00
|
|
|
/* IDirect3DVertexDeclaration9 */
|
2012-06-01 17:22:52 +02:00
|
|
|
d3d9_vertex_declaration_GetDevice,
|
|
|
|
d3d9_vertex_declaration_GetDeclaration,
|
2003-07-01 03:09:17 +02:00
|
|
|
};
|
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
struct d3d9_vertex_declaration *unsafe_impl_from_IDirect3DVertexDeclaration9(IDirect3DVertexDeclaration9 *iface)
|
2012-04-12 22:49:03 +02:00
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
2012-06-01 17:22:52 +02:00
|
|
|
assert(iface->lpVtbl == &d3d9_vertex_declaration_vtbl);
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d9_vertex_declaration, IDirect3DVertexDeclaration9_iface);
|
2012-04-12 22:49:03 +02:00
|
|
|
}
|
|
|
|
|
2009-09-23 10:05:52 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d9_vertexdeclaration_wined3d_object_destroyed(void *parent)
|
|
|
|
{
|
2012-06-01 17:22:52 +02:00
|
|
|
struct d3d9_vertex_declaration *declaration = parent;
|
2009-09-23 10:05:52 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, declaration->elements);
|
|
|
|
HeapFree(GetProcessHeap(), 0, declaration);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wined3d_parent_ops d3d9_vertexdeclaration_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
d3d9_vertexdeclaration_wined3d_object_destroyed,
|
|
|
|
};
|
|
|
|
|
2011-11-24 22:52:36 +01:00
|
|
|
static HRESULT convert_to_wined3d_declaration(const D3DVERTEXELEMENT9 *d3d9_elements,
|
|
|
|
struct wined3d_vertex_element **wined3d_elements, UINT *element_count)
|
2009-03-27 10:25:56 +01:00
|
|
|
{
|
2007-02-13 23:12:36 +01:00
|
|
|
const D3DVERTEXELEMENT9* element;
|
2009-03-27 10:25:56 +01:00
|
|
|
UINT count = 1;
|
2008-01-07 17:17:04 +01:00
|
|
|
UINT i;
|
2007-02-13 23:12:36 +01:00
|
|
|
|
|
|
|
TRACE("d3d9_elements %p, wined3d_elements %p\n", d3d9_elements, wined3d_elements);
|
|
|
|
|
|
|
|
element = d3d9_elements;
|
2009-03-27 10:25:56 +01:00
|
|
|
while (element++->Stream != 0xff && count++ < 128);
|
2007-02-13 23:12:36 +01:00
|
|
|
|
2009-03-27 10:25:56 +01:00
|
|
|
if (count == 128) return E_FAIL;
|
2007-02-13 23:12:36 +01:00
|
|
|
|
2009-03-27 10:25:56 +01:00
|
|
|
/* Skip the END element */
|
2009-03-27 10:25:56 +01:00
|
|
|
--count;
|
2009-03-27 10:25:56 +01:00
|
|
|
|
2011-11-24 22:52:36 +01:00
|
|
|
*wined3d_elements = HeapAlloc(GetProcessHeap(), 0, count * sizeof(**wined3d_elements));
|
2007-02-13 23:12:36 +01:00
|
|
|
if (!*wined3d_elements) {
|
|
|
|
FIXME("Memory allocation failed\n");
|
2009-03-27 10:25:56 +01:00
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
2007-02-13 23:12:36 +01:00
|
|
|
}
|
|
|
|
|
2009-03-27 10:25:56 +01: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 23:12:36 +01:00
|
|
|
}
|
|
|
|
|
2009-03-27 10:25:56 +01:00
|
|
|
*element_count = count;
|
|
|
|
|
|
|
|
return D3D_OK;
|
2007-02-13 23:12:36 +01:00
|
|
|
}
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
static HRESULT vertexdeclaration_init(struct d3d9_vertex_declaration *declaration,
|
2012-05-28 18:17:28 +02:00
|
|
|
struct d3d9_device *device, const D3DVERTEXELEMENT9 *elements)
|
2009-08-28 10:23:11 +02:00
|
|
|
{
|
2011-11-24 22:52:36 +01:00
|
|
|
struct wined3d_vertex_element *wined3d_elements;
|
2009-03-27 10:25:56 +01:00
|
|
|
UINT wined3d_element_count;
|
2008-01-07 17:17:04 +01:00
|
|
|
UINT element_count;
|
2009-03-27 10:25:56 +01:00
|
|
|
HRESULT hr;
|
2005-07-07 22:45:39 +02:00
|
|
|
|
2009-09-23 10:05:49 +02:00
|
|
|
hr = convert_to_wined3d_declaration(elements, &wined3d_elements, &wined3d_element_count);
|
2009-03-27 10:25:56 +01:00
|
|
|
if (FAILED(hr))
|
2009-03-27 10:25:56 +01:00
|
|
|
{
|
2009-09-23 10:05:49 +02:00
|
|
|
WARN("Failed to create wined3d vertex declaration elements, hr %#x.\n", hr);
|
2009-03-27 10:25:56 +01:00
|
|
|
return hr;
|
2007-02-13 23:12:36 +01:00
|
|
|
}
|
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
declaration->IDirect3DVertexDeclaration9_iface.lpVtbl = &d3d9_vertex_declaration_vtbl;
|
|
|
|
declaration->refcount = 1;
|
2007-02-13 23:12:36 +01:00
|
|
|
|
2009-03-27 10:25:56 +01:00
|
|
|
element_count = wined3d_element_count + 1;
|
2009-09-23 10:05:49 +02:00
|
|
|
declaration->elements = HeapAlloc(GetProcessHeap(), 0, element_count * sizeof(*declaration->elements));
|
|
|
|
if (!declaration->elements)
|
|
|
|
{
|
2007-02-13 23:12:36 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, wined3d_elements);
|
2009-09-23 10:05:49 +02:00
|
|
|
ERR("Failed to allocate vertex declaration elements memory.\n");
|
2007-02-13 23:12:36 +01:00
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
2009-09-23 10:05:49 +02:00
|
|
|
memcpy(declaration->elements, elements, element_count * sizeof(*elements));
|
|
|
|
declaration->element_count = element_count;
|
2007-02-13 23:12:36 +01:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-05-16 23:01:22 +02:00
|
|
|
hr = wined3d_vertex_declaration_create(device->wined3d_device, wined3d_elements, wined3d_element_count,
|
2012-06-01 17:22:52 +02:00
|
|
|
declaration, &d3d9_vertexdeclaration_wined3d_parent_ops, &declaration->wined3d_declaration);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2007-02-13 23:12:36 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, wined3d_elements);
|
2009-09-23 10:05:49 +02:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
2009-10-22 10:09:57 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, declaration->elements);
|
2009-09-23 10:05:49 +02:00
|
|
|
WARN("Failed to create wined3d vertex declaration, hr %#x.\n", hr);
|
|
|
|
return hr;
|
2005-01-28 15:03:32 +01:00
|
|
|
}
|
2009-09-23 10:05:49 +02:00
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
declaration->parent_device = &device->IDirect3DDevice9Ex_iface;
|
|
|
|
IDirect3DDevice9Ex_AddRef(declaration->parent_device);
|
2009-09-23 10:05:49 +02:00
|
|
|
|
|
|
|
return D3D_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
2012-04-11 22:52:02 +02:00
|
|
|
|
2012-05-28 18:17:28 +02:00
|
|
|
HRESULT d3d9_vertex_declaration_create(struct d3d9_device *device,
|
2012-06-01 17:22:52 +02:00
|
|
|
const D3DVERTEXELEMENT9 *elements, struct d3d9_vertex_declaration **declaration)
|
2012-04-11 22:52:02 +02:00
|
|
|
{
|
2012-06-01 17:22:52 +02:00
|
|
|
struct d3d9_vertex_declaration *object;
|
2012-04-11 22:52:02 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
if (!object)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
hr = vertexdeclaration_init(object, device, elements);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize vertex declaration, hr %#x.\n", hr);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Created vertex declaration %p.\n", object);
|
|
|
|
*declaration = object;
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|