2002-09-28 00:46:16 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DDevice8 implementation
|
|
|
|
*
|
2004-05-02 06:22:31 +02:00
|
|
|
* Copyright 2002-2004 Jason Edmeades
|
|
|
|
* Copyright 2004 Christian Costa
|
2002-09-28 00:46:16 +02: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
|
2002-09-28 00:46:16 +02:00
|
|
|
*/
|
|
|
|
|
2003-01-15 00:05:39 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2002-10-13 19:53:15 +02:00
|
|
|
#include <math.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2003-01-07 21:36:20 +01:00
|
|
|
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2002-09-28 00:46:16 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
#include "d3d8_private.h"
|
|
|
|
|
2006-03-19 23:26:00 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
|
2003-07-19 05:02:42 +02:00
|
|
|
|
2010-08-23 18:28:10 +02:00
|
|
|
D3DFORMAT d3dformat_from_wined3dformat(enum wined3d_format_id format)
|
2009-02-19 16:59:41 +01:00
|
|
|
{
|
|
|
|
BYTE *c = (BYTE *)&format;
|
|
|
|
|
|
|
|
/* Don't translate FOURCC formats */
|
|
|
|
if (isprint(c[0]) && isprint(c[1]) && isprint(c[2]) && isprint(c[3])) return format;
|
|
|
|
|
|
|
|
switch(format)
|
|
|
|
{
|
|
|
|
case WINED3DFMT_UNKNOWN: return D3DFMT_UNKNOWN;
|
2009-09-25 13:31:49 +02:00
|
|
|
case WINED3DFMT_B8G8R8_UNORM: return D3DFMT_R8G8B8;
|
|
|
|
case WINED3DFMT_B8G8R8A8_UNORM: return D3DFMT_A8R8G8B8;
|
|
|
|
case WINED3DFMT_B8G8R8X8_UNORM: return D3DFMT_X8R8G8B8;
|
|
|
|
case WINED3DFMT_B5G6R5_UNORM: return D3DFMT_R5G6B5;
|
|
|
|
case WINED3DFMT_B5G5R5X1_UNORM: return D3DFMT_X1R5G5B5;
|
|
|
|
case WINED3DFMT_B5G5R5A1_UNORM: return D3DFMT_A1R5G5B5;
|
|
|
|
case WINED3DFMT_B4G4R4A4_UNORM: return D3DFMT_A4R4G4B4;
|
|
|
|
case WINED3DFMT_B2G3R3_UNORM: return D3DFMT_R3G3B2;
|
2009-02-19 16:59:42 +01:00
|
|
|
case WINED3DFMT_A8_UNORM: return D3DFMT_A8;
|
2009-09-25 13:31:49 +02:00
|
|
|
case WINED3DFMT_B2G3R3A8_UNORM: return D3DFMT_A8R3G3B2;
|
|
|
|
case WINED3DFMT_B4G4R4X4_UNORM: return D3DFMT_X4R4G4B4;
|
2009-02-19 16:59:42 +01:00
|
|
|
case WINED3DFMT_R10G10B10A2_UNORM: return D3DFMT_A2B10G10R10;
|
|
|
|
case WINED3DFMT_R16G16_UNORM: return D3DFMT_G16R16;
|
2009-09-25 13:31:49 +02:00
|
|
|
case WINED3DFMT_P8_UINT_A8_UNORM: return D3DFMT_A8P8;
|
|
|
|
case WINED3DFMT_P8_UINT: return D3DFMT_P8;
|
|
|
|
case WINED3DFMT_L8_UNORM: return D3DFMT_L8;
|
|
|
|
case WINED3DFMT_L8A8_UNORM: return D3DFMT_A8L8;
|
|
|
|
case WINED3DFMT_L4A4_UNORM: return D3DFMT_A4L4;
|
2009-02-19 16:59:42 +01:00
|
|
|
case WINED3DFMT_R8G8_SNORM: return D3DFMT_V8U8;
|
2009-09-25 13:31:49 +02:00
|
|
|
case WINED3DFMT_R5G5_SNORM_L6_UNORM: return D3DFMT_L6V5U5;
|
|
|
|
case WINED3DFMT_R8G8_SNORM_L8X8_UNORM: return D3DFMT_X8L8V8U8;
|
2009-02-19 16:59:42 +01:00
|
|
|
case WINED3DFMT_R8G8B8A8_SNORM: return D3DFMT_Q8W8V8U8;
|
|
|
|
case WINED3DFMT_R16G16_SNORM: return D3DFMT_V16U16;
|
2009-09-25 13:31:49 +02:00
|
|
|
case WINED3DFMT_R10G11B11_SNORM: return D3DFMT_W11V11U10;
|
|
|
|
case WINED3DFMT_R10G10B10_SNORM_A2_UNORM: return D3DFMT_A2W10V10U10;
|
2009-02-19 16:59:41 +01:00
|
|
|
case WINED3DFMT_D16_LOCKABLE: return D3DFMT_D16_LOCKABLE;
|
2009-09-25 13:31:49 +02:00
|
|
|
case WINED3DFMT_D32_UNORM: return D3DFMT_D32;
|
|
|
|
case WINED3DFMT_S1_UINT_D15_UNORM: return D3DFMT_D15S1;
|
2009-10-29 18:56:21 +01:00
|
|
|
case WINED3DFMT_D24_UNORM_S8_UINT: return D3DFMT_D24S8;
|
2009-09-25 13:31:49 +02:00
|
|
|
case WINED3DFMT_X8D24_UNORM: return D3DFMT_D24X8;
|
|
|
|
case WINED3DFMT_S4X4_UINT_D24_UNORM: return D3DFMT_D24X4S4;
|
2009-02-19 16:59:42 +01:00
|
|
|
case WINED3DFMT_D16_UNORM: return D3DFMT_D16;
|
2009-02-19 16:59:41 +01:00
|
|
|
case WINED3DFMT_VERTEXDATA: return D3DFMT_VERTEXDATA;
|
2009-02-19 16:59:42 +01:00
|
|
|
case WINED3DFMT_R16_UINT: return D3DFMT_INDEX16;
|
|
|
|
case WINED3DFMT_R32_UINT: return D3DFMT_INDEX32;
|
2009-02-19 16:59:41 +01:00
|
|
|
default:
|
2010-08-23 18:28:10 +02:00
|
|
|
FIXME("Unhandled wined3d format %#x.\n", format);
|
2009-02-19 16:59:41 +01:00
|
|
|
return D3DFMT_UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-23 18:28:10 +02:00
|
|
|
enum wined3d_format_id wined3dformat_from_d3dformat(D3DFORMAT format)
|
2009-02-19 16:59:41 +01:00
|
|
|
{
|
|
|
|
BYTE *c = (BYTE *)&format;
|
|
|
|
|
|
|
|
/* Don't translate FOURCC formats */
|
|
|
|
if (isprint(c[0]) && isprint(c[1]) && isprint(c[2]) && isprint(c[3])) return format;
|
|
|
|
|
|
|
|
switch(format)
|
|
|
|
{
|
|
|
|
case D3DFMT_UNKNOWN: return WINED3DFMT_UNKNOWN;
|
2009-09-25 13:31:49 +02:00
|
|
|
case D3DFMT_R8G8B8: return WINED3DFMT_B8G8R8_UNORM;
|
|
|
|
case D3DFMT_A8R8G8B8: return WINED3DFMT_B8G8R8A8_UNORM;
|
|
|
|
case D3DFMT_X8R8G8B8: return WINED3DFMT_B8G8R8X8_UNORM;
|
|
|
|
case D3DFMT_R5G6B5: return WINED3DFMT_B5G6R5_UNORM;
|
|
|
|
case D3DFMT_X1R5G5B5: return WINED3DFMT_B5G5R5X1_UNORM;
|
|
|
|
case D3DFMT_A1R5G5B5: return WINED3DFMT_B5G5R5A1_UNORM;
|
|
|
|
case D3DFMT_A4R4G4B4: return WINED3DFMT_B4G4R4A4_UNORM;
|
|
|
|
case D3DFMT_R3G3B2: return WINED3DFMT_B2G3R3_UNORM;
|
2009-02-19 16:59:42 +01:00
|
|
|
case D3DFMT_A8: return WINED3DFMT_A8_UNORM;
|
2009-09-25 13:31:49 +02:00
|
|
|
case D3DFMT_A8R3G3B2: return WINED3DFMT_B2G3R3A8_UNORM;
|
|
|
|
case D3DFMT_X4R4G4B4: return WINED3DFMT_B4G4R4X4_UNORM;
|
2009-02-19 16:59:42 +01:00
|
|
|
case D3DFMT_A2B10G10R10: return WINED3DFMT_R10G10B10A2_UNORM;
|
|
|
|
case D3DFMT_G16R16: return WINED3DFMT_R16G16_UNORM;
|
2009-09-25 13:31:49 +02:00
|
|
|
case D3DFMT_A8P8: return WINED3DFMT_P8_UINT_A8_UNORM;
|
|
|
|
case D3DFMT_P8: return WINED3DFMT_P8_UINT;
|
|
|
|
case D3DFMT_L8: return WINED3DFMT_L8_UNORM;
|
|
|
|
case D3DFMT_A8L8: return WINED3DFMT_L8A8_UNORM;
|
|
|
|
case D3DFMT_A4L4: return WINED3DFMT_L4A4_UNORM;
|
2009-02-19 16:59:42 +01:00
|
|
|
case D3DFMT_V8U8: return WINED3DFMT_R8G8_SNORM;
|
2009-09-25 13:31:49 +02:00
|
|
|
case D3DFMT_L6V5U5: return WINED3DFMT_R5G5_SNORM_L6_UNORM;
|
|
|
|
case D3DFMT_X8L8V8U8: return WINED3DFMT_R8G8_SNORM_L8X8_UNORM;
|
2009-02-19 16:59:42 +01:00
|
|
|
case D3DFMT_Q8W8V8U8: return WINED3DFMT_R8G8B8A8_SNORM;
|
|
|
|
case D3DFMT_V16U16: return WINED3DFMT_R16G16_SNORM;
|
2009-09-25 13:31:49 +02:00
|
|
|
case D3DFMT_W11V11U10: return WINED3DFMT_R10G11B11_SNORM;
|
|
|
|
case D3DFMT_A2W10V10U10: return WINED3DFMT_R10G10B10_SNORM_A2_UNORM;
|
2009-02-19 16:59:41 +01:00
|
|
|
case D3DFMT_D16_LOCKABLE: return WINED3DFMT_D16_LOCKABLE;
|
2009-09-25 13:31:49 +02:00
|
|
|
case D3DFMT_D32: return WINED3DFMT_D32_UNORM;
|
|
|
|
case D3DFMT_D15S1: return WINED3DFMT_S1_UINT_D15_UNORM;
|
2009-10-29 18:56:21 +01:00
|
|
|
case D3DFMT_D24S8: return WINED3DFMT_D24_UNORM_S8_UINT;
|
2009-09-25 13:31:49 +02:00
|
|
|
case D3DFMT_D24X8: return WINED3DFMT_X8D24_UNORM;
|
|
|
|
case D3DFMT_D24X4S4: return WINED3DFMT_S4X4_UINT_D24_UNORM;
|
2009-02-19 16:59:42 +01:00
|
|
|
case D3DFMT_D16: return WINED3DFMT_D16_UNORM;
|
2009-02-19 16:59:41 +01:00
|
|
|
case D3DFMT_VERTEXDATA: return WINED3DFMT_VERTEXDATA;
|
2009-02-19 16:59:42 +01:00
|
|
|
case D3DFMT_INDEX16: return WINED3DFMT_R16_UINT;
|
|
|
|
case D3DFMT_INDEX32: return WINED3DFMT_R32_UINT;
|
2009-02-19 16:59:41 +01:00
|
|
|
default:
|
|
|
|
FIXME("Unhandled D3DFORMAT %#x\n", format);
|
|
|
|
return WINED3DFMT_UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-05 12:30:42 +01:00
|
|
|
static UINT vertex_count_from_primitive_count(D3DPRIMITIVETYPE primitive_type, UINT primitive_count)
|
|
|
|
{
|
|
|
|
switch(primitive_type)
|
|
|
|
{
|
|
|
|
case D3DPT_POINTLIST:
|
|
|
|
return primitive_count;
|
|
|
|
|
|
|
|
case D3DPT_LINELIST:
|
|
|
|
return primitive_count * 2;
|
|
|
|
|
|
|
|
case D3DPT_LINESTRIP:
|
|
|
|
return primitive_count + 1;
|
|
|
|
|
|
|
|
case D3DPT_TRIANGLELIST:
|
|
|
|
return primitive_count * 3;
|
|
|
|
|
|
|
|
case D3DPT_TRIANGLESTRIP:
|
|
|
|
case D3DPT_TRIANGLEFAN:
|
|
|
|
return primitive_count + 2;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FIXME("Unhandled primitive type %#x\n", primitive_type);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-10 09:19:06 +01:00
|
|
|
/* Handle table functions */
|
2009-06-16 09:38:25 +02:00
|
|
|
static DWORD d3d8_allocate_handle(struct d3d8_handle_table *t, void *object, enum d3d8_handle_type type)
|
2009-03-10 09:19:06 +01:00
|
|
|
{
|
2009-06-16 09:38:25 +02:00
|
|
|
struct d3d8_handle_entry *entry;
|
|
|
|
|
2009-03-10 09:19:06 +01:00
|
|
|
if (t->free_entries)
|
|
|
|
{
|
2010-04-09 15:54:54 +02:00
|
|
|
DWORD index = t->free_entries - t->entries;
|
2006-08-27 22:07:09 +02:00
|
|
|
/* Use a free handle */
|
2009-06-16 09:38:25 +02:00
|
|
|
entry = t->free_entries;
|
|
|
|
if (entry->type != D3D8_HANDLE_FREE)
|
|
|
|
{
|
2010-04-09 15:54:54 +02:00
|
|
|
ERR("Handle %u(%p) is in the free list, but has type %#x.\n", index, entry, entry->type);
|
2009-06-16 09:38:25 +02:00
|
|
|
return D3D8_INVALID_HANDLE;
|
|
|
|
}
|
|
|
|
t->free_entries = entry->object;
|
|
|
|
entry->object = object;
|
|
|
|
entry->type = type;
|
|
|
|
|
2010-04-09 15:54:54 +02:00
|
|
|
return index;
|
2006-08-27 22:07:09 +02:00
|
|
|
}
|
2009-03-10 09:19:06 +01:00
|
|
|
|
|
|
|
if (!(t->entry_count < t->table_size))
|
|
|
|
{
|
2006-08-27 22:07:09 +02:00
|
|
|
/* Grow the table */
|
2009-03-10 09:19:06 +01:00
|
|
|
UINT new_size = t->table_size + (t->table_size >> 1);
|
2009-06-16 09:38:25 +02:00
|
|
|
struct d3d8_handle_entry *new_entries = HeapReAlloc(GetProcessHeap(),
|
|
|
|
0, t->entries, new_size * sizeof(*t->entries));
|
|
|
|
if (!new_entries)
|
|
|
|
{
|
|
|
|
ERR("Failed to grow the handle table.\n");
|
|
|
|
return D3D8_INVALID_HANDLE;
|
|
|
|
}
|
2009-03-10 09:19:06 +01:00
|
|
|
t->entries = new_entries;
|
|
|
|
t->table_size = new_size;
|
2006-08-27 22:07:09 +02:00
|
|
|
}
|
|
|
|
|
2009-06-16 09:38:25 +02:00
|
|
|
entry = &t->entries[t->entry_count];
|
|
|
|
entry->object = object;
|
|
|
|
entry->type = type;
|
|
|
|
|
2009-03-10 09:19:06 +01:00
|
|
|
return t->entry_count++;
|
2006-08-27 22:07:09 +02:00
|
|
|
}
|
|
|
|
|
2009-06-16 09:38:25 +02:00
|
|
|
static void *d3d8_free_handle(struct d3d8_handle_table *t, DWORD handle, enum d3d8_handle_type type)
|
2009-03-10 09:19:06 +01:00
|
|
|
{
|
2009-06-16 09:38:25 +02:00
|
|
|
struct d3d8_handle_entry *entry;
|
|
|
|
void *object;
|
2009-03-10 09:19:06 +01:00
|
|
|
|
2009-06-16 09:38:25 +02:00
|
|
|
if (handle == D3D8_INVALID_HANDLE || handle >= t->entry_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid handle %u passed.\n", handle);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-03-10 09:19:06 +01:00
|
|
|
|
|
|
|
entry = &t->entries[handle];
|
2009-06-16 09:38:25 +02:00
|
|
|
if (entry->type != type)
|
|
|
|
{
|
|
|
|
WARN("Handle %u(%p) is not of type %#x.\n", handle, entry, type);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
object = entry->object;
|
|
|
|
entry->object = t->free_entries;
|
|
|
|
entry->type = D3D8_HANDLE_FREE;
|
2009-03-10 09:19:06 +01:00
|
|
|
t->free_entries = entry;
|
|
|
|
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
2009-06-16 09:38:25 +02:00
|
|
|
static void *d3d8_get_object(struct d3d8_handle_table *t, DWORD handle, enum d3d8_handle_type type)
|
2009-03-10 09:19:06 +01:00
|
|
|
{
|
2009-06-16 09:38:25 +02:00
|
|
|
struct d3d8_handle_entry *entry;
|
|
|
|
|
|
|
|
if (handle == D3D8_INVALID_HANDLE || handle >= t->entry_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid handle %u passed.\n", handle);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry = &t->entries[handle];
|
|
|
|
if (entry->type != type)
|
|
|
|
{
|
|
|
|
WARN("Handle %u(%p) is not of type %#x.\n", handle, entry, type);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return entry->object;
|
2006-08-27 22:07:09 +02:00
|
|
|
}
|
|
|
|
|
2009-11-17 09:43:15 +01:00
|
|
|
static ULONG WINAPI D3D8CB_DestroySwapChain(IWineD3DSwapChain *swapchain)
|
|
|
|
{
|
|
|
|
IUnknown *parent;
|
|
|
|
|
|
|
|
TRACE("swapchain %p.\n", swapchain);
|
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
parent = IWineD3DSwapChain_GetParent(swapchain);
|
2009-11-17 09:43:15 +01:00
|
|
|
return IUnknown_Release(parent);
|
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static inline IDirect3DDevice8Impl *impl_from_IDirect3DDevice8(IDirect3DDevice8 *iface)
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
2011-01-28 01:17:54 +01:00
|
|
|
return CONTAINING_RECORD(iface, IDirect3DDevice8Impl, IDirect3DDevice8_iface);
|
2011-01-28 01:16:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_QueryInterface(IDirect3DDevice8 *iface, REFIID riid,
|
|
|
|
void **ppobj)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n",
|
|
|
|
iface, debugstr_guid(riid), ppobj);
|
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
2002-12-17 02:15:15 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DDevice8)) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IUnknown_AddRef(iface);
|
2002-09-28 00:46:16 +02:00
|
|
|
*ppobj = This;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2009-01-16 10:14:24 +01:00
|
|
|
if (IsEqualGUID(riid, &IID_IWineD3DDeviceParent))
|
|
|
|
{
|
2011-01-28 01:19:57 +01:00
|
|
|
IWineD3DDeviceParent_AddRef(&This->IWineD3DDeviceParent_iface);
|
|
|
|
*ppobj = &This->IWineD3DDeviceParent_iface;
|
2009-01-16 10:14:24 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 15:13:29 +02:00
|
|
|
*ppobj = NULL;
|
2002-09-28 00:46:16 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static ULONG WINAPI IDirect3DDevice8Impl_AddRef(IDirect3DDevice8 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", iface, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
|
|
|
return ref;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static ULONG WINAPI IDirect3DDevice8Impl_Release(IDirect3DDevice8 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-12-05 00:29:48 +01:00
|
|
|
ULONG ref;
|
|
|
|
|
|
|
|
if (This->inDestruction) return 0;
|
|
|
|
ref = InterlockedDecrement(&This->ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", iface, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
if (ref == 0) {
|
2008-01-03 22:30:11 +01:00
|
|
|
unsigned i;
|
2007-06-19 22:20:26 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("Releasing wined3d device %p\n", This->WineD3DDevice);
|
2009-08-25 08:17:14 +02:00
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
|
2006-12-05 00:29:48 +01:00
|
|
|
This->inDestruction = TRUE;
|
2007-06-19 22:20:26 +02:00
|
|
|
|
|
|
|
for(i = 0; i < This->numConvertedDecls; i++) {
|
2008-12-15 12:10:15 +01:00
|
|
|
IDirect3DVertexDeclaration8_Release(This->decls[i].decl);
|
2007-06-19 22:20:26 +02:00
|
|
|
}
|
2007-11-16 17:25:12 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This->decls);
|
2007-06-19 22:20:26 +02:00
|
|
|
|
2009-09-16 08:37:15 +02:00
|
|
|
IWineD3DDevice_Uninit3D(This->WineD3DDevice, D3D8CB_DestroySwapChain);
|
2010-03-17 21:59:49 +01:00
|
|
|
IWineD3DDevice_ReleaseFocusWindow(This->WineD3DDevice);
|
2004-10-08 22:52:33 +02:00
|
|
|
IWineD3DDevice_Release(This->WineD3DDevice);
|
2009-03-10 09:19:06 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This->handle_table.entries);
|
2004-10-08 22:52:33 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2009-08-25 08:17:14 +02:00
|
|
|
|
|
|
|
wined3d_mutex_unlock();
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DDevice Interface follow: */
|
2009-11-18 10:45:54 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_TestCooperativeLevel(IDirect3DDevice8 *iface)
|
|
|
|
{
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2009-08-25 08:17:14 +02:00
|
|
|
|
2009-11-18 10:45:54 +01:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static UINT WINAPI IDirect3DDevice8Impl_GetAvailableTextureMem(IDirect3DDevice8 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
2009-08-25 08:17:14 +02:00
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetAvailableTextureMem(This->WineD3DDevice);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_ResourceManagerDiscardBytes(IDirect3DDevice8 *iface,
|
|
|
|
DWORD Bytes)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, byte_count %u.\n", iface, Bytes);
|
|
|
|
FIXME("Byte count ignored.\n");
|
2009-08-25 08:17:14 +02:00
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_EvictManagedResources(This->WineD3DDevice);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetDirect3D(IDirect3DDevice8 *iface, IDirect3D8 **ppD3D8)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2011-02-01 19:39:53 +01:00
|
|
|
struct wined3d *wined3d;
|
2010-08-31 18:41:40 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, d3d8 %p.\n", iface, ppD3D8);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (NULL == ppD3D8) {
|
|
|
|
return D3DERR_INVALIDCALL;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-02-01 19:39:53 +01:00
|
|
|
hr = IWineD3DDevice_GetDirect3D(This->WineD3DDevice, &wined3d);
|
|
|
|
if (SUCCEEDED(hr) && wined3d)
|
2006-02-25 13:15:08 +01:00
|
|
|
{
|
2011-02-01 19:39:53 +01:00
|
|
|
*ppD3D8 = wined3d_get_parent(wined3d);
|
2010-08-31 18:41:40 +02:00
|
|
|
IDirect3D8_AddRef(*ppD3D8);
|
2011-02-01 19:39:53 +01:00
|
|
|
wined3d_decref(wined3d);
|
2010-08-31 18:41:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-02-25 13:15:08 +01:00
|
|
|
FIXME("Call to IWineD3DDevice_GetDirect3D failed\n");
|
|
|
|
*ppD3D8 = NULL;
|
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2006-10-05 11:05:49 +02:00
|
|
|
TRACE("(%p) returning %p\n",This , *ppD3D8);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetDeviceCaps(IDirect3DDevice8 *iface, D3DCAPS8 *pCaps)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-02-25 13:15:08 +01:00
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
WINED3DCAPS *pWineCaps;
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, caps %p.\n", iface, pCaps);
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if(NULL == pCaps){
|
|
|
|
return D3DERR_INVALIDCALL;
|
2003-06-04 23:55:29 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
pWineCaps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WINED3DCAPS));
|
|
|
|
if(pWineCaps == NULL){
|
|
|
|
return D3DERR_INVALIDCALL; /* well this is what MSDN says to return */
|
2003-06-04 23:55:29 +02:00
|
|
|
}
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2006-02-25 13:15:08 +01:00
|
|
|
hrc = IWineD3DDevice_GetDeviceCaps(This->WineD3DDevice, pWineCaps);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2009-08-07 12:17:41 +02:00
|
|
|
fixup_caps(pWineCaps);
|
2008-03-18 19:26:00 +01:00
|
|
|
WINECAPSTOD3D8CAPS(pCaps, pWineCaps)
|
2006-02-25 13:15:08 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, pWineCaps);
|
2006-12-23 14:41:53 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("Returning %p %p\n", This, pCaps);
|
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetDisplayMode(IDirect3DDevice8 *iface,
|
|
|
|
D3DDISPLAYMODE *pMode)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, mode %p.\n", iface, pMode);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetDisplayMode(This->WineD3DDevice, 0, (WINED3DDISPLAYMODE *) pMode);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-02-19 16:59:41 +01:00
|
|
|
|
|
|
|
if (SUCCEEDED(hr)) pMode->Format = d3dformat_from_wined3dformat(pMode->Format);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetCreationParameters(IDirect3DDevice8 *iface,
|
|
|
|
D3DDEVICE_CREATION_PARAMETERS *pParameters)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, parameters %p.\n", iface, pParameters);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetCreationParameters(This->WineD3DDevice, (WINED3DDEVICE_CREATION_PARAMETERS *) pParameters);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-05 00:55:19 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetCursorProperties(IDirect3DDevice8 *iface,
|
|
|
|
UINT XHotSpot, UINT YHotSpot, IDirect3DSurface8 *pCursorBitmap)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DSurface8Impl *pSurface = (IDirect3DSurface8Impl*)pCursorBitmap;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, hotspot_x %u, hotspot_y %u, bitmap %p.\n",
|
|
|
|
iface, XHotSpot, YHotSpot, pCursorBitmap);
|
|
|
|
|
2010-11-16 12:09:31 +01:00
|
|
|
if (!pCursorBitmap)
|
|
|
|
{
|
|
|
|
WARN("No cursor bitmap, returning D3DERR_INVALIDCALL.\n");
|
|
|
|
return D3DERR_INVALIDCALL;
|
2006-11-09 02:38:22 +01:00
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-12-04 22:45:06 +01:00
|
|
|
hr = IWineD3DDevice_SetCursorProperties(This->WineD3DDevice,XHotSpot,YHotSpot,pSurface->wineD3DSurface);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static void WINAPI IDirect3DDevice8Impl_SetCursorPosition(IDirect3DDevice8 *iface,
|
|
|
|
UINT XScreenSpace, UINT YScreenSpace, DWORD Flags)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, x %u, y %u, flags %#x.\n",
|
|
|
|
iface, XScreenSpace, YScreenSpace, Flags);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-04-07 22:27:55 +02:00
|
|
|
IWineD3DDevice_SetCursorPosition(This->WineD3DDevice, XScreenSpace, YScreenSpace, Flags);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static BOOL WINAPI IDirect3DDevice8Impl_ShowCursor(IDirect3DDevice8 *iface, BOOL bShow)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
BOOL ret;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, show %#x.\n", iface, bShow);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
ret = IWineD3DDevice_ShowCursor(This->WineD3DDevice, bShow);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return ret;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-11-17 21:04:30 +01:00
|
|
|
|
2009-12-20 20:41:35 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateAdditionalSwapChain(IDirect3DDevice8 *iface,
|
|
|
|
D3DPRESENT_PARAMETERS *present_parameters, IDirect3DSwapChain8 **swapchain)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-12-20 20:41:35 +01:00
|
|
|
IDirect3DSwapChain8Impl *object;
|
|
|
|
HRESULT hr;
|
2003-11-17 21:04:30 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, present_parameters %p, swapchain %p.\n",
|
2009-12-20 20:41:35 +01:00
|
|
|
iface, present_parameters, swapchain);
|
2003-06-13 20:09:05 +02:00
|
|
|
|
2009-12-20 20:41:35 +01:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
if (!object)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate swapchain memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
2006-05-30 23:32:32 +02:00
|
|
|
}
|
|
|
|
|
2009-12-20 20:41:35 +01:00
|
|
|
hr = swapchain_init(object, This, present_parameters);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize swapchain, hr %#x.\n", hr);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
return hr;
|
2003-07-19 05:02:42 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-12-20 20:41:35 +01:00
|
|
|
TRACE("Created swapchain %p.\n", object);
|
2011-01-31 01:40:25 +01:00
|
|
|
*swapchain = &object->IDirect3DSwapChain8_iface;
|
2007-02-15 22:36:50 +01:00
|
|
|
|
2009-12-20 20:41:35 +01:00
|
|
|
return D3D_OK;
|
2003-06-13 20:09:05 +02:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_Reset(IDirect3DDevice8 *iface,
|
|
|
|
D3DPRESENT_PARAMETERS *pPresentationParameters)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-02-25 13:15:08 +01:00
|
|
|
WINED3DPRESENT_PARAMETERS localParameters;
|
2007-02-15 22:36:50 +01:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, present_parameters %p.\n", iface, pPresentationParameters);
|
2007-02-15 22:36:50 +01:00
|
|
|
|
|
|
|
localParameters.BackBufferWidth = pPresentationParameters->BackBufferWidth;
|
|
|
|
localParameters.BackBufferHeight = pPresentationParameters->BackBufferHeight;
|
2009-02-19 16:59:41 +01:00
|
|
|
localParameters.BackBufferFormat = wined3dformat_from_d3dformat(pPresentationParameters->BackBufferFormat);
|
2007-02-15 22:36:50 +01:00
|
|
|
localParameters.BackBufferCount = pPresentationParameters->BackBufferCount;
|
|
|
|
localParameters.MultiSampleType = pPresentationParameters->MultiSampleType;
|
|
|
|
localParameters.MultiSampleQuality = 0; /* d3d9 only */
|
|
|
|
localParameters.SwapEffect = pPresentationParameters->SwapEffect;
|
|
|
|
localParameters.hDeviceWindow = pPresentationParameters->hDeviceWindow;
|
|
|
|
localParameters.Windowed = pPresentationParameters->Windowed;
|
|
|
|
localParameters.EnableAutoDepthStencil = pPresentationParameters->EnableAutoDepthStencil;
|
2009-02-19 16:59:41 +01:00
|
|
|
localParameters.AutoDepthStencilFormat = wined3dformat_from_d3dformat(pPresentationParameters->AutoDepthStencilFormat);
|
2007-02-15 22:36:50 +01:00
|
|
|
localParameters.Flags = pPresentationParameters->Flags;
|
|
|
|
localParameters.FullScreen_RefreshRateInHz = pPresentationParameters->FullScreen_RefreshRateInHz;
|
|
|
|
localParameters.PresentationInterval = pPresentationParameters->FullScreen_PresentationInterval;
|
2008-11-01 22:35:23 +01:00
|
|
|
localParameters.AutoRestoreDisplayMode = TRUE;
|
2007-02-15 22:36:50 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-02-15 22:36:50 +01:00
|
|
|
hr = IWineD3DDevice_Reset(This->WineD3DDevice, &localParameters);
|
2009-10-20 10:26:06 +02:00
|
|
|
if(SUCCEEDED(hr)) {
|
|
|
|
hr = IWineD3DDevice_SetRenderState(This->WineD3DDevice, WINED3DRS_POINTSIZE_MIN, 0);
|
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2007-02-15 22:36:50 +01:00
|
|
|
|
|
|
|
pPresentationParameters->BackBufferWidth = localParameters.BackBufferWidth;
|
|
|
|
pPresentationParameters->BackBufferHeight = localParameters.BackBufferHeight;
|
2009-02-19 16:59:41 +01:00
|
|
|
pPresentationParameters->BackBufferFormat = d3dformat_from_wined3dformat(localParameters.BackBufferFormat);
|
2007-02-15 22:36:50 +01:00
|
|
|
pPresentationParameters->BackBufferCount = localParameters.BackBufferCount;
|
|
|
|
pPresentationParameters->MultiSampleType = localParameters.MultiSampleType;
|
|
|
|
pPresentationParameters->SwapEffect = localParameters.SwapEffect;
|
|
|
|
pPresentationParameters->hDeviceWindow = localParameters.hDeviceWindow;
|
|
|
|
pPresentationParameters->Windowed = localParameters.Windowed;
|
|
|
|
pPresentationParameters->EnableAutoDepthStencil = localParameters.EnableAutoDepthStencil;
|
2009-02-19 16:59:41 +01:00
|
|
|
pPresentationParameters->AutoDepthStencilFormat = d3dformat_from_wined3dformat(localParameters.AutoDepthStencilFormat);
|
2007-02-15 22:36:50 +01:00
|
|
|
pPresentationParameters->Flags = localParameters.Flags;
|
|
|
|
pPresentationParameters->FullScreen_RefreshRateInHz = localParameters.FullScreen_RefreshRateInHz;
|
|
|
|
pPresentationParameters->FullScreen_PresentationInterval = localParameters.PresentationInterval;
|
|
|
|
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_Present(IDirect3DDevice8 *iface, const RECT *pSourceRect,
|
|
|
|
const RECT *pDestRect, HWND hDestWindowOverride, const RGNDATA *pDirtyRegion)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, src_rect %p, dst_rect %p, dst_window_override %p, dirty_region %p.\n",
|
|
|
|
iface, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_Present(This->WineD3DDevice, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetBackBuffer(IDirect3DDevice8 *iface,
|
|
|
|
UINT BackBuffer, D3DBACKBUFFER_TYPE Type, IDirect3DSurface8 **ppBackBuffer)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-02-25 13:15:08 +01:00
|
|
|
IWineD3DSurface *retSurface = NULL;
|
2010-08-31 18:41:40 +02:00
|
|
|
HRESULT hr;
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, backbuffer_idx %u, backbuffer_type %#x, backbuffer %p.\n",
|
|
|
|
iface, BackBuffer, Type, ppBackBuffer);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2010-08-31 18:41:40 +02:00
|
|
|
hr = IWineD3DDevice_GetBackBuffer(This->WineD3DDevice, 0, BackBuffer, (WINED3DBACKBUFFER_TYPE)Type, &retSurface);
|
|
|
|
if (SUCCEEDED(hr) && retSurface && ppBackBuffer)
|
|
|
|
{
|
|
|
|
*ppBackBuffer = IWineD3DSurface_GetParent(retSurface);
|
|
|
|
IDirect3DSurface8_AddRef(*ppBackBuffer);
|
2006-11-30 13:33:52 +01:00
|
|
|
IWineD3DSurface_Release(retSurface);
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetRasterStatus(IDirect3DDevice8 *iface,
|
|
|
|
D3DRASTER_STATUS *pRasterStatus)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, raster_status %p.\n", iface, pRasterStatus);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetRasterStatus(This->WineD3DDevice, 0, (WINED3DRASTER_STATUS *) pRasterStatus);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static void WINAPI IDirect3DDevice8Impl_SetGammaRamp(IDirect3DDevice8 *iface, DWORD Flags,
|
|
|
|
const D3DGAMMARAMP *pRamp)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, flags %#x, ramp %p.\n", iface, Flags, pRamp);
|
2003-06-05 01:01:49 +02:00
|
|
|
|
2006-10-11 03:58:01 +02:00
|
|
|
/* Note: D3DGAMMARAMP is compatible with WINED3DGAMMARAMP */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-04-07 22:27:55 +02:00
|
|
|
IWineD3DDevice_SetGammaRamp(This->WineD3DDevice, 0, Flags, (CONST WINED3DGAMMARAMP *) pRamp);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static void WINAPI IDirect3DDevice8Impl_GetGammaRamp(IDirect3DDevice8 *iface, D3DGAMMARAMP *pRamp)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, ramp %p.\n", iface, pRamp);
|
2003-06-05 01:01:49 +02:00
|
|
|
|
2006-10-11 03:58:01 +02:00
|
|
|
/* Note: D3DGAMMARAMP is compatible with WINED3DGAMMARAMP */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-04-07 22:27:55 +02:00
|
|
|
IWineD3DDevice_GetGammaRamp(This->WineD3DDevice, 0, (WINED3DGAMMARAMP *) pRamp);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-09-17 12:35:30 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateTexture(IDirect3DDevice8 *iface,
|
|
|
|
UINT width, UINT height, UINT levels, DWORD usage, D3DFORMAT format,
|
|
|
|
D3DPOOL pool, IDirect3DTexture8 **texture)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-09-17 12:35:30 +02:00
|
|
|
IDirect3DTexture8Impl *object;
|
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-09-17 12:35:30 +02:00
|
|
|
TRACE("iface %p, width %u, height %u, levels %u, usage %#x, format %#x, pool %#x, texture %p.\n",
|
|
|
|
iface, width, height, levels, usage, format, pool, texture);
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2009-09-17 12:35:30 +02:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
if (!object)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate texture memory.\n");
|
2006-02-20 11:11:35 +01:00
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2009-09-17 12:35:30 +02:00
|
|
|
hr = texture_init(object, This, width, height, levels, usage, format, pool);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize texture, hr %#x.\n", hr);
|
2006-02-20 11:11:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
2009-09-17 12:35:30 +02:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Created texture %p.\n", object);
|
2011-01-31 01:47:39 +01:00
|
|
|
*texture = &object->IDirect3DTexture8_iface;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-09-17 12:35:30 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-31 09:57:52 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateVolumeTexture(IDirect3DDevice8 *iface,
|
2009-09-16 08:37:23 +02:00
|
|
|
UINT width, UINT height, UINT depth, UINT levels, DWORD usage, D3DFORMAT format,
|
|
|
|
D3DPOOL pool, IDirect3DVolumeTexture8 **texture)
|
2009-08-31 09:57:52 +02:00
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-09-16 08:37:23 +02:00
|
|
|
IDirect3DVolumeTexture8Impl *object;
|
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-09-16 08:37:23 +02:00
|
|
|
TRACE("iface %p, width %u, height %u, depth %u, levels %u, usage %#x, format %#x, pool %#x, texture %p.\n",
|
|
|
|
iface, width, height, depth, levels, usage, format, pool, texture);
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2009-09-16 08:37:23 +02:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
if (!object)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate volume texture memory.\n");
|
2006-02-20 11:11:35 +01:00
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-09-16 08:37:23 +02:00
|
|
|
hr = volumetexture_init(object, This, width, height, depth, levels, usage, format, pool);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize volume texture, hr %#x.\n", hr);
|
2006-02-20 11:11:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
2009-09-16 08:37:23 +02:00
|
|
|
return hr;
|
2002-10-21 20:21:59 +02:00
|
|
|
}
|
2009-09-16 08:37:23 +02:00
|
|
|
|
|
|
|
TRACE("Created volume texture %p.\n", object);
|
|
|
|
*texture = (IDirect3DVolumeTexture8 *)object;
|
|
|
|
|
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-09-17 12:35:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateCubeTexture(IDirect3DDevice8 *iface, UINT edge_length,
|
|
|
|
UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool, IDirect3DCubeTexture8 **texture)
|
2009-08-31 09:57:52 +02:00
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-09-17 12:35:24 +02:00
|
|
|
IDirect3DCubeTexture8Impl *object;
|
|
|
|
HRESULT hr;
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2009-09-17 12:35:24 +02:00
|
|
|
TRACE("iface %p, edge_length %u, levels %u, usage %#x, format %#x, pool %#x, texture %p.\n",
|
|
|
|
iface, edge_length, levels, usage, format, pool, texture);
|
2006-02-20 11:11:35 +01:00
|
|
|
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
2009-09-17 12:35:24 +02:00
|
|
|
if (!object)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate cube texture memory.\n");
|
2006-02-20 11:11:35 +01:00
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-09-17 12:35:24 +02:00
|
|
|
hr = cubetexture_init(object, This, edge_length, levels, usage, format, pool);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize cube texture, hr %#x.\n", hr);
|
2006-02-20 11:11:35 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
2009-09-17 12:35:24 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2009-09-17 12:35:24 +02:00
|
|
|
TRACE("Created cube texture %p.\n", object);
|
2011-01-31 01:46:17 +01:00
|
|
|
*texture = &object->IDirect3DCubeTexture8_iface;
|
2009-09-17 12:35:24 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateVertexBuffer(IDirect3DDevice8 *iface, UINT size,
|
|
|
|
DWORD usage, DWORD fvf, D3DPOOL pool, IDirect3DVertexBuffer8 **buffer)
|
2009-09-17 23:03:31 +02:00
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-09-17 23:03:31 +02:00
|
|
|
IDirect3DVertexBuffer8Impl *object;
|
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-09-17 23:03:31 +02:00
|
|
|
TRACE("iface %p, size %u, usage %#x, fvf %#x, pool %#x, buffer %p.\n",
|
|
|
|
iface, size, usage, fvf, pool, buffer);
|
|
|
|
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
if (!object)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate buffer memory.\n");
|
2006-02-25 13:15:08 +01:00
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-09-17 23:03:31 +02:00
|
|
|
hr = vertexbuffer_init(object, This, size, usage, fvf, pool);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize vertex buffer, hr %#x.\n", hr);
|
2006-02-25 13:15:08 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
2009-09-17 23:03:31 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2009-09-17 23:03:31 +02:00
|
|
|
|
|
|
|
TRACE("Created vertex buffer %p.\n", object);
|
|
|
|
*buffer = (IDirect3DVertexBuffer8 *)object;
|
|
|
|
|
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateIndexBuffer(IDirect3DDevice8 *iface, UINT size,
|
|
|
|
DWORD usage, D3DFORMAT format, D3DPOOL pool, IDirect3DIndexBuffer8 **buffer)
|
2009-09-17 23:03:30 +02:00
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-09-17 23:03:30 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *object;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("iface %p, size %u, usage %#x, format %#x, pool %#x, buffer %p.\n",
|
|
|
|
iface, size, usage, format, pool, buffer);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
2009-09-17 23:03:30 +02:00
|
|
|
if (!object)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate buffer memory.\n");
|
2006-02-25 13:15:08 +01:00
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-09-17 23:03:30 +02:00
|
|
|
hr = indexbuffer_init(object, This, size, usage, format, pool);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize index buffer, hr %#x.\n", hr);
|
2006-02-25 13:15:08 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
2009-09-17 23:03:30 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2009-09-17 23:03:30 +02:00
|
|
|
|
|
|
|
TRACE("Created index buffer %p.\n", object);
|
|
|
|
*buffer = (IDirect3DIndexBuffer8 *)object;
|
|
|
|
|
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-14 17:13:19 +01:00
|
|
|
|
2011-01-26 00:31:13 +01:00
|
|
|
static HRESULT IDirect3DDevice8Impl_CreateSurface(IDirect3DDevice8Impl *device, UINT Width,
|
|
|
|
UINT Height, D3DFORMAT Format, BOOL Lockable, BOOL Discard, UINT Level,
|
|
|
|
IDirect3DSurface8 **ppSurface, UINT Usage, D3DPOOL Pool, D3DMULTISAMPLE_TYPE MultiSample,
|
|
|
|
DWORD MultisampleQuality)
|
2009-06-12 09:46:03 +02:00
|
|
|
{
|
2003-05-11 05:35:27 +02:00
|
|
|
IDirect3DSurface8Impl *object;
|
2009-09-11 19:01:17 +02:00
|
|
|
HRESULT hr;
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2011-01-26 00:31:13 +01:00
|
|
|
TRACE("device %p, width %u, height %u, format %#x, lockable %#x, discard %#x, level %u, surface %p,\n"
|
2009-10-19 10:12:20 +02:00
|
|
|
"\tusage %#x, pool %#x, multisample_type %#x, multisample_quality %u.\n",
|
2011-01-26 00:31:13 +01:00
|
|
|
device, Width, Height, Format, Lockable, Discard, Level, ppSurface,
|
2009-10-19 10:12:20 +02:00
|
|
|
Usage, Pool, MultiSample, MultisampleQuality);
|
2003-06-05 01:05:46 +02:00
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DSurface8Impl));
|
2009-09-11 19:01:17 +02:00
|
|
|
if (!object)
|
|
|
|
{
|
|
|
|
FIXME("Failed to allocate surface memory.\n");
|
2006-02-14 17:13:19 +01:00
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
2003-05-12 05:10:27 +02:00
|
|
|
}
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2011-01-26 00:31:13 +01:00
|
|
|
hr = surface_init(object, device, Width, Height, Format, Lockable, Discard, Level, Usage,
|
|
|
|
Pool, MultiSample, MultisampleQuality);
|
2009-09-11 19:01:17 +02:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize surface, hr %#x.\n", hr);
|
2006-02-14 17:13:19 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
2009-09-11 19:01:17 +02:00
|
|
|
return hr;
|
2003-09-19 02:20:19 +02:00
|
|
|
}
|
2009-09-11 19:01:17 +02:00
|
|
|
|
|
|
|
TRACE("Created surface %p.\n", object);
|
|
|
|
*ppSurface = (IDirect3DSurface8 *)object;
|
|
|
|
|
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-26 00:31:13 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateRenderTarget(IDirect3DDevice8 *iface, UINT Width,
|
|
|
|
UINT Height, D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample, BOOL Lockable,
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DSurface8 **ppSurface)
|
2011-01-26 00:31:13 +01:00
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, width %u, height %u, format %#x, multisample_type %#x, lockable %#x, surface %p.\n",
|
|
|
|
iface, Width, Height, Format, MultiSample, Lockable, ppSurface);
|
2003-01-14 23:53:50 +01:00
|
|
|
|
2011-01-26 00:31:13 +01:00
|
|
|
hr = IDirect3DDevice8Impl_CreateSurface(This, Width, Height, Format, Lockable,
|
|
|
|
FALSE /* Discard */, 0 /* Level */, ppSurface, D3DUSAGE_RENDERTARGET, D3DPOOL_DEFAULT,
|
|
|
|
MultiSample, 0);
|
2009-06-12 09:46:03 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-14 17:13:19 +01:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-26 00:31:13 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateDepthStencilSurface(IDirect3DDevice8 *iface,
|
|
|
|
UINT Width, UINT Height, D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample,
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DSurface8 **ppSurface)
|
2011-01-26 00:31:13 +01:00
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, width %u, height %u, format %#x, multisample_type %#x, surface %p.\n",
|
|
|
|
iface, Width, Height, Format, MultiSample, ppSurface);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
/* TODO: Verify that Discard is false */
|
2011-01-26 00:31:13 +01:00
|
|
|
hr = IDirect3DDevice8Impl_CreateSurface(This, Width, Height, Format, TRUE /* Lockable */, FALSE,
|
2009-06-12 09:46:03 +02:00
|
|
|
0 /* Level */, ppSurface, D3DUSAGE_DEPTHSTENCIL, D3DPOOL_DEFAULT, MultiSample, 0);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-14 17:13:19 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2008-07-08 12:56:16 +02:00
|
|
|
/* IDirect3DDevice8Impl::CreateImageSurface returns surface with pool type SYSTEMMEM */
|
2011-01-26 00:31:13 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateImageSurface(IDirect3DDevice8 *iface, UINT Width,
|
2011-01-28 01:16:06 +01:00
|
|
|
UINT Height, D3DFORMAT Format, IDirect3DSurface8 **ppSurface)
|
2011-01-26 00:31:13 +01:00
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, width %u, height %u, format %#x, surface %p.\n",
|
|
|
|
iface, Width, Height, Format, ppSurface);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2011-01-26 00:31:13 +01:00
|
|
|
hr = IDirect3DDevice8Impl_CreateSurface(This, Width, Height, Format, TRUE /* Lockable */,
|
|
|
|
FALSE /* Discard */, 0 /* Level */, ppSurface, 0 /* Usage (undefined/none) */,
|
|
|
|
D3DPOOL_SYSTEMMEM, D3DMULTISAMPLE_NONE, 0 /* MultisampleQuality */);
|
2009-06-12 09:46:03 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-14 17:13:19 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CopyRects(IDirect3DDevice8 *iface,
|
|
|
|
IDirect3DSurface8 *pSourceSurface, const RECT *pSourceRects, UINT cRects,
|
|
|
|
IDirect3DSurface8 *pDestinationSurface, const POINT *pDestPoints)
|
|
|
|
{
|
2006-10-13 12:14:59 +02:00
|
|
|
IDirect3DSurface8Impl *Source = (IDirect3DSurface8Impl *) pSourceSurface;
|
|
|
|
IDirect3DSurface8Impl *Dest = (IDirect3DSurface8Impl *) pDestinationSurface;
|
2010-08-23 18:28:10 +02:00
|
|
|
enum wined3d_format_id srcFormat, destFormat;
|
2011-03-08 19:41:05 +01:00
|
|
|
struct wined3d_resource_desc wined3d_desc;
|
2011-03-10 19:07:08 +01:00
|
|
|
struct wined3d_resource *wined3d_resource;
|
2006-10-13 12:14:59 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, src_surface %p, src_rects %p, rect_count %u, dst_surface %p, dst_points %p.\n",
|
|
|
|
iface, pSourceSurface, pSourceRects, cRects, pDestinationSurface, pDestPoints);
|
2006-10-13 12:14:59 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
/* Check that the source texture is in WINED3DPOOL_SYSTEMMEM and the
|
|
|
|
* destination texture is in WINED3DPOOL_DEFAULT. */
|
2006-10-13 12:14:59 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-10 19:07:08 +01:00
|
|
|
wined3d_resource = IWineD3DSurface_GetResource(Source->wineD3DSurface);
|
|
|
|
wined3d_resource_get_desc(wined3d_resource, &wined3d_desc);
|
2011-03-08 19:41:05 +01:00
|
|
|
srcFormat = wined3d_desc.format;
|
2006-10-13 12:14:59 +02:00
|
|
|
|
2011-03-10 19:07:08 +01:00
|
|
|
wined3d_resource = IWineD3DSurface_GetResource(Dest->wineD3DSurface);
|
|
|
|
wined3d_resource_get_desc(wined3d_resource, &wined3d_desc);
|
2011-03-08 19:41:05 +01:00
|
|
|
destFormat = wined3d_desc.format;
|
2006-10-13 12:14:59 +02:00
|
|
|
|
|
|
|
/* Check that the source and destination formats match */
|
2010-11-16 12:09:31 +01:00
|
|
|
if (srcFormat != destFormat && WINED3DFMT_UNKNOWN != destFormat)
|
|
|
|
{
|
|
|
|
WARN("Source %p format must match the dest %p format, returning D3DERR_INVALIDCALL.\n",
|
|
|
|
pSourceSurface, pDestinationSurface);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2010-11-16 12:09:31 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
else if (WINED3DFMT_UNKNOWN == destFormat)
|
|
|
|
{
|
2006-10-13 12:14:59 +02:00
|
|
|
TRACE("(%p) : Converting destination surface from WINED3DFMT_UNKNOWN to the source format\n", iface);
|
|
|
|
IWineD3DSurface_SetFormat(Dest->wineD3DSurface, srcFormat);
|
|
|
|
}
|
2003-05-14 01:39:53 +02:00
|
|
|
|
2006-10-13 12:14:59 +02:00
|
|
|
/* Quick if complete copy ... */
|
|
|
|
if (cRects == 0 && pSourceRects == NULL && pDestPoints == NULL) {
|
2007-04-14 22:44:55 +02:00
|
|
|
IWineD3DSurface_BltFast(Dest->wineD3DSurface, 0, 0, Source->wineD3DSurface, NULL, WINEDDBLTFAST_NOCOLORKEY);
|
2006-10-13 12:14:59 +02:00
|
|
|
} else {
|
|
|
|
unsigned int i;
|
|
|
|
/* Copy rect by rect */
|
|
|
|
if (NULL != pSourceRects && NULL != pDestPoints) {
|
|
|
|
for (i = 0; i < cRects; ++i) {
|
2009-01-14 09:51:52 +01:00
|
|
|
IWineD3DSurface_BltFast(Dest->wineD3DSurface, pDestPoints[i].x, pDestPoints[i].y, Source->wineD3DSurface, &pSourceRects[i], WINEDDBLTFAST_NOCOLORKEY);
|
2006-10-13 12:14:59 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < cRects; ++i) {
|
2009-01-14 09:51:52 +01:00
|
|
|
IWineD3DSurface_BltFast(Dest->wineD3DSurface, 0, 0, Source->wineD3DSurface, &pSourceRects[i], WINEDDBLTFAST_NOCOLORKEY);
|
2006-10-13 12:14:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2003-01-14 23:53:50 +01:00
|
|
|
|
2011-03-08 19:41:05 +01:00
|
|
|
return WINED3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-14 17:13:19 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_UpdateTexture(IDirect3DDevice8 *iface,
|
|
|
|
IDirect3DBaseTexture8 *pSourceTexture, IDirect3DBaseTexture8 *pDestinationTexture)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, src_texture %p, dst_texture %p.\n", iface, pSourceTexture, pDestinationTexture);
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_UpdateTexture(This->WineD3DDevice, ((IDirect3DBaseTexture8Impl *)pSourceTexture)->wineD3DBaseTexture, ((IDirect3DBaseTexture8Impl *)pDestinationTexture)->wineD3DBaseTexture);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetFrontBuffer(IDirect3DDevice8 *iface,
|
|
|
|
IDirect3DSurface8 *pDestSurface)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DSurface8Impl *destSurface = (IDirect3DSurface8Impl *)pDestSurface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, dst_surface %p.\n", iface, pDestSurface);
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (pDestSurface == NULL) {
|
|
|
|
WARN("(%p) : Caller passed NULL as pDestSurface returning D3DERR_INVALIDCALL\n", This);
|
|
|
|
return D3DERR_INVALIDCALL;
|
2003-05-14 21:33:35 +02:00
|
|
|
}
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetFrontBufferData(This->WineD3DDevice, 0, destSurface->wineD3DSurface);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetRenderTarget(IDirect3DDevice8 *iface,
|
|
|
|
IDirect3DSurface8 *pRenderTarget, IDirect3DSurface8 *pNewZStencil)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DSurface8Impl *pSurface = (IDirect3DSurface8Impl *)pRenderTarget;
|
|
|
|
IDirect3DSurface8Impl *pZSurface = (IDirect3DSurface8Impl *)pNewZStencil;
|
2008-09-10 11:08:58 +02:00
|
|
|
IWineD3DSurface *original_ds = NULL;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, render_target %p, depth_stencil %p.\n", iface, pRenderTarget, pNewZStencil);
|
2003-05-12 05:10:27 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2008-09-10 11:08:58 +02:00
|
|
|
|
2011-03-11 22:21:15 +01:00
|
|
|
if (pZSurface)
|
|
|
|
{
|
|
|
|
struct wined3d_resource_desc ds_desc, rt_desc;
|
|
|
|
struct wined3d_resource *wined3d_resource;
|
|
|
|
|
|
|
|
wined3d_resource = IWineD3DSurface_GetResource(pZSurface->wineD3DSurface);
|
|
|
|
wined3d_resource_get_desc(wined3d_resource, &ds_desc);
|
|
|
|
wined3d_resource = IWineD3DSurface_GetResource(pSurface->wineD3DSurface);
|
|
|
|
wined3d_resource_get_desc(wined3d_resource, &rt_desc);
|
|
|
|
|
|
|
|
if (ds_desc.width < rt_desc.width || ds_desc.height < rt_desc.height)
|
|
|
|
{
|
|
|
|
WARN("Depth stencil is smaller than the render target, returning D3DERR_INVALIDCALL\n");
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-10 11:08:58 +02:00
|
|
|
hr = IWineD3DDevice_GetDepthStencilSurface(This->WineD3DDevice, &original_ds);
|
|
|
|
if (hr == WINED3D_OK || hr == WINED3DERR_NOTFOUND)
|
|
|
|
{
|
|
|
|
hr = IWineD3DDevice_SetDepthStencilSurface(This->WineD3DDevice, pZSurface ? pZSurface->wineD3DSurface : NULL);
|
|
|
|
if (SUCCEEDED(hr) && pSurface)
|
2009-10-20 14:13:26 +02:00
|
|
|
hr = IWineD3DDevice_SetRenderTarget(This->WineD3DDevice, 0, pSurface->wineD3DSurface, TRUE);
|
2008-09-10 11:08:58 +02:00
|
|
|
if (FAILED(hr)) IWineD3DDevice_SetDepthStencilSurface(This->WineD3DDevice, original_ds);
|
|
|
|
}
|
|
|
|
if (original_ds) IWineD3DSurface_Release(original_ds);
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetRenderTarget(IDirect3DDevice8 *iface,
|
|
|
|
IDirect3DSurface8 **ppRenderTarget)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-02-25 13:15:08 +01:00
|
|
|
IWineD3DSurface *pRenderTarget;
|
2010-08-31 18:41:40 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, render_target %p.\n", iface, ppRenderTarget);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
|
|
|
if (ppRenderTarget == NULL) {
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
2006-02-25 13:15:08 +01:00
|
|
|
hr = IWineD3DDevice_GetRenderTarget(This->WineD3DDevice, 0, &pRenderTarget);
|
2010-08-31 18:41:40 +02:00
|
|
|
if (SUCCEEDED(hr) && pRenderTarget)
|
|
|
|
{
|
|
|
|
*ppRenderTarget = IWineD3DSurface_GetParent(pRenderTarget);
|
|
|
|
IDirect3DSurface8_AddRef(*ppRenderTarget);
|
2006-12-01 00:15:42 +01:00
|
|
|
IWineD3DSurface_Release(pRenderTarget);
|
2010-08-31 18:41:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-02-25 13:15:08 +01:00
|
|
|
FIXME("Call to IWineD3DDevice_GetRenderTarget failed\n");
|
|
|
|
*ppRenderTarget = NULL;
|
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2006-02-25 13:15:08 +01:00
|
|
|
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetDepthStencilSurface(IDirect3DDevice8 *iface,
|
|
|
|
IDirect3DSurface8 **ppZStencilSurface)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-02-25 13:15:08 +01:00
|
|
|
IWineD3DSurface *pZStencilSurface;
|
2010-08-31 18:41:40 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, depth_stencil %p.\n", iface, ppZStencilSurface);
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if(ppZStencilSurface == NULL){
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2010-08-31 18:41:40 +02:00
|
|
|
hr = IWineD3DDevice_GetDepthStencilSurface(This->WineD3DDevice, &pZStencilSurface);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
*ppZStencilSurface = IWineD3DSurface_GetParent(pZStencilSurface);
|
|
|
|
IDirect3DSurface8_AddRef(*ppZStencilSurface);
|
2006-12-01 00:15:42 +01:00
|
|
|
IWineD3DSurface_Release(pZStencilSurface);
|
2010-08-31 18:41:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-09-10 11:08:58 +02:00
|
|
|
if (hr != WINED3DERR_NOTFOUND)
|
|
|
|
FIXME("Call to IWineD3DDevice_GetDepthStencilSurface failed with 0x%08x\n", hr);
|
2006-02-25 13:15:08 +01:00
|
|
|
*ppZStencilSurface = NULL;
|
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2008-09-10 11:08:58 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_BeginScene(IDirect3DDevice8 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2007-04-07 06:02:33 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_BeginScene(This->WineD3DDevice);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2004-04-27 01:34:17 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI DECLSPEC_HOTPATCH IDirect3DDevice8Impl_EndScene(IDirect3DDevice8 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_EndScene(This->WineD3DDevice);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_Clear(IDirect3DDevice8 *iface, DWORD Count,
|
|
|
|
const D3DRECT *pRects, DWORD Flags, D3DCOLOR Color, float Z, DWORD Stencil)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, rect_count %u, rects %p, flags %#x, color 0x%08x, z %.8e, stencil %u.\n",
|
|
|
|
iface, Count, pRects, Flags, Color, Z, Stencil);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2010-08-30 20:29:47 +02:00
|
|
|
hr = IWineD3DDevice_Clear(This->WineD3DDevice, Count, (const RECT *)pRects, Flags, Color, Z, Stencil);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-05-22 05:35:24 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetTransform(IDirect3DDevice8 *iface,
|
|
|
|
D3DTRANSFORMSTATETYPE State, const D3DMATRIX *lpMatrix)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, state %#x, matrix %p.\n", iface, State, lpMatrix);
|
2003-05-22 05:35:24 +02:00
|
|
|
|
2006-10-12 08:21:39 +02:00
|
|
|
/* Note: D3DMATRIX is compatible with WINED3DMATRIX */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetTransform(This->WineD3DDevice, State, (CONST WINED3DMATRIX*) lpMatrix);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-05-22 05:35:24 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetTransform(IDirect3DDevice8 *iface,
|
|
|
|
D3DTRANSFORMSTATETYPE State, D3DMATRIX *pMatrix)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, state %#x, matrix %p.\n", iface, State, pMatrix);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-12 08:21:39 +02:00
|
|
|
/* Note: D3DMATRIX is compatible with WINED3DMATRIX */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetTransform(This->WineD3DDevice, State, (WINED3DMATRIX*) pMatrix);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_MultiplyTransform(IDirect3DDevice8 *iface,
|
|
|
|
D3DTRANSFORMSTATETYPE State, const D3DMATRIX *pMatrix)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, state %#x, matrix %p.\n", iface, State, pMatrix);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-12 08:21:39 +02:00
|
|
|
/* Note: D3DMATRIX is compatible with WINED3DMATRIX */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_MultiplyTransform(This->WineD3DDevice, State, (CONST WINED3DMATRIX*) pMatrix);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-05-22 05:35:24 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetViewport(IDirect3DDevice8 *iface,
|
|
|
|
const D3DVIEWPORT8 *pViewport)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, viewport %p.\n", iface, pViewport);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-11 03:57:25 +02:00
|
|
|
/* Note: D3DVIEWPORT8 is compatible with WINED3DVIEWPORT */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetViewport(This->WineD3DDevice, (const WINED3DVIEWPORT *)pViewport);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetViewport(IDirect3DDevice8 *iface,
|
|
|
|
D3DVIEWPORT8 *pViewport)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, viewport %p.\n", iface, pViewport);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-11 03:57:25 +02:00
|
|
|
/* Note: D3DVIEWPORT8 is compatible with WINED3DVIEWPORT */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetViewport(This->WineD3DDevice, (WINED3DVIEWPORT *)pViewport);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-05-06 02:19:11 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetMaterial(IDirect3DDevice8 *iface,
|
|
|
|
const D3DMATERIAL8 *pMaterial)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, material %p.\n", iface, pMaterial);
|
2006-10-11 03:56:41 +02:00
|
|
|
|
|
|
|
/* Note: D3DMATERIAL8 is compatible with WINED3DMATERIAL */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetMaterial(This->WineD3DDevice, (const WINED3DMATERIAL *)pMaterial);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetMaterial(IDirect3DDevice8 *iface,
|
|
|
|
D3DMATERIAL8 *pMaterial)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, material %p.\n", iface, pMaterial);
|
2006-10-11 03:56:41 +02:00
|
|
|
|
|
|
|
/* Note: D3DMATERIAL8 is compatible with WINED3DMATERIAL */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetMaterial(This->WineD3DDevice, (WINED3DMATERIAL *)pMaterial);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetLight(IDirect3DDevice8 *iface, DWORD Index,
|
|
|
|
const D3DLIGHT8 *pLight)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, index %u, light %p.\n", iface, Index, pLight);
|
2009-08-31 09:57:52 +02:00
|
|
|
|
2006-10-11 03:55:47 +02:00
|
|
|
/* Note: D3DLIGHT8 is compatible with WINED3DLIGHT */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetLight(This->WineD3DDevice, Index, (const WINED3DLIGHT *)pLight);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetLight(IDirect3DDevice8 *iface, DWORD Index,
|
|
|
|
D3DLIGHT8 *pLight)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, index %u, light %p.\n", iface, Index, pLight);
|
2006-10-11 03:55:47 +02:00
|
|
|
|
|
|
|
/* Note: D3DLIGHT8 is compatible with WINED3DLIGHT */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetLight(This->WineD3DDevice, Index, (WINED3DLIGHT *)pLight);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_LightEnable(IDirect3DDevice8 *iface, DWORD Index,
|
|
|
|
BOOL Enable)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, index %u, enable %#x.\n", iface, Index, Enable);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetLightEnable(This->WineD3DDevice, Index, Enable);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-01-23 23:38:51 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetLightEnable(IDirect3DDevice8 *iface, DWORD Index,
|
|
|
|
BOOL *pEnable)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, index %u, enable %p.\n", iface, Index, pEnable);
|
2003-09-30 02:21:07 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetLightEnable(This->WineD3DDevice, Index, pEnable);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-09-30 02:21:07 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetClipPlane(IDirect3DDevice8 *iface, DWORD Index,
|
|
|
|
const float *pPlane)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, index %u, plane %p.\n", iface, Index, pPlane);
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetClipPlane(This->WineD3DDevice, Index, pPlane);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-01-23 23:38:51 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetClipPlane(IDirect3DDevice8 *iface, DWORD Index,
|
|
|
|
float *pPlane)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, index %u, plane %p.\n", iface, Index, pPlane);
|
2002-12-17 05:14:34 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetClipPlane(This->WineD3DDevice, Index, pPlane);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-01-15 00:12:37 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetRenderState(IDirect3DDevice8 *iface,
|
|
|
|
D3DRENDERSTATETYPE State, DWORD Value)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, state %#x, value %#x.\n", iface, State, Value);
|
2003-01-15 00:12:37 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetRenderState(This->WineD3DDevice, State, Value);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-01-24 01:48:10 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetRenderState(IDirect3DDevice8 *iface,
|
|
|
|
D3DRENDERSTATETYPE State, DWORD *pValue)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, state %#x, value %p.\n", iface, State, pValue);
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetRenderState(This->WineD3DDevice, State, pValue);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_BeginStateBlock(IDirect3DDevice8 *iface)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_BeginStateBlock(This->WineD3DDevice);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_EndStateBlock(IDirect3DDevice8 *iface, DWORD *pToken)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2011-01-28 20:05:41 +01:00
|
|
|
struct wined3d_stateblock *stateblock;
|
2006-02-25 13:15:08 +01:00
|
|
|
HRESULT hr;
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, token %p.\n", iface, pToken);
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2008-03-26 22:23:36 +01:00
|
|
|
/* Tell wineD3D to endstateblock before anything else (in case we run out
|
2006-02-25 13:15:08 +01:00
|
|
|
* of memory later and cause locking problems)
|
|
|
|
*/
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-12-03 11:38:23 +01:00
|
|
|
hr = IWineD3DDevice_EndStateBlock(This->WineD3DDevice , &stateblock);
|
2006-02-25 13:15:08 +01:00
|
|
|
if (hr != D3D_OK) {
|
2008-12-29 16:31:22 +01:00
|
|
|
WARN("IWineD3DDevice_EndStateBlock returned an error\n");
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-01-17 15:58:43 +01:00
|
|
|
}
|
2006-01-23 11:26:25 +01:00
|
|
|
|
2009-12-03 11:38:23 +01:00
|
|
|
*pToken = d3d8_allocate_handle(&This->handle_table, stateblock, D3D8_HANDLE_SB);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-10 09:48:49 +01:00
|
|
|
|
|
|
|
if (*pToken == D3D8_INVALID_HANDLE)
|
|
|
|
{
|
|
|
|
ERR("Failed to create a handle\n");
|
2009-12-03 11:38:23 +01:00
|
|
|
wined3d_mutex_lock();
|
2011-01-28 20:05:41 +01:00
|
|
|
wined3d_stateblock_decref(stateblock);
|
2009-12-03 11:38:23 +01:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-10 09:48:49 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
++*pToken;
|
|
|
|
|
2009-12-03 11:38:23 +01:00
|
|
|
TRACE("Returning %#x (%p).\n", *pToken, stateblock);
|
2009-03-10 09:48:49 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_ApplyStateBlock(IDirect3DDevice8 *iface, DWORD Token)
|
|
|
|
{
|
2011-01-28 20:05:41 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
|
|
|
struct wined3d_stateblock *stateblock;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, token %#x.\n", iface, Token);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2010-10-24 13:21:06 +02:00
|
|
|
if (!Token) return D3D_OK;
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-12-03 11:38:23 +01:00
|
|
|
stateblock = d3d8_get_object(&This->handle_table, Token - 1, D3D8_HANDLE_SB);
|
|
|
|
if (!stateblock)
|
2009-03-10 09:48:49 +01:00
|
|
|
{
|
|
|
|
WARN("Invalid handle (%#x) passed.\n", Token);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-10 09:48:49 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2011-01-28 20:05:41 +01:00
|
|
|
hr = wined3d_stateblock_apply(stateblock);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CaptureStateBlock(IDirect3DDevice8 *iface, DWORD Token)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2011-01-28 20:05:41 +01:00
|
|
|
struct wined3d_stateblock *stateblock;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, token %#x.\n", iface, Token);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-12-03 11:38:23 +01:00
|
|
|
stateblock = d3d8_get_object(&This->handle_table, Token - 1, D3D8_HANDLE_SB);
|
|
|
|
if (!stateblock)
|
2009-03-10 09:48:49 +01:00
|
|
|
{
|
|
|
|
WARN("Invalid handle (%#x) passed.\n", Token);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-10 09:48:49 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2011-01-28 20:05:41 +01:00
|
|
|
hr = wined3d_stateblock_capture(stateblock);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DeleteStateBlock(IDirect3DDevice8 *iface, DWORD Token)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2011-01-28 20:05:41 +01:00
|
|
|
struct wined3d_stateblock *stateblock;
|
2002-10-07 20:24:28 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, token %#x.\n", iface, Token);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-12-03 11:38:23 +01:00
|
|
|
stateblock = d3d8_free_handle(&This->handle_table, Token - 1, D3D8_HANDLE_SB);
|
2009-03-10 09:48:49 +01:00
|
|
|
|
2009-12-03 11:38:23 +01:00
|
|
|
if (!stateblock)
|
2009-03-10 09:48:49 +01:00
|
|
|
{
|
|
|
|
WARN("Invalid handle (%#x) passed.\n", Token);
|
2009-12-03 11:38:23 +01:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-10 09:48:49 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2009-03-10 09:19:05 +01:00
|
|
|
|
2011-01-28 20:05:41 +01:00
|
|
|
if (wined3d_stateblock_decref(stateblock))
|
2009-03-10 09:19:05 +01:00
|
|
|
{
|
2009-12-03 11:38:23 +01:00
|
|
|
ERR("Stateblock %p has references left, this shouldn't happen.\n", stateblock);
|
2009-03-10 09:19:05 +01:00
|
|
|
}
|
2009-12-03 11:38:23 +01:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-10 09:19:05 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return D3D_OK;
|
2003-01-28 02:12:23 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-03-10 09:48:49 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateStateBlock(IDirect3DDevice8 *iface,
|
|
|
|
D3DSTATEBLOCKTYPE Type, DWORD *handle)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2011-01-28 20:05:41 +01:00
|
|
|
struct wined3d_stateblock *stateblock;
|
2009-03-10 09:48:49 +01:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, type %#x, handle %p.\n", iface, Type, handle);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-03-10 09:48:49 +01:00
|
|
|
if (Type != D3DSBT_ALL
|
|
|
|
&& Type != D3DSBT_PIXELSTATE
|
|
|
|
&& Type != D3DSBT_VERTEXSTATE)
|
|
|
|
{
|
|
|
|
WARN("Unexpected stateblock type, returning D3DERR_INVALIDCALL\n");
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2007-08-03 22:48:42 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2010-07-30 10:15:25 +02:00
|
|
|
hr = IWineD3DDevice_CreateStateBlock(This->WineD3DDevice, (WINED3DSTATEBLOCKTYPE)Type, &stateblock);
|
2009-03-10 09:48:49 +01:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-10 09:48:49 +01:00
|
|
|
ERR("IWineD3DDevice_CreateStateBlock failed, hr %#x\n", hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2009-12-03 11:38:23 +01:00
|
|
|
*handle = d3d8_allocate_handle(&This->handle_table, stateblock, D3D8_HANDLE_SB);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-10 09:48:49 +01:00
|
|
|
|
|
|
|
if (*handle == D3D8_INVALID_HANDLE)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate a handle.\n");
|
2009-12-03 11:38:23 +01:00
|
|
|
wined3d_mutex_lock();
|
2011-01-28 20:05:41 +01:00
|
|
|
wined3d_stateblock_decref(stateblock);
|
2009-12-03 11:38:23 +01:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-10 09:48:49 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
++*handle;
|
|
|
|
|
2009-12-03 11:38:23 +01:00
|
|
|
TRACE("Returning %#x (%p).\n", *handle, stateblock);
|
2009-03-10 09:48:49 +01:00
|
|
|
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetClipStatus(IDirect3DDevice8 *iface,
|
|
|
|
const D3DCLIPSTATUS8 *pClipStatus)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, clip_status %p.\n", iface, pClipStatus);
|
2006-02-25 13:15:08 +01:00
|
|
|
/* FIXME: Verify that D3DCLIPSTATUS8 ~= WINED3DCLIPSTATUS */
|
2009-08-25 08:17:14 +02:00
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetClipStatus(This->WineD3DDevice, (const WINED3DCLIPSTATUS *)pClipStatus);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetClipStatus(IDirect3DDevice8 *iface,
|
|
|
|
D3DCLIPSTATUS8 *pClipStatus)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, clip_status %p.\n", iface, pClipStatus);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetClipStatus(This->WineD3DDevice, (WINED3DCLIPSTATUS *)pClipStatus);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetTexture(IDirect3DDevice8 *iface,
|
|
|
|
DWORD Stage, IDirect3DBaseTexture8 **ppTexture)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-09-25 13:31:47 +02:00
|
|
|
IWineD3DBaseTexture *retTexture;
|
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, stage %u, texture %p.\n", iface, Stage, ppTexture);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if(ppTexture == NULL){
|
2003-05-08 05:49:04 +02:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-09-25 13:31:47 +02:00
|
|
|
hr = IWineD3DDevice_GetTexture(This->WineD3DDevice, Stage, &retTexture);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to get texture for stage %u, hr %#x.\n", Stage, hr);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
*ppTexture = NULL;
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (retTexture)
|
|
|
|
{
|
2010-08-31 18:41:40 +02:00
|
|
|
*ppTexture = IWineD3DBaseTexture_GetParent(retTexture);
|
|
|
|
IDirect3DBaseTexture8_AddRef(*ppTexture);
|
2006-11-30 13:33:29 +01:00
|
|
|
IWineD3DBaseTexture_Release(retTexture);
|
2009-09-25 13:31:47 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-02-25 13:15:08 +01:00
|
|
|
*ppTexture = NULL;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2002-10-28 20:00:23 +01:00
|
|
|
|
2009-09-25 13:31:47 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetTexture(IDirect3DDevice8 *iface, DWORD Stage,
|
|
|
|
IDirect3DBaseTexture8 *pTexture)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, stage %u, texture %p.\n", iface, Stage, pTexture);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetTexture(This->WineD3DDevice, Stage,
|
|
|
|
pTexture==NULL ? NULL : ((IDirect3DBaseTexture8Impl *)pTexture)->wineD3DBaseTexture);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2009-01-06 11:43:45 +01:00
|
|
|
static const struct tss_lookup
|
|
|
|
{
|
|
|
|
BOOL sampler_state;
|
|
|
|
DWORD state;
|
|
|
|
}
|
|
|
|
tss_lookup[] =
|
|
|
|
{
|
|
|
|
{FALSE, WINED3DTSS_FORCE_DWORD}, /* 0, unused */
|
|
|
|
{FALSE, WINED3DTSS_COLOROP}, /* 1, D3DTSS_COLOROP */
|
|
|
|
{FALSE, WINED3DTSS_COLORARG1}, /* 2, D3DTSS_COLORARG1 */
|
|
|
|
{FALSE, WINED3DTSS_COLORARG2}, /* 3, D3DTSS_COLORARG2 */
|
|
|
|
{FALSE, WINED3DTSS_ALPHAOP}, /* 4, D3DTSS_ALPHAOP */
|
|
|
|
{FALSE, WINED3DTSS_ALPHAARG1}, /* 5, D3DTSS_ALPHAARG1 */
|
|
|
|
{FALSE, WINED3DTSS_ALPHAARG2}, /* 6, D3DTSS_ALPHAARG2 */
|
|
|
|
{FALSE, WINED3DTSS_BUMPENVMAT00}, /* 7, D3DTSS_BUMPENVMAT00 */
|
|
|
|
{FALSE, WINED3DTSS_BUMPENVMAT01}, /* 8, D3DTSS_BUMPENVMAT01 */
|
|
|
|
{FALSE, WINED3DTSS_BUMPENVMAT10}, /* 9, D3DTSS_BUMPENVMAT10 */
|
|
|
|
{FALSE, WINED3DTSS_BUMPENVMAT11}, /* 10, D3DTSS_BUMPENVMAT11 */
|
|
|
|
{FALSE, WINED3DTSS_TEXCOORDINDEX}, /* 11, D3DTSS_TEXCOORDINDEX */
|
|
|
|
{FALSE, WINED3DTSS_FORCE_DWORD}, /* 12, unused */
|
|
|
|
{TRUE, WINED3DSAMP_ADDRESSU}, /* 13, D3DTSS_ADDRESSU */
|
|
|
|
{TRUE, WINED3DSAMP_ADDRESSV}, /* 14, D3DTSS_ADDRESSV */
|
|
|
|
{TRUE, WINED3DSAMP_BORDERCOLOR}, /* 15, D3DTSS_BORDERCOLOR */
|
|
|
|
{TRUE, WINED3DSAMP_MAGFILTER}, /* 16, D3DTSS_MAGFILTER */
|
|
|
|
{TRUE, WINED3DSAMP_MINFILTER}, /* 17, D3DTSS_MINFILTER */
|
|
|
|
{TRUE, WINED3DSAMP_MIPFILTER}, /* 18, D3DTSS_MIPFILTER */
|
|
|
|
{TRUE, WINED3DSAMP_MIPMAPLODBIAS}, /* 19, D3DTSS_MIPMAPLODBIAS */
|
|
|
|
{TRUE, WINED3DSAMP_MAXMIPLEVEL}, /* 20, D3DTSS_MAXMIPLEVEL */
|
|
|
|
{TRUE, WINED3DSAMP_MAXANISOTROPY}, /* 21, D3DTSS_MAXANISOTROPY */
|
|
|
|
{FALSE, WINED3DTSS_BUMPENVLSCALE}, /* 22, D3DTSS_BUMPENVLSCALE */
|
|
|
|
{FALSE, WINED3DTSS_BUMPENVLOFFSET}, /* 23, D3DTSS_BUMPENVLOFFSET */
|
|
|
|
{FALSE, WINED3DTSS_TEXTURETRANSFORMFLAGS}, /* 24, D3DTSS_TEXTURETRANSFORMFLAGS */
|
|
|
|
{TRUE, WINED3DSAMP_ADDRESSW}, /* 25, D3DTSS_ADDRESSW */
|
|
|
|
{FALSE, WINED3DTSS_COLORARG0}, /* 26, D3DTSS_COLORARG0 */
|
|
|
|
{FALSE, WINED3DTSS_ALPHAARG0}, /* 27, D3DTSS_ALPHAARG0 */
|
|
|
|
{FALSE, WINED3DTSS_RESULTARG}, /* 28, D3DTSS_RESULTARG */
|
|
|
|
};
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetTextureStageState(IDirect3DDevice8 *iface,
|
|
|
|
DWORD Stage, D3DTEXTURESTAGESTATETYPE Type, DWORD *pValue)
|
2010-09-12 10:34:20 +02:00
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2010-09-12 10:34:20 +02:00
|
|
|
const struct tss_lookup *l;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, stage %u, state %#x, value %p.\n", iface, Stage, Type, pValue);
|
2003-01-03 22:28:05 +01:00
|
|
|
|
2010-09-12 10:34:20 +02:00
|
|
|
if (Type >= sizeof(tss_lookup) / sizeof(*tss_lookup))
|
|
|
|
{
|
|
|
|
WARN("Invalid Type %#x passed.\n", Type);
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
l = &tss_lookup[Type];
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-01-06 11:43:45 +01:00
|
|
|
if (l->sampler_state) hr = IWineD3DDevice_GetSamplerState(This->WineD3DDevice, Stage, l->state, pValue);
|
|
|
|
else hr = IWineD3DDevice_GetTextureStageState(This->WineD3DDevice, Stage, l->state, pValue);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-01-06 11:43:45 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2004-04-29 02:20:18 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetTextureStageState(IDirect3DDevice8 *iface,
|
|
|
|
DWORD Stage, D3DTEXTURESTAGESTATETYPE Type, DWORD Value)
|
2010-09-12 10:34:20 +02:00
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2010-09-12 10:34:20 +02:00
|
|
|
const struct tss_lookup *l;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, stage %u, state %#x, value %#x.\n", iface, Stage, Type, Value);
|
2004-04-29 02:20:18 +02:00
|
|
|
|
2010-09-12 10:34:20 +02:00
|
|
|
if (Type >= sizeof(tss_lookup) / sizeof(*tss_lookup))
|
|
|
|
{
|
|
|
|
WARN("Invalid Type %#x passed.\n", Type);
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
l = &tss_lookup[Type];
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-01-06 11:43:45 +01:00
|
|
|
if (l->sampler_state) hr = IWineD3DDevice_SetSamplerState(This->WineD3DDevice, Stage, l->state, Value);
|
|
|
|
else hr = IWineD3DDevice_SetTextureStageState(This->WineD3DDevice, Stage, l->state, Value);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-01-06 11:43:45 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_ValidateDevice(IDirect3DDevice8 *iface,
|
|
|
|
DWORD *pNumPasses)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, pass_count %p.\n", iface, pNumPasses);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_ValidateDevice(This->WineD3DDevice, pNumPasses);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetInfo(IDirect3DDevice8 *iface,
|
|
|
|
DWORD info_id, void *info, DWORD info_size)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, info_id %#x, info %p, info_size %u stub!\n", iface, info_id, info, info_size);
|
|
|
|
|
2003-05-17 20:33:02 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetPaletteEntries(IDirect3DDevice8 *iface,
|
|
|
|
UINT PaletteNumber, const PALETTEENTRY *pEntries)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, palette_idx %u, entries %p.\n", iface, PaletteNumber, pEntries);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetPaletteEntries(This->WineD3DDevice, PaletteNumber, pEntries);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetPaletteEntries(IDirect3DDevice8 *iface,
|
|
|
|
UINT PaletteNumber, PALETTEENTRY *pEntries)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, palette_idx %u, entries %p.\n", iface, PaletteNumber, pEntries);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetPaletteEntries(This->WineD3DDevice, PaletteNumber, pEntries);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetCurrentTexturePalette(IDirect3DDevice8 *iface,
|
|
|
|
UINT PaletteNumber)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, palette_idx %u.\n", iface, PaletteNumber);
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetCurrentTexturePalette(This->WineD3DDevice, PaletteNumber);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetCurrentTexturePalette(IDirect3DDevice8 *iface,
|
|
|
|
UINT *PaletteNumber)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, palette_idx %p.\n", iface, PaletteNumber);
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_GetCurrentTexturePalette(This->WineD3DDevice, PaletteNumber);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawPrimitive(IDirect3DDevice8 *iface,
|
|
|
|
D3DPRIMITIVETYPE PrimitiveType, UINT StartVertex, UINT PrimitiveCount)
|
2009-08-31 09:57:52 +02:00
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, primitive_type %#x, start_vertex %u, primitive_count %u.\n",
|
|
|
|
iface, PrimitiveType, StartVertex, PrimitiveCount);
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-03-05 12:30:43 +01:00
|
|
|
IWineD3DDevice_SetPrimitiveType(This->WineD3DDevice, PrimitiveType);
|
|
|
|
hr = IWineD3DDevice_DrawPrimitive(This->WineD3DDevice, StartVertex,
|
2009-03-05 12:30:42 +01:00
|
|
|
vertex_count_from_primitive_count(PrimitiveType, PrimitiveCount));
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawIndexedPrimitive(IDirect3DDevice8 *iface,
|
|
|
|
D3DPRIMITIVETYPE PrimitiveType, UINT MinVertexIndex, UINT NumVertices, UINT startIndex,
|
|
|
|
UINT primCount)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, primitive_type %#x, min_vertex_idx %u, vertex_count %u, start_idx %u, primitive_count %u.\n",
|
|
|
|
iface, PrimitiveType, MinVertexIndex, NumVertices, startIndex, primCount);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-03-05 12:30:43 +01:00
|
|
|
IWineD3DDevice_SetPrimitiveType(This->WineD3DDevice, PrimitiveType);
|
2009-09-10 16:57:16 +02:00
|
|
|
hr = IWineD3DDevice_DrawIndexedPrimitive(This->WineD3DDevice, startIndex,
|
|
|
|
vertex_count_from_primitive_count(PrimitiveType, primCount));
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawPrimitiveUP(IDirect3DDevice8 *iface,
|
|
|
|
D3DPRIMITIVETYPE PrimitiveType, UINT PrimitiveCount, const void *pVertexStreamZeroData,
|
|
|
|
UINT VertexStreamZeroStride)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, primitive_type %#x, primitive_count %u, data %p, stride %u.\n",
|
|
|
|
iface, PrimitiveType, PrimitiveCount, pVertexStreamZeroData, VertexStreamZeroStride);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-03-05 12:30:43 +01:00
|
|
|
IWineD3DDevice_SetPrimitiveType(This->WineD3DDevice, PrimitiveType);
|
|
|
|
hr = IWineD3DDevice_DrawPrimitiveUP(This->WineD3DDevice,
|
2009-03-05 12:30:42 +01:00
|
|
|
vertex_count_from_primitive_count(PrimitiveType, PrimitiveCount),
|
|
|
|
pVertexStreamZeroData, VertexStreamZeroStride);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawIndexedPrimitiveUP(IDirect3DDevice8 *iface,
|
|
|
|
D3DPRIMITIVETYPE PrimitiveType, UINT MinVertexIndex, UINT NumVertexIndices,
|
|
|
|
UINT PrimitiveCount, const void *pIndexData, D3DFORMAT IndexDataFormat,
|
|
|
|
const void *pVertexStreamZeroData, UINT VertexStreamZeroStride)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, primitive_type %#x, min_vertex_idx %u, index_count %u, primitive_count %u,\n"
|
|
|
|
"index_data %p, index_format %#x, vertex_data %p, vertex_stride %u.\n",
|
|
|
|
iface, PrimitiveType, MinVertexIndex, NumVertexIndices, PrimitiveCount,
|
|
|
|
pIndexData, IndexDataFormat, pVertexStreamZeroData, VertexStreamZeroStride);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-03-05 12:30:43 +01:00
|
|
|
IWineD3DDevice_SetPrimitiveType(This->WineD3DDevice, PrimitiveType);
|
2009-09-10 16:57:16 +02:00
|
|
|
hr = IWineD3DDevice_DrawIndexedPrimitiveUP(This->WineD3DDevice,
|
2009-03-05 12:30:43 +01:00
|
|
|
vertex_count_from_primitive_count(PrimitiveType, PrimitiveCount), pIndexData,
|
2009-03-05 12:30:42 +01:00
|
|
|
wined3dformat_from_d3dformat(IndexDataFormat), pVertexStreamZeroData, VertexStreamZeroStride);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_ProcessVertices(IDirect3DDevice8 *iface,
|
|
|
|
UINT SrcStartIndex, UINT DestIndex, UINT VertexCount, IDirect3DVertexBuffer8 *pDestBuffer,
|
|
|
|
DWORD Flags)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-04-06 14:16:59 +02:00
|
|
|
IDirect3DVertexBuffer8Impl *dest = (IDirect3DVertexBuffer8Impl *) pDestBuffer;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, src_start_idx %u, dst_idx %u, vertex_count %u, dst_buffer %p, flags %#x.\n",
|
|
|
|
iface, SrcStartIndex, DestIndex, VertexCount, pDestBuffer, Flags);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 14:16:59 +02:00
|
|
|
hr = IWineD3DDevice_ProcessVertices(This->WineD3DDevice,SrcStartIndex, DestIndex, VertexCount, dest->wineD3DVertexBuffer, NULL, Flags, dest->fvf);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-09-23 18:42:07 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateVertexShader(IDirect3DDevice8 *iface,
|
|
|
|
const DWORD *declaration, const DWORD *byte_code, DWORD *shader, DWORD usage)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DVertexShader8Impl *object;
|
2009-09-23 18:42:07 +02:00
|
|
|
DWORD shader_handle;
|
2009-03-10 09:19:06 +01:00
|
|
|
DWORD handle;
|
2009-09-23 18:42:07 +02:00
|
|
|
HRESULT hr;
|
2008-03-27 20:11:36 +01:00
|
|
|
|
2009-09-23 18:42:07 +02:00
|
|
|
TRACE("iface %p, declaration %p, byte_code %p, shader %p, usage %#x.\n",
|
|
|
|
iface, declaration, byte_code, shader, usage);
|
2008-03-27 20:11:36 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
2009-09-23 18:42:07 +02:00
|
|
|
if (!object)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate vertex shader memory.\n");
|
|
|
|
*shader = 0;
|
|
|
|
return E_OUTOFMEMORY;
|
2007-02-13 23:12:24 +01:00
|
|
|
}
|
2008-12-15 12:10:15 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-06-16 09:38:25 +02:00
|
|
|
handle = d3d8_allocate_handle(&This->handle_table, object, D3D8_HANDLE_VS);
|
2009-09-23 18:42:07 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-10 09:19:06 +01:00
|
|
|
if (handle == D3D8_INVALID_HANDLE)
|
2008-12-15 12:10:15 +01:00
|
|
|
{
|
2009-09-23 18:42:07 +02:00
|
|
|
ERR("Failed to allocate vertex shader handle.\n");
|
2008-12-15 12:10:15 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
2009-09-23 18:42:07 +02:00
|
|
|
*shader = 0;
|
2008-12-15 12:10:15 +01:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-09-23 18:42:07 +02:00
|
|
|
shader_handle = handle + VS_HIGHESTFIXEDFXF + 1;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-09-23 18:42:07 +02:00
|
|
|
hr = vertexshader_init(object, This, declaration, byte_code, shader_handle, usage);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize vertex shader, hr %#x.\n", hr);
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
d3d8_free_handle(&This->handle_table, handle, D3D8_HANDLE_VS);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*shader = 0;
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2008-12-15 16:35:13 +01:00
|
|
|
|
2009-09-23 18:42:07 +02:00
|
|
|
TRACE("Created vertex shader %p (handle %#x).\n", object, shader_handle);
|
|
|
|
*shader = shader_handle;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-09-23 18:42:07 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2008-12-15 12:10:15 +01:00
|
|
|
static IDirect3DVertexDeclaration8Impl *IDirect3DDevice8Impl_FindDecl(IDirect3DDevice8Impl *This, DWORD fvf)
|
2007-06-19 22:20:26 +02:00
|
|
|
{
|
2008-12-15 12:10:15 +01:00
|
|
|
IDirect3DVertexDeclaration8Impl *d3d8_declaration;
|
2007-06-19 22:20:26 +02:00
|
|
|
HRESULT hr;
|
|
|
|
int p, low, high; /* deliberately signed */
|
|
|
|
struct FvfToDecl *convertedDecls = This->decls;
|
|
|
|
|
|
|
|
TRACE("Searching for declaration for fvf %08x... ", fvf);
|
|
|
|
|
|
|
|
low = 0;
|
|
|
|
high = This->numConvertedDecls - 1;
|
|
|
|
while(low <= high) {
|
|
|
|
p = (low + high) >> 1;
|
|
|
|
TRACE("%d ", p);
|
|
|
|
if(convertedDecls[p].fvf == fvf) {
|
|
|
|
TRACE("found %p\n", convertedDecls[p].decl);
|
2008-12-15 12:10:15 +01:00
|
|
|
return (IDirect3DVertexDeclaration8Impl *)convertedDecls[p].decl;
|
2007-06-19 22:20:26 +02:00
|
|
|
} else if(convertedDecls[p].fvf < fvf) {
|
|
|
|
low = p + 1;
|
|
|
|
} else {
|
|
|
|
high = p - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TRACE("not found. Creating and inserting at position %d.\n", low);
|
|
|
|
|
2008-12-15 12:10:15 +01:00
|
|
|
d3d8_declaration = HeapAlloc(GetProcessHeap(), 0, sizeof(*d3d8_declaration));
|
|
|
|
if (!d3d8_declaration)
|
|
|
|
{
|
|
|
|
ERR("Memory allocation failed.\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-09-23 10:05:51 +02:00
|
|
|
hr = vertexdeclaration_init_fvf(d3d8_declaration, This, fvf);
|
2008-12-15 12:10:15 +01:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
2009-09-23 10:05:51 +02:00
|
|
|
WARN("Failed to initialize vertex declaration, hr %#x.\n", hr);
|
2008-12-15 12:10:15 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, d3d8_declaration);
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-06-19 22:20:26 +02:00
|
|
|
|
|
|
|
if(This->declArraySize == This->numConvertedDecls) {
|
|
|
|
int grow = This->declArraySize / 2;
|
|
|
|
convertedDecls = HeapReAlloc(GetProcessHeap(), 0, convertedDecls,
|
|
|
|
sizeof(convertedDecls[0]) * (This->numConvertedDecls + grow));
|
|
|
|
if(!convertedDecls) {
|
|
|
|
/* This will destroy it */
|
2008-12-15 12:10:15 +01:00
|
|
|
IDirect3DVertexDeclaration8_Release((IDirect3DVertexDeclaration8 *)d3d8_declaration);
|
2007-06-19 22:20:26 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
This->decls = convertedDecls;
|
|
|
|
This->declArraySize += grow;
|
|
|
|
}
|
|
|
|
|
|
|
|
memmove(convertedDecls + low + 1, convertedDecls + low, sizeof(convertedDecls[0]) * (This->numConvertedDecls - low));
|
2008-12-15 12:10:15 +01:00
|
|
|
convertedDecls[low].decl = (IDirect3DVertexDeclaration8 *)d3d8_declaration;
|
2007-06-19 22:20:26 +02:00
|
|
|
convertedDecls[low].fvf = fvf;
|
|
|
|
This->numConvertedDecls++;
|
|
|
|
|
2008-12-15 12:10:15 +01:00
|
|
|
TRACE("Returning %p. %u decls in array\n", d3d8_declaration, This->numConvertedDecls);
|
|
|
|
return d3d8_declaration;
|
2007-06-19 22:20:26 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetVertexShader(IDirect3DDevice8 *iface, DWORD pShader)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-03-24 10:09:22 +01:00
|
|
|
IDirect3DVertexShader8Impl *shader;
|
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, shader %#x.\n", iface, pShader);
|
2009-03-24 10:09:22 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (VS_HIGHESTFIXEDFXF >= pShader) {
|
2008-12-16 16:37:36 +01:00
|
|
|
TRACE("Setting FVF, %#x\n", pShader);
|
2009-03-24 10:09:22 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2008-12-15 12:10:15 +01:00
|
|
|
IWineD3DDevice_SetVertexDeclaration(This->WineD3DDevice,
|
|
|
|
IDirect3DDevice8Impl_FindDecl(This, pShader)->wined3d_vertex_declaration);
|
2006-03-16 22:42:00 +01:00
|
|
|
IWineD3DDevice_SetVertexShader(This->WineD3DDevice, NULL);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2009-03-24 10:09:22 +01:00
|
|
|
return D3D_OK;
|
|
|
|
}
|
2009-03-10 09:19:06 +01:00
|
|
|
|
2009-03-24 10:09:22 +01:00
|
|
|
TRACE("Setting shader\n");
|
2008-12-15 16:35:13 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-06-16 09:38:25 +02:00
|
|
|
shader = d3d8_get_object(&This->handle_table, pShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS);
|
2009-03-24 10:09:22 +01:00
|
|
|
if (!shader)
|
|
|
|
{
|
|
|
|
WARN("Invalid handle (%#x) passed.\n", pShader);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2009-03-24 10:09:22 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2009-03-24 10:09:22 +01:00
|
|
|
|
|
|
|
hr = IWineD3DDevice_SetVertexDeclaration(This->WineD3DDevice,
|
|
|
|
((IDirect3DVertexDeclaration8Impl *)shader->vertex_declaration)->wined3d_vertex_declaration);
|
|
|
|
if (SUCCEEDED(hr)) hr = IWineD3DDevice_SetVertexShader(This->WineD3DDevice, shader->wineD3DVertexShader);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-03-24 10:09:22 +01:00
|
|
|
TRACE("Returning hr %#x\n", hr);
|
|
|
|
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShader(IDirect3DDevice8 *iface, DWORD *ppShader)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2011-02-02 20:22:50 +01:00
|
|
|
struct wined3d_vertex_declaration *wined3d_declaration;
|
2009-03-24 10:09:22 +01:00
|
|
|
IDirect3DVertexDeclaration8 *d3d8_declaration;
|
2010-08-31 18:41:40 +02:00
|
|
|
HRESULT hr;
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, shader %p.\n", iface, ppShader);
|
2008-12-15 12:10:15 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2010-08-31 18:41:40 +02:00
|
|
|
hr = IWineD3DDevice_GetVertexDeclaration(This->WineD3DDevice, &wined3d_declaration);
|
|
|
|
if (FAILED(hr))
|
2008-12-15 12:10:15 +01:00
|
|
|
{
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2008-12-15 12:10:15 +01:00
|
|
|
WARN("(%p) : Call to IWineD3DDevice_GetVertexDeclaration failed %#x (device %p)\n",
|
2010-08-31 18:41:40 +02:00
|
|
|
This, hr, This->WineD3DDevice);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2009-03-24 10:09:22 +01:00
|
|
|
|
|
|
|
if (!wined3d_declaration)
|
|
|
|
{
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-24 10:09:22 +01:00
|
|
|
*ppShader = 0;
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
2011-02-02 20:22:50 +01:00
|
|
|
d3d8_declaration = wined3d_vertex_declaration_get_parent(wined3d_declaration);
|
|
|
|
wined3d_vertex_declaration_decref(wined3d_declaration);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2010-08-31 18:41:40 +02:00
|
|
|
*ppShader = ((IDirect3DVertexDeclaration8Impl *)d3d8_declaration)->shader_handle;
|
2009-03-24 10:09:22 +01:00
|
|
|
|
|
|
|
TRACE("(%p) : returning %#x\n", This, *ppShader);
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DeleteVertexShader(IDirect3DDevice8 *iface,
|
|
|
|
DWORD pShader)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-03-10 09:19:06 +01:00
|
|
|
IDirect3DVertexShader8Impl *shader;
|
2010-09-06 22:18:55 +02:00
|
|
|
IWineD3DVertexShader *cur;
|
2006-08-27 22:07:09 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, shader %#x.\n", iface, pShader);
|
2006-08-27 22:07:09 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-06-16 09:38:25 +02:00
|
|
|
shader = d3d8_free_handle(&This->handle_table, pShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS);
|
2009-03-10 09:19:06 +01:00
|
|
|
if (!shader)
|
|
|
|
{
|
|
|
|
WARN("Invalid handle (%#x) passed.\n", pShader);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2006-08-27 22:07:09 +02:00
|
|
|
return D3DERR_INVALIDCALL;
|
2009-03-24 10:09:22 +01:00
|
|
|
}
|
2007-02-12 19:21:45 +01:00
|
|
|
|
2010-09-06 22:18:55 +02:00
|
|
|
cur = IWineD3DDevice_GetVertexShader(This->WineD3DDevice);
|
2009-03-24 10:09:22 +01:00
|
|
|
if (cur)
|
|
|
|
{
|
|
|
|
if (cur == shader->wineD3DVertexShader) IDirect3DDevice8_SetVertexShader(iface, 0);
|
|
|
|
IWineD3DVertexShader_Release(cur);
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2009-03-24 10:09:22 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-03-14 23:29:09 +01:00
|
|
|
if (IDirect3DVertexShader8_Release(&shader->IDirect3DVertexShader8_iface))
|
2009-03-24 10:09:22 +01:00
|
|
|
{
|
|
|
|
ERR("Shader %p has references left, this shouldn't happen.\n", shader);
|
|
|
|
}
|
|
|
|
|
2006-08-27 22:07:09 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetVertexShaderConstant(IDirect3DDevice8 *iface,
|
|
|
|
DWORD Register, const void *pConstantData, DWORD ConstantCount)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, register %u, data %p, count %u.\n",
|
|
|
|
iface, Register, pConstantData, ConstantCount);
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2009-04-25 15:02:42 +02:00
|
|
|
if(Register + ConstantCount > D3D8_MAX_VERTEX_SHADER_CONSTANTF) {
|
|
|
|
WARN("Trying to access %u constants, but d3d8 only supports %u\n",
|
|
|
|
Register + ConstantCount, D3D8_MAX_VERTEX_SHADER_CONSTANTF);
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-01-14 09:51:52 +01:00
|
|
|
hr = IWineD3DDevice_SetVertexShaderConstantF(This->WineD3DDevice, Register, pConstantData, ConstantCount);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShaderConstant(IDirect3DDevice8 *iface,
|
|
|
|
DWORD Register, void *pConstantData, DWORD ConstantCount)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, register %u, data %p, count %u.\n",
|
|
|
|
iface, Register, pConstantData, ConstantCount);
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2009-04-25 15:02:42 +02:00
|
|
|
if(Register + ConstantCount > D3D8_MAX_VERTEX_SHADER_CONSTANTF) {
|
|
|
|
WARN("Trying to access %u constants, but d3d8 only supports %u\n",
|
|
|
|
Register + ConstantCount, D3D8_MAX_VERTEX_SHADER_CONSTANTF);
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-01-14 09:51:52 +01:00
|
|
|
hr = IWineD3DDevice_GetVertexShaderConstantF(This->WineD3DDevice, Register, pConstantData, ConstantCount);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShaderDeclaration(IDirect3DDevice8 *iface,
|
|
|
|
DWORD pVertexShader, void *pData, DWORD *pSizeOfData)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-03-08 01:15:57 +01:00
|
|
|
IDirect3DVertexDeclaration8Impl *declaration;
|
2009-03-10 09:19:06 +01:00
|
|
|
IDirect3DVertexShader8Impl *shader;
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, shader %#x, data %p, data_size %p.\n",
|
|
|
|
iface, pVertexShader, pData, pSizeOfData);
|
2007-01-06 18:04:01 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-06-16 09:38:25 +02:00
|
|
|
shader = d3d8_get_object(&This->handle_table, pVertexShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2009-03-10 09:19:06 +01:00
|
|
|
if (!shader)
|
|
|
|
{
|
|
|
|
WARN("Invalid handle (%#x) passed.\n", pVertexShader);
|
2007-01-06 18:04:01 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2007-03-08 01:15:57 +01:00
|
|
|
declaration = (IDirect3DVertexDeclaration8Impl *)shader->vertex_declaration;
|
|
|
|
|
|
|
|
/* If pData is NULL, we just return the required size of the buffer. */
|
|
|
|
if (!pData) {
|
|
|
|
*pSizeOfData = declaration->elements_size;
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* MSDN claims that if *pSizeOfData is smaller than the required size
|
|
|
|
* we should write the required size and return D3DERR_MOREDATA.
|
|
|
|
* That's not actually true. */
|
|
|
|
if (*pSizeOfData < declaration->elements_size) {
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
CopyMemory(pData, declaration->elements, declaration->elements_size);
|
|
|
|
|
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2007-01-06 18:04:01 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShaderFunction(IDirect3DDevice8 *iface,
|
|
|
|
DWORD pVertexShader, void *pData, DWORD *pSizeOfData)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-01-06 18:03:54 +01:00
|
|
|
IDirect3DVertexShader8Impl *shader = NULL;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, shader %#x, data %p, data_size %p.\n",
|
|
|
|
iface, pVertexShader, pData, pSizeOfData);
|
2007-01-06 18:03:54 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-06-16 09:38:25 +02:00
|
|
|
shader = d3d8_get_object(&This->handle_table, pVertexShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS);
|
2009-03-10 09:19:06 +01:00
|
|
|
if (!shader)
|
|
|
|
{
|
|
|
|
WARN("Invalid handle (%#x) passed.\n", pVertexShader);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-01-06 18:03:54 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2009-03-24 10:09:22 +01:00
|
|
|
if (!shader->wineD3DVertexShader)
|
2008-12-15 16:35:13 +01:00
|
|
|
{
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2008-12-15 16:35:13 +01:00
|
|
|
*pSizeOfData = 0;
|
2009-03-24 10:09:22 +01:00
|
|
|
return D3D_OK;
|
2008-12-15 16:35:13 +01:00
|
|
|
}
|
|
|
|
|
2009-03-24 10:09:22 +01:00
|
|
|
hr = IWineD3DVertexShader_GetFunction(shader->wineD3DVertexShader, pData, pSizeOfData);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-24 10:09:22 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetIndices(IDirect3DDevice8 *iface,
|
|
|
|
IDirect3DIndexBuffer8 *pIndexData, UINT baseVertexIndex)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-04-09 10:50:31 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *ib = (IDirect3DIndexBuffer8Impl *)pIndexData;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, buffer %p, base_vertex_idx %u.\n", iface, pIndexData, baseVertexIndex);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
2007-08-25 00:09:33 +02:00
|
|
|
/* WineD3D takes an INT(due to d3d9), but d3d8 uses UINTs. Do I have to add a check here that
|
|
|
|
* the UINT doesn't cause an overflow in the INT? It seems rather unlikely because such large
|
|
|
|
* vertex buffers can't be created to address them with an index that requires the 32nd bit
|
|
|
|
* (4 Byte minimum vertex size * 2^31-1 -> 8 gb buffer. The index sign would be the least
|
|
|
|
* problem)
|
|
|
|
*/
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-05 18:52:21 +02:00
|
|
|
IWineD3DDevice_SetBaseVertexIndex(This->WineD3DDevice, baseVertexIndex);
|
2009-09-25 13:31:45 +02:00
|
|
|
hr = IWineD3DDevice_SetIndexBuffer(This->WineD3DDevice,
|
2009-04-09 10:50:31 +02:00
|
|
|
ib ? ib->wineD3DIndexBuffer : NULL,
|
|
|
|
ib ? ib->format : WINED3DFMT_UNKNOWN);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetIndices(IDirect3DDevice8 *iface,
|
|
|
|
IDirect3DIndexBuffer8 **ppIndexData, UINT *pBaseVertexIndex)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2011-03-03 21:49:09 +01:00
|
|
|
struct wined3d_buffer *retIndexData = NULL;
|
2010-08-31 18:41:40 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, buffer %p, base_vertex_index %p.\n", iface, ppIndexData, pBaseVertexIndex);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if(ppIndexData == NULL){
|
|
|
|
return D3DERR_INVALIDCALL;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2007-08-25 00:09:33 +02:00
|
|
|
/* The case from UINT to INT is safe because d3d8 will never set negative values */
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-08-25 00:09:33 +02:00
|
|
|
IWineD3DDevice_GetBaseVertexIndex(This->WineD3DDevice, (INT *) pBaseVertexIndex);
|
2010-08-31 18:41:40 +02:00
|
|
|
hr = IWineD3DDevice_GetIndexBuffer(This->WineD3DDevice, &retIndexData);
|
|
|
|
if (SUCCEEDED(hr) && retIndexData)
|
|
|
|
{
|
2011-03-03 21:49:09 +01:00
|
|
|
*ppIndexData = wined3d_buffer_get_parent(retIndexData);
|
2010-08-31 18:41:40 +02:00
|
|
|
IDirect3DIndexBuffer8_AddRef(*ppIndexData);
|
2011-03-03 21:49:09 +01:00
|
|
|
wined3d_buffer_decref(retIndexData);
|
2006-02-25 13:15:08 +01:00
|
|
|
} else {
|
2010-08-31 18:41:40 +02:00
|
|
|
if (FAILED(hr)) FIXME("Call to GetIndices failed\n");
|
2006-02-25 13:15:08 +01:00
|
|
|
*ppIndexData = NULL;
|
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2007-06-09 14:16:41 +02:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2009-09-23 18:42:12 +02:00
|
|
|
|
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreatePixelShader(IDirect3DDevice8 *iface,
|
|
|
|
const DWORD *byte_code, DWORD *shader)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DPixelShader8Impl *object;
|
2009-09-23 18:42:12 +02:00
|
|
|
DWORD shader_handle;
|
2009-03-24 10:09:22 +01:00
|
|
|
DWORD handle;
|
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-09-23 18:42:12 +02:00
|
|
|
TRACE("iface %p, byte_code %p, shader %p.\n", iface, byte_code, shader);
|
2006-08-27 22:07:13 +02:00
|
|
|
|
2009-09-23 18:42:12 +02:00
|
|
|
if (!shader)
|
|
|
|
{
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Invalid call\n", This);
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-03-24 10:09:22 +01:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
if (!object)
|
|
|
|
{
|
2009-09-23 18:42:12 +02:00
|
|
|
ERR("Failed to allocate pixel shader memmory.\n");
|
2006-02-25 13:15:08 +01:00
|
|
|
return E_OUTOFMEMORY;
|
2009-03-24 10:09:22 +01:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-06-16 09:38:25 +02:00
|
|
|
handle = d3d8_allocate_handle(&This->handle_table, object, D3D8_HANDLE_PS);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-24 10:09:22 +01:00
|
|
|
if (handle == D3D8_INVALID_HANDLE)
|
|
|
|
{
|
2009-09-23 18:42:12 +02:00
|
|
|
ERR("Failed to allocate pixel shader handle.\n");
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
2009-03-24 10:09:22 +01:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-09-23 18:42:12 +02:00
|
|
|
shader_handle = handle + VS_HIGHESTFIXEDFXF + 1;
|
2009-03-24 10:09:22 +01:00
|
|
|
|
2009-09-23 18:42:12 +02:00
|
|
|
hr = pixelshader_init(object, This, byte_code, shader_handle);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize pixel shader, hr %#x.\n", hr);
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
d3d8_free_handle(&This->handle_table, handle, D3D8_HANDLE_PS);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*shader = 0;
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Created pixel shader %p (handle %#x).\n", object, shader_handle);
|
|
|
|
*shader = shader_handle;
|
|
|
|
|
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2004-05-10 21:57:51 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetPixelShader(IDirect3DDevice8 *iface, DWORD pShader)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-03-10 09:19:06 +01:00
|
|
|
IDirect3DPixelShader8Impl *shader;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, shader %#x.\n", iface, pShader);
|
2006-08-27 22:07:13 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-03-10 09:19:06 +01:00
|
|
|
|
2009-03-24 10:09:21 +01:00
|
|
|
if (!pShader)
|
|
|
|
{
|
|
|
|
hr = IWineD3DDevice_SetPixelShader(This->WineD3DDevice, NULL);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-24 10:09:21 +01:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2009-06-16 09:38:25 +02:00
|
|
|
shader = d3d8_get_object(&This->handle_table, pShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_PS);
|
2009-03-10 09:19:06 +01:00
|
|
|
if (!shader)
|
|
|
|
{
|
|
|
|
WARN("Invalid handle (%#x) passed.\n", pShader);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-24 10:09:21 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
2006-08-27 22:07:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("(%p) : Setting shader %p\n", This, shader);
|
2009-03-24 10:09:21 +01:00
|
|
|
hr = IWineD3DDevice_SetPixelShader(This->WineD3DDevice, shader->wineD3DPixelShader);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetPixelShader(IDirect3DDevice8 *iface, DWORD *ppShader)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2006-02-25 13:15:08 +01:00
|
|
|
IWineD3DPixelShader *object;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, shader %p.\n", iface, ppShader);
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (NULL == ppShader) {
|
|
|
|
TRACE("(%p) Invalid call\n", This);
|
|
|
|
return D3DERR_INVALIDCALL;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2010-09-06 22:18:56 +02:00
|
|
|
object = IWineD3DDevice_GetPixelShader(This->WineD3DDevice);
|
|
|
|
if (object)
|
2010-08-31 18:41:40 +02:00
|
|
|
{
|
2006-08-27 22:07:13 +02:00
|
|
|
IDirect3DPixelShader8Impl *d3d8_shader;
|
2010-08-31 18:41:40 +02:00
|
|
|
d3d8_shader = IWineD3DPixelShader_GetParent(object);
|
2006-08-27 22:07:13 +02:00
|
|
|
IWineD3DPixelShader_Release(object);
|
2008-08-19 17:50:12 +02:00
|
|
|
*ppShader = d3d8_shader->handle;
|
2010-08-31 18:41:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-11-02 00:27:00 +01:00
|
|
|
*ppShader = 0;
|
2002-10-28 20:00:23 +01:00
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : returning %#x\n", This, *ppShader);
|
2009-08-25 08:17:14 +02:00
|
|
|
|
2010-09-06 22:18:56 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DeletePixelShader(IDirect3DDevice8 *iface, DWORD pShader)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2009-03-10 09:19:06 +01:00
|
|
|
IDirect3DPixelShader8Impl *shader;
|
2010-09-06 22:18:56 +02:00
|
|
|
IWineD3DPixelShader *cur;
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, shader %#x.\n", iface, pShader);
|
2006-08-27 22:07:13 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-03-10 09:19:06 +01:00
|
|
|
|
2009-06-16 09:38:25 +02:00
|
|
|
shader = d3d8_free_handle(&This->handle_table, pShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_PS);
|
2009-03-10 09:19:06 +01:00
|
|
|
if (!shader)
|
|
|
|
{
|
|
|
|
WARN("Invalid handle (%#x) passed.\n", pShader);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-12-01 11:27:47 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
2009-03-24 10:09:22 +01:00
|
|
|
}
|
2007-02-12 19:21:45 +01:00
|
|
|
|
2010-09-06 22:18:56 +02:00
|
|
|
cur = IWineD3DDevice_GetPixelShader(This->WineD3DDevice);
|
2009-03-24 10:09:22 +01:00
|
|
|
if (cur)
|
|
|
|
{
|
|
|
|
if (cur == shader->wineD3DPixelShader) IDirect3DDevice8_SetPixelShader(iface, 0);
|
|
|
|
IWineD3DPixelShader_Release(cur);
|
2004-05-10 21:57:51 +02:00
|
|
|
}
|
2009-03-24 10:09:22 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2003-06-05 00:45:57 +02:00
|
|
|
|
2011-03-14 23:29:09 +01:00
|
|
|
if (IDirect3DPixelShader8_Release(&shader->IDirect3DPixelShader8_iface))
|
2009-03-24 10:09:22 +01:00
|
|
|
{
|
|
|
|
ERR("Shader %p has references left, this shouldn't happen.\n", shader);
|
|
|
|
}
|
|
|
|
|
2002-12-17 02:15:15 +01:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetPixelShaderConstant(IDirect3DDevice8 *iface,
|
|
|
|
DWORD Register, const void *pConstantData, DWORD ConstantCount)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, register %u, data %p, count %u.\n",
|
|
|
|
iface, Register, pConstantData, ConstantCount);
|
2003-06-05 00:45:57 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-01-14 09:51:52 +01:00
|
|
|
hr = IWineD3DDevice_SetPixelShaderConstantF(This->WineD3DDevice, Register, pConstantData, ConstantCount);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-05 00:45:57 +02:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetPixelShaderConstant(IDirect3DDevice8 *iface,
|
|
|
|
DWORD Register, void *pConstantData, DWORD ConstantCount)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, register %u, data %p, count %u.\n",
|
|
|
|
iface, Register, pConstantData, ConstantCount);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-01-14 09:51:52 +01:00
|
|
|
hr = IWineD3DDevice_GetPixelShaderConstantF(This->WineD3DDevice, Register, pConstantData, ConstantCount);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetPixelShaderFunction(IDirect3DDevice8 *iface,
|
|
|
|
DWORD pPixelShader, void *pData, DWORD *pSizeOfData)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-01-06 18:03:49 +01:00
|
|
|
IDirect3DPixelShader8Impl *shader = NULL;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, shader %#x, data %p, data_size %p.\n",
|
|
|
|
iface, pPixelShader, pData, pSizeOfData);
|
2007-01-06 18:03:49 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-06-16 09:38:25 +02:00
|
|
|
shader = d3d8_get_object(&This->handle_table, pPixelShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_PS);
|
2009-03-10 09:19:06 +01:00
|
|
|
if (!shader)
|
|
|
|
{
|
|
|
|
WARN("Invalid handle (%#x) passed.\n", pPixelShader);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-01-06 18:03:49 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2007-12-31 23:23:21 +01:00
|
|
|
hr = IWineD3DPixelShader_GetFunction(shader->wineD3DPixelShader, pData, pSizeOfData);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawRectPatch(IDirect3DDevice8 *iface, UINT Handle,
|
|
|
|
const float *pNumSegs, const D3DRECTPATCH_INFO *pRectPatchInfo)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, handle %#x, segment_count %p, patch_info %p.\n",
|
|
|
|
iface, Handle, pNumSegs, pRectPatchInfo);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_DrawRectPatch(This->WineD3DDevice, Handle, pNumSegs, (CONST WINED3DRECTPATCH_INFO *)pRectPatchInfo);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawTriPatch(IDirect3DDevice8 *iface, UINT Handle,
|
|
|
|
const float *pNumSegs, const D3DTRIPATCH_INFO *pTriPatchInfo)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, handle %#x, segment_count %p, patch_info %p.\n",
|
|
|
|
iface, Handle, pNumSegs, pTriPatchInfo);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_DrawTriPatch(This->WineD3DDevice, Handle, pNumSegs, (CONST WINED3DTRIPATCH_INFO *)pTriPatchInfo);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DeletePatch(IDirect3DDevice8 *iface, UINT Handle)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, handle %#x.\n", iface, Handle);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_DeletePatch(This->WineD3DDevice, Handle);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:16:06 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetStreamSource(IDirect3DDevice8 *iface,
|
|
|
|
UINT StreamNumber, IDirect3DVertexBuffer8 *pStreamData, UINT Stride)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2009-10-19 10:12:20 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, stream_idx %u, buffer %p, stride %u.\n",
|
|
|
|
iface, StreamNumber, pStreamData, Stride);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetStreamSource(This->WineD3DDevice, StreamNumber,
|
|
|
|
NULL == pStreamData ? NULL : ((IDirect3DVertexBuffer8Impl *)pStreamData)->wineD3DVertexBuffer,
|
|
|
|
0/* Offset in bytes */, Stride);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetStreamSource(IDirect3DDevice8 *iface,
|
|
|
|
UINT StreamNumber, IDirect3DVertexBuffer8 **pStream, UINT *pStride)
|
|
|
|
{
|
2011-01-28 01:16:06 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
2011-03-03 21:49:09 +01:00
|
|
|
struct wined3d_buffer *retStream = NULL;
|
2010-08-31 18:41:40 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2009-10-19 10:12:20 +02:00
|
|
|
TRACE("iface %p, stream_idx %u, buffer %p, stride %p.\n",
|
|
|
|
iface, StreamNumber, pStream, pStride);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
|
|
|
if(pStream == NULL){
|
|
|
|
return D3DERR_INVALIDCALL;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2010-08-31 18:41:40 +02:00
|
|
|
hr = IWineD3DDevice_GetStreamSource(This->WineD3DDevice, StreamNumber,
|
|
|
|
&retStream, 0 /* Offset in bytes */, pStride);
|
|
|
|
if (SUCCEEDED(hr) && retStream)
|
|
|
|
{
|
2011-03-03 21:49:09 +01:00
|
|
|
*pStream = wined3d_buffer_get_parent(retStream);
|
2010-08-31 18:41:40 +02:00
|
|
|
IDirect3DVertexBuffer8_AddRef(*pStream);
|
2011-03-03 21:49:09 +01:00
|
|
|
wined3d_buffer_decref(retStream);
|
2010-08-31 18:41:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (FAILED(hr)) FIXME("Call to GetStreamSource failed, hr %#x.\n", hr);
|
2006-02-25 13:15:08 +01:00
|
|
|
*pStream = NULL;
|
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2010-08-31 18:41:40 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2009-11-17 09:43:14 +01:00
|
|
|
static const IDirect3DDevice8Vtbl Direct3DDevice8_Vtbl =
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl_QueryInterface,
|
|
|
|
IDirect3DDevice8Impl_AddRef,
|
|
|
|
IDirect3DDevice8Impl_Release,
|
|
|
|
IDirect3DDevice8Impl_TestCooperativeLevel,
|
|
|
|
IDirect3DDevice8Impl_GetAvailableTextureMem,
|
|
|
|
IDirect3DDevice8Impl_ResourceManagerDiscardBytes,
|
|
|
|
IDirect3DDevice8Impl_GetDirect3D,
|
|
|
|
IDirect3DDevice8Impl_GetDeviceCaps,
|
|
|
|
IDirect3DDevice8Impl_GetDisplayMode,
|
|
|
|
IDirect3DDevice8Impl_GetCreationParameters,
|
|
|
|
IDirect3DDevice8Impl_SetCursorProperties,
|
|
|
|
IDirect3DDevice8Impl_SetCursorPosition,
|
|
|
|
IDirect3DDevice8Impl_ShowCursor,
|
|
|
|
IDirect3DDevice8Impl_CreateAdditionalSwapChain,
|
|
|
|
IDirect3DDevice8Impl_Reset,
|
|
|
|
IDirect3DDevice8Impl_Present,
|
|
|
|
IDirect3DDevice8Impl_GetBackBuffer,
|
|
|
|
IDirect3DDevice8Impl_GetRasterStatus,
|
|
|
|
IDirect3DDevice8Impl_SetGammaRamp,
|
|
|
|
IDirect3DDevice8Impl_GetGammaRamp,
|
|
|
|
IDirect3DDevice8Impl_CreateTexture,
|
|
|
|
IDirect3DDevice8Impl_CreateVolumeTexture,
|
|
|
|
IDirect3DDevice8Impl_CreateCubeTexture,
|
|
|
|
IDirect3DDevice8Impl_CreateVertexBuffer,
|
|
|
|
IDirect3DDevice8Impl_CreateIndexBuffer,
|
|
|
|
IDirect3DDevice8Impl_CreateRenderTarget,
|
|
|
|
IDirect3DDevice8Impl_CreateDepthStencilSurface,
|
|
|
|
IDirect3DDevice8Impl_CreateImageSurface,
|
|
|
|
IDirect3DDevice8Impl_CopyRects,
|
|
|
|
IDirect3DDevice8Impl_UpdateTexture,
|
|
|
|
IDirect3DDevice8Impl_GetFrontBuffer,
|
|
|
|
IDirect3DDevice8Impl_SetRenderTarget,
|
|
|
|
IDirect3DDevice8Impl_GetRenderTarget,
|
|
|
|
IDirect3DDevice8Impl_GetDepthStencilSurface,
|
|
|
|
IDirect3DDevice8Impl_BeginScene,
|
|
|
|
IDirect3DDevice8Impl_EndScene,
|
|
|
|
IDirect3DDevice8Impl_Clear,
|
|
|
|
IDirect3DDevice8Impl_SetTransform,
|
|
|
|
IDirect3DDevice8Impl_GetTransform,
|
|
|
|
IDirect3DDevice8Impl_MultiplyTransform,
|
|
|
|
IDirect3DDevice8Impl_SetViewport,
|
|
|
|
IDirect3DDevice8Impl_GetViewport,
|
|
|
|
IDirect3DDevice8Impl_SetMaterial,
|
|
|
|
IDirect3DDevice8Impl_GetMaterial,
|
|
|
|
IDirect3DDevice8Impl_SetLight,
|
|
|
|
IDirect3DDevice8Impl_GetLight,
|
|
|
|
IDirect3DDevice8Impl_LightEnable,
|
|
|
|
IDirect3DDevice8Impl_GetLightEnable,
|
|
|
|
IDirect3DDevice8Impl_SetClipPlane,
|
|
|
|
IDirect3DDevice8Impl_GetClipPlane,
|
|
|
|
IDirect3DDevice8Impl_SetRenderState,
|
|
|
|
IDirect3DDevice8Impl_GetRenderState,
|
|
|
|
IDirect3DDevice8Impl_BeginStateBlock,
|
|
|
|
IDirect3DDevice8Impl_EndStateBlock,
|
|
|
|
IDirect3DDevice8Impl_ApplyStateBlock,
|
|
|
|
IDirect3DDevice8Impl_CaptureStateBlock,
|
|
|
|
IDirect3DDevice8Impl_DeleteStateBlock,
|
|
|
|
IDirect3DDevice8Impl_CreateStateBlock,
|
|
|
|
IDirect3DDevice8Impl_SetClipStatus,
|
|
|
|
IDirect3DDevice8Impl_GetClipStatus,
|
|
|
|
IDirect3DDevice8Impl_GetTexture,
|
|
|
|
IDirect3DDevice8Impl_SetTexture,
|
|
|
|
IDirect3DDevice8Impl_GetTextureStageState,
|
|
|
|
IDirect3DDevice8Impl_SetTextureStageState,
|
|
|
|
IDirect3DDevice8Impl_ValidateDevice,
|
|
|
|
IDirect3DDevice8Impl_GetInfo,
|
|
|
|
IDirect3DDevice8Impl_SetPaletteEntries,
|
|
|
|
IDirect3DDevice8Impl_GetPaletteEntries,
|
|
|
|
IDirect3DDevice8Impl_SetCurrentTexturePalette,
|
|
|
|
IDirect3DDevice8Impl_GetCurrentTexturePalette,
|
|
|
|
IDirect3DDevice8Impl_DrawPrimitive,
|
|
|
|
IDirect3DDevice8Impl_DrawIndexedPrimitive,
|
|
|
|
IDirect3DDevice8Impl_DrawPrimitiveUP,
|
|
|
|
IDirect3DDevice8Impl_DrawIndexedPrimitiveUP,
|
|
|
|
IDirect3DDevice8Impl_ProcessVertices,
|
|
|
|
IDirect3DDevice8Impl_CreateVertexShader,
|
|
|
|
IDirect3DDevice8Impl_SetVertexShader,
|
|
|
|
IDirect3DDevice8Impl_GetVertexShader,
|
|
|
|
IDirect3DDevice8Impl_DeleteVertexShader,
|
|
|
|
IDirect3DDevice8Impl_SetVertexShaderConstant,
|
|
|
|
IDirect3DDevice8Impl_GetVertexShaderConstant,
|
|
|
|
IDirect3DDevice8Impl_GetVertexShaderDeclaration,
|
|
|
|
IDirect3DDevice8Impl_GetVertexShaderFunction,
|
|
|
|
IDirect3DDevice8Impl_SetStreamSource,
|
|
|
|
IDirect3DDevice8Impl_GetStreamSource,
|
|
|
|
IDirect3DDevice8Impl_SetIndices,
|
|
|
|
IDirect3DDevice8Impl_GetIndices,
|
|
|
|
IDirect3DDevice8Impl_CreatePixelShader,
|
|
|
|
IDirect3DDevice8Impl_SetPixelShader,
|
|
|
|
IDirect3DDevice8Impl_GetPixelShader,
|
|
|
|
IDirect3DDevice8Impl_DeletePixelShader,
|
|
|
|
IDirect3DDevice8Impl_SetPixelShaderConstant,
|
|
|
|
IDirect3DDevice8Impl_GetPixelShaderConstant,
|
|
|
|
IDirect3DDevice8Impl_GetPixelShaderFunction,
|
|
|
|
IDirect3DDevice8Impl_DrawRectPatch,
|
|
|
|
IDirect3DDevice8Impl_DrawTriPatch,
|
|
|
|
IDirect3DDevice8Impl_DeletePatch
|
|
|
|
};
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2011-01-28 01:19:57 +01:00
|
|
|
static inline IDirect3DDevice8Impl *impl_from_IWineD3DDeviceParent(IWineD3DDeviceParent *iface)
|
2009-01-16 10:14:24 +01:00
|
|
|
{
|
2011-01-28 01:19:57 +01:00
|
|
|
return CONTAINING_RECORD(iface, IDirect3DDevice8Impl, IWineD3DDeviceParent_iface);
|
2009-01-16 10:14:24 +01:00
|
|
|
}
|
|
|
|
|
2011-01-28 01:19:57 +01:00
|
|
|
static HRESULT STDMETHODCALLTYPE device_parent_QueryInterface(IWineD3DDeviceParent *iface,
|
|
|
|
REFIID riid, void **object)
|
2009-01-16 10:14:24 +01:00
|
|
|
{
|
2011-01-28 01:19:57 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IWineD3DDeviceParent(iface);
|
2011-01-28 01:17:54 +01:00
|
|
|
return IDirect3DDevice8Impl_QueryInterface(&This->IDirect3DDevice8_iface, riid, object);
|
2009-01-16 10:14:24 +01:00
|
|
|
}
|
|
|
|
|
2009-01-26 12:53:26 +01:00
|
|
|
static ULONG STDMETHODCALLTYPE device_parent_AddRef(IWineD3DDeviceParent *iface)
|
2009-01-16 10:14:24 +01:00
|
|
|
{
|
2011-01-28 01:19:57 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IWineD3DDeviceParent(iface);
|
2011-01-28 01:17:54 +01:00
|
|
|
return IDirect3DDevice8Impl_AddRef(&This->IDirect3DDevice8_iface);
|
2009-01-16 10:14:24 +01:00
|
|
|
}
|
|
|
|
|
2009-01-26 12:53:26 +01:00
|
|
|
static ULONG STDMETHODCALLTYPE device_parent_Release(IWineD3DDeviceParent *iface)
|
2009-01-16 10:14:24 +01:00
|
|
|
{
|
2011-01-28 01:19:57 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IWineD3DDeviceParent(iface);
|
2011-01-28 01:17:54 +01:00
|
|
|
return IDirect3DDevice8Impl_Release(&This->IDirect3DDevice8_iface);
|
2009-01-16 10:14:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* IWineD3DDeviceParent methods */
|
|
|
|
|
2009-02-23 09:16:01 +01:00
|
|
|
static void STDMETHODCALLTYPE device_parent_WineD3DDeviceCreated(IWineD3DDeviceParent *iface, IWineD3DDevice *device)
|
|
|
|
{
|
|
|
|
TRACE("iface %p, device %p\n", iface, device);
|
|
|
|
}
|
|
|
|
|
2009-01-16 10:14:24 +01:00
|
|
|
static HRESULT STDMETHODCALLTYPE device_parent_CreateSurface(IWineD3DDeviceParent *iface,
|
2011-03-07 21:45:25 +01:00
|
|
|
void *container_parent, UINT width, UINT height, enum wined3d_format_id format, DWORD usage,
|
2009-01-16 10:14:24 +01:00
|
|
|
WINED3DPOOL pool, UINT level, WINED3DCUBEMAP_FACES face, IWineD3DSurface **surface)
|
|
|
|
{
|
2011-01-28 01:19:57 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IWineD3DDeviceParent(iface);
|
2009-01-16 10:14:24 +01:00
|
|
|
IDirect3DSurface8Impl *d3d_surface;
|
|
|
|
BOOL lockable = TRUE;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2011-03-07 21:45:25 +01:00
|
|
|
TRACE("iface %p, container_parent %p, width %u, height %u, format %#x, usage %#x,\n"
|
2009-01-16 10:14:24 +01:00
|
|
|
"\tpool %#x, level %u, face %u, surface %p\n",
|
2011-03-07 21:45:25 +01:00
|
|
|
iface, container_parent, width, height, format, usage, pool, level, face, surface);
|
2009-01-16 10:14:24 +01:00
|
|
|
|
|
|
|
|
2009-01-16 10:14:25 +01:00
|
|
|
if (pool == WINED3DPOOL_DEFAULT && !(usage & WINED3DUSAGE_DYNAMIC)) lockable = FALSE;
|
2009-01-16 10:14:24 +01:00
|
|
|
|
2011-01-26 00:31:13 +01:00
|
|
|
hr = IDirect3DDevice8Impl_CreateSurface(This, width, height,
|
2009-02-19 16:59:41 +01:00
|
|
|
d3dformat_from_wined3dformat(format), lockable, FALSE /* Discard */, level,
|
2009-06-12 09:46:03 +02:00
|
|
|
(IDirect3DSurface8 **)&d3d_surface, usage, pool, D3DMULTISAMPLE_NONE, 0 /* MultisampleQuality */);
|
2009-01-16 10:14:24 +01:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
ERR("(%p) CreateSurface failed, returning %#x\n", iface, hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
*surface = d3d_surface->wineD3DSurface;
|
2009-09-16 08:37:15 +02:00
|
|
|
IWineD3DSurface_AddRef(*surface);
|
|
|
|
|
2011-03-07 21:45:25 +01:00
|
|
|
d3d_surface->container = container_parent;
|
2009-01-16 10:14:24 +01:00
|
|
|
IUnknown_Release(d3d_surface->parentDevice);
|
|
|
|
d3d_surface->parentDevice = NULL;
|
2009-09-16 08:37:15 +02:00
|
|
|
|
|
|
|
IDirect3DSurface8_Release((IDirect3DSurface8 *)d3d_surface);
|
2011-03-07 21:45:25 +01:00
|
|
|
d3d_surface->forwardReference = container_parent;
|
2009-01-16 10:14:24 +01:00
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE device_parent_CreateRenderTarget(IWineD3DDeviceParent *iface,
|
2011-03-07 21:45:25 +01:00
|
|
|
void *container_parent, UINT width, UINT height, enum wined3d_format_id format,
|
2010-08-23 18:28:10 +02:00
|
|
|
WINED3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality, BOOL lockable,
|
|
|
|
IWineD3DSurface **surface)
|
2009-01-16 10:14:24 +01:00
|
|
|
{
|
2011-01-28 01:19:57 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IWineD3DDeviceParent(iface);
|
2009-01-16 10:14:24 +01:00
|
|
|
IDirect3DSurface8Impl *d3d_surface;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2011-03-07 21:45:25 +01:00
|
|
|
TRACE("iface %p, container_parent %p, width %u, height %u, format %#x, multisample_type %#x,\n"
|
2009-01-16 10:14:24 +01:00
|
|
|
"\tmultisample_quality %u, lockable %u, surface %p\n",
|
2011-03-07 21:45:25 +01:00
|
|
|
iface, container_parent, width, height, format, multisample_type, multisample_quality, lockable, surface);
|
2009-01-16 10:14:24 +01:00
|
|
|
|
2011-01-28 01:17:54 +01:00
|
|
|
hr = IDirect3DDevice8_CreateRenderTarget(&This->IDirect3DDevice8_iface, width, height,
|
2009-02-19 16:59:41 +01:00
|
|
|
d3dformat_from_wined3dformat(format), multisample_type, lockable, (IDirect3DSurface8 **)&d3d_surface);
|
2009-01-16 10:14:24 +01:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
ERR("(%p) CreateRenderTarget failed, returning %#x\n", iface, hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
*surface = d3d_surface->wineD3DSurface;
|
2009-09-16 08:37:15 +02:00
|
|
|
IWineD3DSurface_AddRef(*surface);
|
|
|
|
|
2011-01-28 01:17:54 +01:00
|
|
|
d3d_surface->container = (IUnknown *)&This->IDirect3DDevice8_iface;
|
2009-01-16 10:14:24 +01:00
|
|
|
/* Implicit surfaces are created with an refcount of 0 */
|
|
|
|
IUnknown_Release((IUnknown *)d3d_surface);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE device_parent_CreateDepthStencilSurface(IWineD3DDeviceParent *iface,
|
2010-08-30 20:29:48 +02:00
|
|
|
UINT width, UINT height, enum wined3d_format_id format, WINED3DMULTISAMPLE_TYPE multisample_type,
|
|
|
|
DWORD multisample_quality, BOOL discard, IWineD3DSurface **surface)
|
2009-01-16 10:14:24 +01:00
|
|
|
{
|
2011-01-28 01:19:57 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IWineD3DDeviceParent(iface);
|
2009-01-16 10:14:24 +01:00
|
|
|
IDirect3DSurface8Impl *d3d_surface;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2010-08-30 20:29:48 +02:00
|
|
|
TRACE("iface %p, width %u, height %u, format %#x, multisample_type %#x,\n"
|
2009-01-16 10:14:24 +01:00
|
|
|
"\tmultisample_quality %u, discard %u, surface %p\n",
|
2010-08-30 20:29:48 +02:00
|
|
|
iface, width, height, format, multisample_type, multisample_quality, discard, surface);
|
2009-01-16 10:14:24 +01:00
|
|
|
|
2011-01-28 01:17:54 +01:00
|
|
|
hr = IDirect3DDevice8_CreateDepthStencilSurface(&This->IDirect3DDevice8_iface, width, height,
|
2009-02-19 16:59:41 +01:00
|
|
|
d3dformat_from_wined3dformat(format), multisample_type, (IDirect3DSurface8 **)&d3d_surface);
|
2009-01-16 10:14:24 +01:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
ERR("(%p) CreateDepthStencilSurface failed, returning %#x\n", iface, hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
*surface = d3d_surface->wineD3DSurface;
|
2009-09-16 08:37:15 +02:00
|
|
|
IWineD3DSurface_AddRef(*surface);
|
|
|
|
|
2011-01-28 01:17:54 +01:00
|
|
|
d3d_surface->container = (IUnknown *)&This->IDirect3DDevice8_iface;
|
2009-01-16 10:14:24 +01:00
|
|
|
/* Implicit surfaces are created with an refcount of 0 */
|
|
|
|
IUnknown_Release((IUnknown *)d3d_surface);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE device_parent_CreateVolume(IWineD3DDeviceParent *iface,
|
2011-03-07 21:45:25 +01:00
|
|
|
void *container_parent, UINT width, UINT height, UINT depth, enum wined3d_format_id format,
|
2009-01-16 10:14:24 +01:00
|
|
|
WINED3DPOOL pool, DWORD usage, IWineD3DVolume **volume)
|
|
|
|
{
|
2011-01-28 01:19:57 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IWineD3DDeviceParent(iface);
|
2009-01-16 10:14:24 +01:00
|
|
|
IDirect3DVolume8Impl *object;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2011-03-07 21:45:25 +01:00
|
|
|
TRACE("iface %p, container_parent %p, width %u, height %u, depth %u, format %#x, pool %#x, usage %#x, volume %p\n",
|
|
|
|
iface, container_parent, width, height, depth, format, pool, usage, volume);
|
2009-01-16 10:14:24 +01:00
|
|
|
|
|
|
|
/* Allocate the storage for the device */
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
if (!object)
|
|
|
|
{
|
|
|
|
FIXME("Allocation of memory failed\n");
|
|
|
|
*volume = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-09-16 08:37:18 +02:00
|
|
|
hr = volume_init(object, This, width, height, depth, usage, format, pool);
|
2009-01-16 10:14:24 +01:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
2009-09-16 08:37:18 +02:00
|
|
|
WARN("Failed to initialize volume, hr %#x.\n", hr);
|
2009-01-16 10:14:24 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
*volume = object->wineD3DVolume;
|
2009-09-16 08:37:19 +02:00
|
|
|
IWineD3DVolume_AddRef(*volume);
|
2011-01-31 01:37:33 +01:00
|
|
|
IDirect3DVolume8_Release(&object->IDirect3DVolume8_iface);
|
2009-09-16 08:37:19 +02:00
|
|
|
|
2011-03-07 21:45:25 +01:00
|
|
|
object->container = container_parent;
|
|
|
|
object->forwardReference = container_parent;
|
2009-01-16 10:14:24 +01:00
|
|
|
|
2009-09-16 08:37:18 +02:00
|
|
|
TRACE("(%p) Created volume %p\n", iface, object);
|
2009-01-16 10:14:24 +01:00
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE device_parent_CreateSwapChain(IWineD3DDeviceParent *iface,
|
|
|
|
WINED3DPRESENT_PARAMETERS *present_parameters, IWineD3DSwapChain **swapchain)
|
|
|
|
{
|
2011-01-28 01:19:57 +01:00
|
|
|
IDirect3DDevice8Impl *This = impl_from_IWineD3DDeviceParent(iface);
|
2009-01-16 10:14:24 +01:00
|
|
|
IDirect3DSwapChain8Impl *d3d_swapchain;
|
|
|
|
D3DPRESENT_PARAMETERS local_parameters;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("iface %p, present_parameters %p, swapchain %p\n", iface, present_parameters, swapchain);
|
|
|
|
|
|
|
|
/* Copy the presentation parameters */
|
|
|
|
local_parameters.BackBufferWidth = present_parameters->BackBufferWidth;
|
|
|
|
local_parameters.BackBufferHeight = present_parameters->BackBufferHeight;
|
2009-02-19 16:59:41 +01:00
|
|
|
local_parameters.BackBufferFormat = d3dformat_from_wined3dformat(present_parameters->BackBufferFormat);
|
2009-01-16 10:14:24 +01:00
|
|
|
local_parameters.BackBufferCount = present_parameters->BackBufferCount;
|
|
|
|
local_parameters.MultiSampleType = present_parameters->MultiSampleType;
|
|
|
|
local_parameters.SwapEffect = present_parameters->SwapEffect;
|
|
|
|
local_parameters.hDeviceWindow = present_parameters->hDeviceWindow;
|
|
|
|
local_parameters.Windowed = present_parameters->Windowed;
|
|
|
|
local_parameters.EnableAutoDepthStencil = present_parameters->EnableAutoDepthStencil;
|
2009-02-19 16:59:41 +01:00
|
|
|
local_parameters.AutoDepthStencilFormat = d3dformat_from_wined3dformat(present_parameters->AutoDepthStencilFormat);
|
2009-01-16 10:14:24 +01:00
|
|
|
local_parameters.Flags = present_parameters->Flags;
|
|
|
|
local_parameters.FullScreen_RefreshRateInHz = present_parameters->FullScreen_RefreshRateInHz;
|
|
|
|
local_parameters.FullScreen_PresentationInterval = present_parameters->PresentationInterval;
|
|
|
|
|
2011-01-28 01:17:54 +01:00
|
|
|
hr = IDirect3DDevice8_CreateAdditionalSwapChain(&This->IDirect3DDevice8_iface,
|
2009-01-16 10:14:24 +01:00
|
|
|
&local_parameters, (IDirect3DSwapChain8 **)&d3d_swapchain);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
ERR("(%p) CreateAdditionalSwapChain failed, returning %#x\n", iface, hr);
|
|
|
|
*swapchain = NULL;
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
*swapchain = d3d_swapchain->wineD3DSwapChain;
|
|
|
|
IUnknown_Release(d3d_swapchain->parentDevice);
|
|
|
|
d3d_swapchain->parentDevice = NULL;
|
|
|
|
|
|
|
|
/* Copy back the presentation parameters */
|
|
|
|
present_parameters->BackBufferWidth = local_parameters.BackBufferWidth;
|
|
|
|
present_parameters->BackBufferHeight = local_parameters.BackBufferHeight;
|
2009-02-19 16:59:41 +01:00
|
|
|
present_parameters->BackBufferFormat = wined3dformat_from_d3dformat(local_parameters.BackBufferFormat);
|
2009-01-16 10:14:24 +01:00
|
|
|
present_parameters->BackBufferCount = local_parameters.BackBufferCount;
|
|
|
|
present_parameters->MultiSampleType = local_parameters.MultiSampleType;
|
|
|
|
present_parameters->SwapEffect = local_parameters.SwapEffect;
|
|
|
|
present_parameters->hDeviceWindow = local_parameters.hDeviceWindow;
|
|
|
|
present_parameters->Windowed = local_parameters.Windowed;
|
|
|
|
present_parameters->EnableAutoDepthStencil = local_parameters.EnableAutoDepthStencil;
|
2009-02-19 16:59:41 +01:00
|
|
|
present_parameters->AutoDepthStencilFormat = wined3dformat_from_d3dformat(local_parameters.AutoDepthStencilFormat);
|
2009-01-16 10:14:24 +01:00
|
|
|
present_parameters->Flags = local_parameters.Flags;
|
|
|
|
present_parameters->FullScreen_RefreshRateInHz = local_parameters.FullScreen_RefreshRateInHz;
|
|
|
|
present_parameters->PresentationInterval = local_parameters.FullScreen_PresentationInterval;
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2009-11-17 09:43:14 +01:00
|
|
|
static const IWineD3DDeviceParentVtbl d3d8_wined3d_device_parent_vtbl =
|
2009-01-16 10:14:24 +01:00
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
device_parent_QueryInterface,
|
|
|
|
device_parent_AddRef,
|
|
|
|
device_parent_Release,
|
|
|
|
/* IWineD3DDeviceParent methods */
|
2009-02-23 09:16:01 +01:00
|
|
|
device_parent_WineD3DDeviceCreated,
|
2009-01-16 10:14:24 +01:00
|
|
|
device_parent_CreateSurface,
|
|
|
|
device_parent_CreateRenderTarget,
|
|
|
|
device_parent_CreateDepthStencilSurface,
|
|
|
|
device_parent_CreateVolume,
|
|
|
|
device_parent_CreateSwapChain,
|
|
|
|
};
|
2009-11-17 09:43:14 +01:00
|
|
|
|
2010-05-26 09:41:37 +02:00
|
|
|
static void setup_fpu(void)
|
|
|
|
{
|
|
|
|
#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
|
2010-08-23 18:36:57 +02:00
|
|
|
WORD cw;
|
2010-05-26 09:41:37 +02:00
|
|
|
__asm__ volatile ("fnstcw %0" : "=m" (cw));
|
|
|
|
cw = (cw & ~0xf3f) | 0x3f;
|
|
|
|
__asm__ volatile ("fldcw %0" : : "m" (cw));
|
|
|
|
#else
|
|
|
|
FIXME("FPU setup not implemented for this platform.\n");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-02-01 19:39:53 +01:00
|
|
|
HRESULT device_init(IDirect3DDevice8Impl *device, struct wined3d *wined3d, UINT adapter,
|
2009-11-17 09:43:14 +01:00
|
|
|
D3DDEVTYPE device_type, HWND focus_window, DWORD flags, D3DPRESENT_PARAMETERS *parameters)
|
|
|
|
{
|
|
|
|
WINED3DPRESENT_PARAMETERS wined3d_parameters;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2011-01-28 01:17:54 +01:00
|
|
|
device->IDirect3DDevice8_iface.lpVtbl = &Direct3DDevice8_Vtbl;
|
2011-01-28 01:19:57 +01:00
|
|
|
device->IWineD3DDeviceParent_iface.lpVtbl = &d3d8_wined3d_device_parent_vtbl;
|
2009-11-17 09:43:14 +01:00
|
|
|
device->ref = 1;
|
|
|
|
device->handle_table.entries = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
D3D8_INITIAL_HANDLE_TABLE_SIZE * sizeof(*device->handle_table.entries));
|
|
|
|
if (!device->handle_table.entries)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate handle table memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
device->handle_table.table_size = D3D8_INITIAL_HANDLE_TABLE_SIZE;
|
|
|
|
|
2010-05-26 09:41:37 +02:00
|
|
|
if (!(flags & D3DCREATE_FPU_PRESERVE)) setup_fpu();
|
|
|
|
|
2009-11-17 09:43:14 +01:00
|
|
|
wined3d_mutex_lock();
|
2011-02-01 19:39:53 +01:00
|
|
|
hr = wined3d_device_create(wined3d, adapter, device_type, focus_window, flags,
|
2011-01-28 01:19:57 +01:00
|
|
|
&device->IWineD3DDeviceParent_iface, &device->WineD3DDevice);
|
2009-11-17 09:43:14 +01:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d device, hr %#x.\n", hr);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2010-03-17 21:59:49 +01:00
|
|
|
if (!parameters->Windowed)
|
|
|
|
{
|
2010-11-08 11:50:33 +01:00
|
|
|
HWND device_window = parameters->hDeviceWindow;
|
|
|
|
|
|
|
|
if (!focus_window) focus_window = device_window;
|
2010-03-17 21:59:49 +01:00
|
|
|
if (FAILED(hr = IWineD3DDevice_AcquireFocusWindow(device->WineD3DDevice, focus_window)))
|
|
|
|
{
|
|
|
|
ERR("Failed to acquire focus window, hr %#x.\n", hr);
|
|
|
|
IWineD3DDevice_Release(device->WineD3DDevice);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
|
|
|
|
return hr;
|
|
|
|
}
|
2010-11-08 11:50:33 +01:00
|
|
|
|
|
|
|
if (!device_window) device_window = focus_window;
|
|
|
|
IWineD3DDevice_SetupFullscreenWindow(device->WineD3DDevice, device_window,
|
|
|
|
parameters->BackBufferWidth,
|
|
|
|
parameters->BackBufferHeight);
|
2010-03-17 21:59:49 +01:00
|
|
|
}
|
|
|
|
|
2009-11-17 09:43:14 +01:00
|
|
|
if (flags & D3DCREATE_MULTITHREADED) IWineD3DDevice_SetMultithreaded(device->WineD3DDevice);
|
|
|
|
|
|
|
|
wined3d_parameters.BackBufferWidth = parameters->BackBufferWidth;
|
|
|
|
wined3d_parameters.BackBufferHeight = parameters->BackBufferHeight;
|
|
|
|
wined3d_parameters.BackBufferFormat = wined3dformat_from_d3dformat(parameters->BackBufferFormat);
|
|
|
|
wined3d_parameters.BackBufferCount = parameters->BackBufferCount;
|
|
|
|
wined3d_parameters.MultiSampleType = parameters->MultiSampleType;
|
|
|
|
wined3d_parameters.MultiSampleQuality = 0; /* d3d9 only */
|
|
|
|
wined3d_parameters.SwapEffect = parameters->SwapEffect;
|
|
|
|
wined3d_parameters.hDeviceWindow = parameters->hDeviceWindow;
|
|
|
|
wined3d_parameters.Windowed = parameters->Windowed;
|
|
|
|
wined3d_parameters.EnableAutoDepthStencil = parameters->EnableAutoDepthStencil;
|
|
|
|
wined3d_parameters.AutoDepthStencilFormat = wined3dformat_from_d3dformat(parameters->AutoDepthStencilFormat);
|
|
|
|
wined3d_parameters.Flags = parameters->Flags;
|
|
|
|
wined3d_parameters.FullScreen_RefreshRateInHz = parameters->FullScreen_RefreshRateInHz;
|
|
|
|
wined3d_parameters.PresentationInterval = parameters->FullScreen_PresentationInterval;
|
|
|
|
wined3d_parameters.AutoRestoreDisplayMode = TRUE;
|
|
|
|
|
|
|
|
hr = IWineD3DDevice_Init3D(device->WineD3DDevice, &wined3d_parameters);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize 3D, hr %#x.\n", hr);
|
2010-03-17 21:59:49 +01:00
|
|
|
IWineD3DDevice_ReleaseFocusWindow(device->WineD3DDevice);
|
2009-11-17 09:43:14 +01:00
|
|
|
IWineD3DDevice_Release(device->WineD3DDevice);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = IWineD3DDevice_SetRenderState(device->WineD3DDevice, WINED3DRS_POINTSIZE_MIN, 0);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
ERR("Failed to set minimum pointsize, hr %#x.\n", hr);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
parameters->BackBufferWidth = wined3d_parameters.BackBufferWidth;
|
|
|
|
parameters->BackBufferHeight = wined3d_parameters.BackBufferHeight;
|
|
|
|
parameters->BackBufferFormat = d3dformat_from_wined3dformat(wined3d_parameters.BackBufferFormat);
|
|
|
|
parameters->BackBufferCount = wined3d_parameters.BackBufferCount;
|
|
|
|
parameters->MultiSampleType = wined3d_parameters.MultiSampleType;
|
|
|
|
parameters->SwapEffect = wined3d_parameters.SwapEffect;
|
|
|
|
parameters->hDeviceWindow = wined3d_parameters.hDeviceWindow;
|
|
|
|
parameters->Windowed = wined3d_parameters.Windowed;
|
|
|
|
parameters->EnableAutoDepthStencil = wined3d_parameters.EnableAutoDepthStencil;
|
|
|
|
parameters->AutoDepthStencilFormat = d3dformat_from_wined3dformat(wined3d_parameters.AutoDepthStencilFormat);
|
|
|
|
parameters->Flags = wined3d_parameters.Flags;
|
|
|
|
parameters->FullScreen_RefreshRateInHz = wined3d_parameters.FullScreen_RefreshRateInHz;
|
|
|
|
parameters->FullScreen_PresentationInterval = wined3d_parameters.PresentationInterval;
|
|
|
|
|
|
|
|
device->declArraySize = 16;
|
|
|
|
device->decls = HeapAlloc(GetProcessHeap(), 0, device->declArraySize * sizeof(*device->decls));
|
|
|
|
if (!device->decls)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate FVF vertex delcaration map memory.\n");
|
|
|
|
hr = E_OUTOFMEMORY;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
|
|
|
|
err:
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
IWineD3DDevice_Uninit3D(device->WineD3DDevice, D3D8CB_DestroySwapChain);
|
2010-03-17 21:59:49 +01:00
|
|
|
IWineD3DDevice_ReleaseFocusWindow(device->WineD3DDevice);
|
2009-11-17 09:43:14 +01:00
|
|
|
IWineD3DDevice_Release(device->WineD3DDevice);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
|
|
|
|
return hr;
|
|
|
|
}
|