058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync/*
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * IDirect3DDevice8 implementation
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * Copyright 2002-2004 Jason Edmeades
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * Copyright 2004 Christian Costa
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * This library is free software; you can redistribute it and/or
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * modify it under the terms of the GNU Lesser General Public
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * License as published by the Free Software Foundation; either
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * version 2.1 of the License, or (at your option) any later version.
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * This library is distributed in the hope that it will be useful,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * but WITHOUT ANY WARRANTY; without even the implied warranty of
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * Lesser General Public License for more details.
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * You should have received a copy of the GNU Lesser General Public
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * License along with this library; if not, write to the Free Software
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
4237d5a79f48789aacc67dc43378d2d7813a39f4vboxsync/*
4237d5a79f48789aacc67dc43378d2d7813a39f4vboxsync * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
4237d5a79f48789aacc67dc43378d2d7813a39f4vboxsync * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
4237d5a79f48789aacc67dc43378d2d7813a39f4vboxsync * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
4237d5a79f48789aacc67dc43378d2d7813a39f4vboxsync * a choice of LGPL license versions is made available with the language indicating
4237d5a79f48789aacc67dc43378d2d7813a39f4vboxsync * that LGPLv2 or any later version may be used, or where a choice of which version
4237d5a79f48789aacc67dc43378d2d7813a39f4vboxsync * of the LGPL is applied is otherwise unspecified.
4237d5a79f48789aacc67dc43378d2d7813a39f4vboxsync */
4237d5a79f48789aacc67dc43378d2d7813a39f4vboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#include "config.h"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#include <math.h>
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#include <stdarg.h>
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#define NONAMELESSUNION
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#define NONAMELESSSTRUCT
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#include "windef.h"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#include "winbase.h"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#include "winuser.h"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#include "wingdi.h"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#include "wine/debug.h"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#include "d3d8_private.h"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncWINE_DEFAULT_DEBUG_CHANNEL(d3d8);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncD3DFORMAT d3dformat_from_wined3dformat(enum wined3d_format_id format)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BYTE *c = (BYTE *)&format;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Don't translate FOURCC formats */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (isprint(c[0]) && isprint(c[1]) && isprint(c[2]) && isprint(c[3])) return format;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync switch(format)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_UNKNOWN: return D3DFMT_UNKNOWN;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_B8G8R8_UNORM: return D3DFMT_R8G8B8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_B8G8R8A8_UNORM: return D3DFMT_A8R8G8B8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_B8G8R8X8_UNORM: return D3DFMT_X8R8G8B8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_B5G6R5_UNORM: return D3DFMT_R5G6B5;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_B5G5R5X1_UNORM: return D3DFMT_X1R5G5B5;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_B5G5R5A1_UNORM: return D3DFMT_A1R5G5B5;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_B4G4R4A4_UNORM: return D3DFMT_A4R4G4B4;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_B2G3R3_UNORM: return D3DFMT_R3G3B2;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_A8_UNORM: return D3DFMT_A8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_B2G3R3A8_UNORM: return D3DFMT_A8R3G3B2;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_B4G4R4X4_UNORM: return D3DFMT_X4R4G4B4;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R10G10B10A2_UNORM: return D3DFMT_A2B10G10R10;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R16G16_UNORM: return D3DFMT_G16R16;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_P8_UINT_A8_UNORM: return D3DFMT_A8P8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_P8_UINT: return D3DFMT_P8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_L8_UNORM: return D3DFMT_L8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_L8A8_UNORM: return D3DFMT_A8L8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_L4A4_UNORM: return D3DFMT_A4L4;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R8G8_SNORM: return D3DFMT_V8U8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R5G5_SNORM_L6_UNORM: return D3DFMT_L6V5U5;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R8G8_SNORM_L8X8_UNORM: return D3DFMT_X8L8V8U8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R8G8B8A8_SNORM: return D3DFMT_Q8W8V8U8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R16G16_SNORM: return D3DFMT_V16U16;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R10G11B11_SNORM: return D3DFMT_W11V11U10;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R10G10B10_SNORM_A2_UNORM: return D3DFMT_A2W10V10U10;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_D16_LOCKABLE: return D3DFMT_D16_LOCKABLE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_D32_UNORM: return D3DFMT_D32;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_S1_UINT_D15_UNORM: return D3DFMT_D15S1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_D24_UNORM_S8_UINT: return D3DFMT_D24S8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_X8D24_UNORM: return D3DFMT_D24X8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_S4X4_UINT_D24_UNORM: return D3DFMT_D24X4S4;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_D16_UNORM: return D3DFMT_D16;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_VERTEXDATA: return D3DFMT_VERTEXDATA;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R16_UINT: return D3DFMT_INDEX16;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R32_UINT: return D3DFMT_INDEX32;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync default:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Unhandled wined3d format %#x.\n", format);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DFMT_UNKNOWN;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncenum wined3d_format_id wined3dformat_from_d3dformat(D3DFORMAT format)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BYTE *c = (BYTE *)&format;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Don't translate FOURCC formats */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (isprint(c[0]) && isprint(c[1]) && isprint(c[2]) && isprint(c[3])) return format;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync switch(format)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_UNKNOWN: return WINED3DFMT_UNKNOWN;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_R8G8B8: return WINED3DFMT_B8G8R8_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A8R8G8B8: return WINED3DFMT_B8G8R8A8_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_X8R8G8B8: return WINED3DFMT_B8G8R8X8_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_R5G6B5: return WINED3DFMT_B5G6R5_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_X1R5G5B5: return WINED3DFMT_B5G5R5X1_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A1R5G5B5: return WINED3DFMT_B5G5R5A1_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A4R4G4B4: return WINED3DFMT_B4G4R4A4_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_R3G3B2: return WINED3DFMT_B2G3R3_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A8: return WINED3DFMT_A8_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A8R3G3B2: return WINED3DFMT_B2G3R3A8_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_X4R4G4B4: return WINED3DFMT_B4G4R4X4_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A2B10G10R10: return WINED3DFMT_R10G10B10A2_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_G16R16: return WINED3DFMT_R16G16_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A8P8: return WINED3DFMT_P8_UINT_A8_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_P8: return WINED3DFMT_P8_UINT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_L8: return WINED3DFMT_L8_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A8L8: return WINED3DFMT_L8A8_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A4L4: return WINED3DFMT_L4A4_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_V8U8: return WINED3DFMT_R8G8_SNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_L6V5U5: return WINED3DFMT_R5G5_SNORM_L6_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_X8L8V8U8: return WINED3DFMT_R8G8_SNORM_L8X8_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_Q8W8V8U8: return WINED3DFMT_R8G8B8A8_SNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_V16U16: return WINED3DFMT_R16G16_SNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_W11V11U10: return WINED3DFMT_R10G11B11_SNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A2W10V10U10: return WINED3DFMT_R10G10B10_SNORM_A2_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_D16_LOCKABLE: return WINED3DFMT_D16_LOCKABLE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_D32: return WINED3DFMT_D32_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_D15S1: return WINED3DFMT_S1_UINT_D15_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_D24S8: return WINED3DFMT_D24_UNORM_S8_UINT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_D24X8: return WINED3DFMT_X8D24_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_D24X4S4: return WINED3DFMT_S4X4_UINT_D24_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_D16: return WINED3DFMT_D16_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_VERTEXDATA: return WINED3DFMT_VERTEXDATA;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_INDEX16: return WINED3DFMT_R16_UINT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_INDEX32: return WINED3DFMT_R32_UINT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync default:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Unhandled D3DFORMAT %#x\n", format);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return WINED3DFMT_UNKNOWN;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic UINT vertex_count_from_primitive_count(D3DPRIMITIVETYPE primitive_type, UINT primitive_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync switch(primitive_type)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DPT_POINTLIST:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return primitive_count;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DPT_LINELIST:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return primitive_count * 2;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DPT_LINESTRIP:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return primitive_count + 1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DPT_TRIANGLELIST:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return primitive_count * 3;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DPT_TRIANGLESTRIP:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DPT_TRIANGLEFAN:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return primitive_count + 2;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync default:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Unhandled primitive type %#x\n", primitive_type);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void present_parameters_from_wined3d_swapchain_desc(D3DPRESENT_PARAMETERS *present_parameters,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const struct wined3d_swapchain_desc *swapchain_desc)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->BackBufferWidth = swapchain_desc->backbuffer_width;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->BackBufferHeight = swapchain_desc->backbuffer_height;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->BackBufferFormat = d3dformat_from_wined3dformat(swapchain_desc->backbuffer_format);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->BackBufferCount = swapchain_desc->backbuffer_count;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->MultiSampleType = swapchain_desc->multisample_type;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->SwapEffect = swapchain_desc->swap_effect;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->hDeviceWindow = swapchain_desc->device_window;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->Windowed = swapchain_desc->windowed;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->EnableAutoDepthStencil = swapchain_desc->enable_auto_depth_stencil;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->AutoDepthStencilFormat
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync = d3dformat_from_wined3dformat(swapchain_desc->auto_depth_stencil_format);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->Flags = swapchain_desc->flags;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->FullScreen_RefreshRateInHz = swapchain_desc->refresh_rate;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters->FullScreen_PresentationInterval = swapchain_desc->swap_interval;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void wined3d_swapchain_desc_from_present_parameters(struct wined3d_swapchain_desc *swapchain_desc,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const D3DPRESENT_PARAMETERS *present_parameters)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->backbuffer_width = present_parameters->BackBufferWidth;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->backbuffer_height = present_parameters->BackBufferHeight;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->backbuffer_format = wined3dformat_from_d3dformat(present_parameters->BackBufferFormat);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->backbuffer_count = max(1, present_parameters->BackBufferCount);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->multisample_type = present_parameters->MultiSampleType;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->multisample_quality = 0; /* d3d9 only */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->swap_effect = present_parameters->SwapEffect;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->device_window = present_parameters->hDeviceWindow;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->windowed = present_parameters->Windowed;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->enable_auto_depth_stencil = present_parameters->EnableAutoDepthStencil;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->auto_depth_stencil_format
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync = wined3dformat_from_d3dformat(present_parameters->AutoDepthStencilFormat);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->flags = present_parameters->Flags;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->refresh_rate = present_parameters->FullScreen_RefreshRateInHz;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->swap_interval = present_parameters->FullScreen_PresentationInterval;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->auto_restore_display_mode = TRUE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync/* Handle table functions */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic DWORD d3d8_allocate_handle(struct d3d8_handle_table *t, void *object, enum d3d8_handle_type type)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_handle_entry *entry;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (t->free_entries)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD index = t->free_entries - t->entries;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Use a free handle */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync entry = t->free_entries;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (entry->type != D3D8_HANDLE_FREE)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Handle %u(%p) is in the free list, but has type %#x.\n", index, entry, entry->type);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D8_INVALID_HANDLE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync t->free_entries = entry->object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync entry->object = object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync entry->type = type;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return index;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(t->entry_count < t->table_size))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Grow the table */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT new_size = t->table_size + (t->table_size >> 1);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_handle_entry *new_entries = HeapReAlloc(GetProcessHeap(),
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync 0, t->entries, new_size * sizeof(*t->entries));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!new_entries)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to grow the handle table.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D8_INVALID_HANDLE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync t->entries = new_entries;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync t->table_size = new_size;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync entry = &t->entries[t->entry_count];
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync entry->object = object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync entry->type = type;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return t->entry_count++;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void *d3d8_free_handle(struct d3d8_handle_table *t, DWORD handle, enum d3d8_handle_type type)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_handle_entry *entry;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync void *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (handle == D3D8_INVALID_HANDLE || handle >= t->entry_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle %u passed.\n", handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync entry = &t->entries[handle];
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (entry->type != type)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Handle %u(%p) is not of type %#x.\n", handle, entry, type);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = entry->object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync entry->object = t->free_entries;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync entry->type = D3D8_HANDLE_FREE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync t->free_entries = entry;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void *d3d8_get_object(struct d3d8_handle_table *t, DWORD handle, enum d3d8_handle_type type)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_handle_entry *entry;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (handle == D3D8_INVALID_HANDLE || handle >= t->entry_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle %u passed.\n", handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync entry = &t->entries[handle];
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (entry->type != type)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Handle %u(%p) is not of type %#x.\n", handle, entry, type);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return entry->object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic inline struct d3d8_device *impl_from_IDirect3DDevice8(IDirect3DDevice8 *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return CONTAINING_RECORD(iface, struct d3d8_device, IDirect3DDevice8_iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_QueryInterface(IDirect3DDevice8 *iface, REFIID riid, void **out)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, riid %s, out %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, debugstr_guid(riid), out);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (IsEqualGUID(riid, &IID_IDirect3DDevice8)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync || IsEqualGUID(riid, &IID_IUnknown))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DDevice8_AddRef(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *out = iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return S_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *out = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOINTERFACE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic ULONG WINAPI d3d8_device_AddRef(IDirect3DDevice8 *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ULONG ref = InterlockedIncrement(&device->ref);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("%p increasing refcount to %u.\n", iface, ref);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return ref;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic ULONG WINAPI d3d8_device_Release(IDirect3DDevice8 *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ULONG ref;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->inDestruction)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ref = InterlockedDecrement(&device->ref);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("%p decreasing refcount to %u.\n", iface, ref);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!ref)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3D8 *parent = device->d3d_parent;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync unsigned i;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Releasing wined3d device %p.\n", device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->inDestruction = TRUE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync for (i = 0; i < device->numConvertedDecls; ++i)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_vertex_declaration_destroy(device->decls[i].declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, device->decls);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->vertex_buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_buffer_decref(device->vertex_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->index_buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_buffer_decref(device->index_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_uninit_3d(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_release_focus_window(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_decref(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3D8_Release(parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return ref;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_TestCooperativeLevel(IDirect3DDevice8 *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->lost)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Device is lost.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_DEVICENOTRESET;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic UINT WINAPI d3d8_device_GetAvailableTextureMem(IDirect3DDevice8 *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_available_texture_mem(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_ResourceManagerDiscardBytes(IDirect3DDevice8 *iface, DWORD byte_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, byte_count %u.\n", iface, byte_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (byte_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Byte count ignored.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_evict_managed_resources(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetDirect3D(IDirect3DDevice8 *iface, IDirect3D8 **d3d8)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, d3d8 %p.\n", iface, d3d8);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!d3d8)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return IDirect3D8_QueryInterface(device->d3d_parent, &IID_IDirect3D8, (void **)d3d8);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetDeviceCaps(IDirect3DDevice8 *iface, D3DCAPS8 *caps)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3DCAPS *wined3d_caps;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, caps %p.\n", iface, caps);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!caps)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(wined3d_caps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*wined3d_caps))))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL; /* well this is what MSDN says to return */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_device_caps(device->wined3d_device, wined3d_caps);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync fixup_caps(wined3d_caps);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINECAPSTOD3D8CAPS(caps, wined3d_caps)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, wined3d_caps);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetDisplayMode(IDirect3DDevice8 *iface, D3DDISPLAYMODE *mode)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_display_mode wined3d_mode;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, mode %p.\n", iface, mode);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_display_mode(device->wined3d_device, 0, &wined3d_mode, NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (SUCCEEDED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync mode->Width = wined3d_mode.width;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync mode->Height = wined3d_mode.height;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync mode->RefreshRate = wined3d_mode.refresh_rate;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync mode->Format = d3dformat_from_wined3dformat(wined3d_mode.format_id);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetCreationParameters(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DDEVICE_CREATION_PARAMETERS *parameters)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, parameters %p.\n", iface, parameters);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_get_creation_parameters(device->wined3d_device,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync (struct wined3d_device_creation_parameters *)parameters);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetCursorProperties(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT hotspot_x, UINT hotspot_y, IDirect3DSurface8 *bitmap)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *bitmap_impl = unsafe_impl_from_IDirect3DSurface8(bitmap);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, hotspot_x %u, hotspot_y %u, bitmap %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, hotspot_x, hotspot_y, bitmap);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!bitmap)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("No cursor bitmap, returning D3DERR_INVALIDCALL.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_cursor_properties(device->wined3d_device,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hotspot_x, hotspot_y, bitmap_impl->wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void WINAPI d3d8_device_SetCursorPosition(IDirect3DDevice8 *iface, UINT x, UINT y, DWORD flags)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, x %u, y %u, flags %#x.\n", iface, x, y, flags);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_cursor_position(device->wined3d_device, x, y, flags);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic BOOL WINAPI d3d8_device_ShowCursor(IDirect3DDevice8 *iface, BOOL show)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BOOL ret;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, show %#x.\n", iface, show);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ret = wined3d_device_show_cursor(device->wined3d_device, show);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return ret;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreateAdditionalSwapChain(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRESENT_PARAMETERS *present_parameters, IDirect3DSwapChain8 **swapchain)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_swapchain_desc desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_swapchain *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, present_parameters %p, swapchain %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, present_parameters, swapchain);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_swapchain_desc_from_present_parameters(&desc, present_parameters);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (SUCCEEDED(d3d8_swapchain_create(device, &desc, &object)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *swapchain = &object->IDirect3DSwapChain8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters_from_wined3d_swapchain_desc(present_parameters, &desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT CDECL reset_enum_callback(struct wined3d_resource *resource)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource_desc desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource_get_desc(resource, &desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (desc.pool == WINED3D_POOL_DEFAULT)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *surface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (desc.resource_type == WINED3D_RTYPE_TEXTURE)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IUnknown *parent = wined3d_resource_get_parent(resource);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DBaseTexture8 *texture;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (SUCCEEDED(IUnknown_QueryInterface(parent, &IID_IDirect3DBaseTexture8, (void **)&texture)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DBaseTexture8_Release(texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Texture %p (resource %p) in pool D3DPOOL_DEFAULT blocks the Reset call.\n", texture, resource);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_DEVICELOST;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (desc.resource_type != WINED3D_RTYPE_SURFACE)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Resource %p in pool D3DPOOL_DEFAULT blocks the Reset call.\n", resource);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_DEVICELOST;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync surface = wined3d_resource_get_parent(resource);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (surface->refcount)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Surface %p (resource %p) in pool D3DPOOL_DEFAULT blocks the Reset call.\n", surface, resource);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_DEVICELOST;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Surface %p (resource %p) is an implicit resource with ref 0.\n", surface, resource);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_Reset(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRESENT_PARAMETERS *present_parameters)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_swapchain_desc swapchain_desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, present_parameters %p.\n", iface, present_parameters);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->vertex_buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_buffer_decref(device->vertex_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->vertex_buffer = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->vertex_buffer_size = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->index_buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_buffer_decref(device->index_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->index_buffer = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->index_buffer_size = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_swapchain_desc_from_present_parameters(&swapchain_desc, present_parameters);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (SUCCEEDED(hr = wined3d_device_reset(device->wined3d_device, &swapchain_desc,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync NULL, reset_enum_callback, TRUE)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_render_state(device->wined3d_device, WINED3D_RS_POINTSIZE_MIN, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->lost = FALSE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->lost = TRUE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_Present(IDirect3DDevice8 *iface, const RECT *src_rect,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const RECT *dst_rect, HWND dst_window_override, const RGNDATA *dirty_region)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, src_rect %s, dst_rect %s, dst_window_override %p, dirty_region %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect), dst_window_override, dirty_region);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_present(device->wined3d_device, src_rect, dst_rect,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync dst_window_override, dirty_region, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetBackBuffer(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT backbuffer_idx, D3DBACKBUFFER_TYPE backbuffer_type, IDirect3DSurface8 **backbuffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_surface *wined3d_surface = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *surface_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, backbuffer_idx %u, backbuffer_type %#x, backbuffer %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, backbuffer_idx, backbuffer_type, backbuffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_back_buffer(device->wined3d_device, 0, backbuffer_idx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync (enum wined3d_backbuffer_type)backbuffer_type, &wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (SUCCEEDED(hr) && wined3d_surface && backbuffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync surface_impl = wined3d_surface_get_parent(wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *backbuffer = &surface_impl->IDirect3DSurface8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface8_AddRef(*backbuffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetRasterStatus(IDirect3DDevice8 *iface, D3DRASTER_STATUS *raster_status)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, raster_status %p.\n", iface, raster_status);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_raster_status(device->wined3d_device, 0, (struct wined3d_raster_status *)raster_status);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void WINAPI d3d8_device_SetGammaRamp(IDirect3DDevice8 *iface, DWORD flags, const D3DGAMMARAMP *ramp)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, flags %#x, ramp %p.\n", iface, flags, ramp);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DGAMMARAMP is compatible with struct wined3d_gamma_ramp. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_gamma_ramp(device->wined3d_device, 0, flags, (const struct wined3d_gamma_ramp *)ramp);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void WINAPI d3d8_device_GetGammaRamp(IDirect3DDevice8 *iface, D3DGAMMARAMP *ramp)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, ramp %p.\n", iface, ramp);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DGAMMARAMP is compatible with struct wined3d_gamma_ramp. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_get_gamma_ramp(device->wined3d_device, 0, (struct wined3d_gamma_ramp *)ramp);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreateTexture(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, UINT levels, DWORD usage, D3DFORMAT format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPOOL pool, IDirect3DTexture8 **texture)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_texture *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, levels %u, usage %#x, format %#x, pool %#x, texture %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, levels, usage, format, pool, texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_OUTOFVIDEOMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = texture_init(object, device, width, height, levels, usage, format, pool);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize texture, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created texture %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *texture = (IDirect3DTexture8 *)&object->IDirect3DBaseTexture8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreateVolumeTexture(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, UINT depth, UINT levels, DWORD usage, D3DFORMAT format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPOOL pool, IDirect3DVolumeTexture8 **texture)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_texture *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, depth %u, levels %u, usage %#x, format %#x, pool %#x, texture %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, depth, levels, usage, format, pool, texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_OUTOFVIDEOMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = volumetexture_init(object, device, width, height, depth, levels, usage, format, pool);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize volume texture, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created volume texture %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *texture = (IDirect3DVolumeTexture8 *)&object->IDirect3DBaseTexture8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreateCubeTexture(IDirect3DDevice8 *iface, UINT edge_length,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool, IDirect3DCubeTexture8 **texture)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_texture *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, edge_length %u, levels %u, usage %#x, format %#x, pool %#x, texture %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, edge_length, levels, usage, format, pool, texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_OUTOFVIDEOMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = cubetexture_init(object, device, edge_length, levels, usage, format, pool);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize cube texture, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created cube texture %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *texture = (IDirect3DCubeTexture8 *)&object->IDirect3DBaseTexture8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreateVertexBuffer(IDirect3DDevice8 *iface, UINT size,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD usage, DWORD fvf, D3DPOOL pool, IDirect3DVertexBuffer8 **buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertexbuffer *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, size %u, usage %#x, fvf %#x, pool %#x, buffer %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, size, usage, fvf, pool, buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_OUTOFVIDEOMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = vertexbuffer_init(object, device, size, usage, fvf, pool);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize vertex buffer, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created vertex buffer %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *buffer = &object->IDirect3DVertexBuffer8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreateIndexBuffer(IDirect3DDevice8 *iface, UINT size,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD usage, D3DFORMAT format, D3DPOOL pool, IDirect3DIndexBuffer8 **buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_indexbuffer *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, size %u, usage %#x, format %#x, pool %#x, buffer %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, size, usage, format, pool, buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_OUTOFVIDEOMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = indexbuffer_init(object, device, size, usage, format, pool);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize index buffer, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created index buffer %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *buffer = &object->IDirect3DIndexBuffer8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT d3d8_device_create_surface(struct d3d8_device *device, UINT width, UINT height,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DFORMAT format, DWORD flags, IDirect3DSurface8 **surface, UINT usage, D3DPOOL pool,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("device %p, width %u, height %u, format %#x, flags %#x, surface %p,\n"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync "\tusage %#x, pool %#x, multisample_type %#x, multisample_quality %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device, width, height, format, flags, surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync usage, pool, multisample_type, multisample_quality);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object))))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Failed to allocate surface memory.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_OUTOFVIDEOMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = surface_init(object, device, width, height, format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync flags, usage, pool, multisample_type, multisample_quality)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize surface, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created surface %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *surface = &object->IDirect3DSurface8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreateRenderTarget(IDirect3DDevice8 *iface, UINT width,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT height, D3DFORMAT format, D3DMULTISAMPLE_TYPE multisample_type, BOOL lockable,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface8 **surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD flags = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, format %#x, multisample_type %#x, lockable %#x, surface %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, format, multisample_type, lockable, surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (lockable)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync flags |= WINED3D_SURFACE_MAPPABLE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return d3d8_device_create_surface(device, width, height, format, flags, surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DUSAGE_RENDERTARGET, D3DPOOL_DEFAULT, multisample_type, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreateDepthStencilSurface(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, D3DFORMAT format, D3DMULTISAMPLE_TYPE multisample_type,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface8 **surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, format %#x, multisample_type %#x, surface %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, format, multisample_type, surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* TODO: Verify that Discard is false */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return d3d8_device_create_surface(device, width, height, format, WINED3D_SURFACE_MAPPABLE,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync surface, D3DUSAGE_DEPTHSTENCIL, D3DPOOL_DEFAULT, multisample_type, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync/* IDirect3DDevice8Impl::CreateImageSurface returns surface with pool type SYSTEMMEM */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreateImageSurface(IDirect3DDevice8 *iface, UINT width,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT height, D3DFORMAT format, IDirect3DSurface8 **surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, format %#x, surface %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, format, surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return d3d8_device_create_surface(device, width, height, format, WINED3D_SURFACE_MAPPABLE,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync surface, 0, D3DPOOL_SYSTEMMEM, D3DMULTISAMPLE_NONE, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CopyRects(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface8 *src_surface, const RECT *src_rects, UINT rect_count,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface8 *dst_surface, const POINT *dst_points)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *src = unsafe_impl_from_IDirect3DSurface8(src_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *dst = unsafe_impl_from_IDirect3DSurface8(dst_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync enum wined3d_format_id src_format, dst_format;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource_desc wined3d_desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource *wined3d_resource;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT src_w, src_h;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, src_surface %p, src_rects %p, rect_count %u, dst_surface %p, dst_points %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, src_surface, src_rects, rect_count, dst_surface, dst_points);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Check that the source texture is in WINED3D_POOL_SYSTEM_MEM and the
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * destination texture is in WINED3D_POOL_DEFAULT. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource = wined3d_surface_get_resource(src->wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource_get_desc(wined3d_resource, &wined3d_desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (wined3d_desc.usage & WINED3DUSAGE_DEPTHSTENCIL)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Source %p is a depth stencil surface, returning D3DERR_INVALIDCALL.\n", src_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync src_format = wined3d_desc.format;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync src_w = wined3d_desc.width;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync src_h = wined3d_desc.height;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource = wined3d_surface_get_resource(dst->wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource_get_desc(wined3d_resource, &wined3d_desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (wined3d_desc.usage & WINED3DUSAGE_DEPTHSTENCIL)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Destination %p is a depth stencil surface, returning D3DERR_INVALIDCALL.\n", dst_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync dst_format = wined3d_desc.format;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Check that the source and destination formats match */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (src_format != dst_format && WINED3DFMT_UNKNOWN != dst_format)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Source %p format must match the destination %p format, returning D3DERR_INVALIDCALL.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync src_surface, dst_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else if (WINED3DFMT_UNKNOWN == dst_format)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Converting destination surface from WINED3DFMT_UNKNOWN to the source format.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = wined3d_surface_update_desc(dst->wined3d_surface, wined3d_desc.width, wined3d_desc.height,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync src_format, wined3d_desc.multisample_type, wined3d_desc.multisample_quality)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to update surface desc, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Quick if complete copy ... */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!rect_count && !src_rects && !dst_points)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync RECT rect = {0, 0, src_w, src_h};
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_surface_blt(dst->wined3d_surface, &rect,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync src->wined3d_surface, &rect, 0, NULL, WINED3D_TEXF_POINT);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync unsigned int i;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Copy rect by rect */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (src_rects && dst_points)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync for (i = 0; i < rect_count; ++i)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT w = src_rects[i].right - src_rects[i].left;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT h = src_rects[i].bottom - src_rects[i].top;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync RECT dst_rect = {dst_points[i].x, dst_points[i].y,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync dst_points[i].x + w, dst_points[i].y + h};
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_surface_blt(dst->wined3d_surface, &dst_rect,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync src->wined3d_surface, &src_rects[i], 0, NULL, WINED3D_TEXF_POINT);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync for (i = 0; i < rect_count; ++i)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT w = src_rects[i].right - src_rects[i].left;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT h = src_rects[i].bottom - src_rects[i].top;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync RECT dst_rect = {0, 0, w, h};
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_surface_blt(dst->wined3d_surface, &dst_rect,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync src->wined3d_surface, &src_rects[i], 0, NULL, WINED3D_TEXF_POINT);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return WINED3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_UpdateTexture(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DBaseTexture8 *src_texture, IDirect3DBaseTexture8 *dst_texture)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_texture *src_impl, *dst_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, src_texture %p, dst_texture %p.\n", iface, src_texture, dst_texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync src_impl = unsafe_impl_from_IDirect3DBaseTexture8(src_texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync dst_impl = unsafe_impl_from_IDirect3DBaseTexture8(dst_texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_update_texture(device->wined3d_device,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync src_impl->wined3d_texture, dst_impl->wined3d_texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetFrontBuffer(IDirect3DDevice8 *iface, IDirect3DSurface8 *dst_surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *dst_impl = unsafe_impl_from_IDirect3DSurface8(dst_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, dst_surface %p.\n", iface, dst_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!dst_surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid destination surface passed.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_front_buffer_data(device->wined3d_device, 0, dst_impl->wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetRenderTarget(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface8 *render_target, IDirect3DSurface8 *depth_stencil)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *rt_impl = unsafe_impl_from_IDirect3DSurface8(render_target);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *ds_impl = unsafe_impl_from_IDirect3DSurface8(depth_stencil);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_surface *original_ds = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr = D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, render_target %p, depth_stencil %p.\n", iface, render_target, depth_stencil);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (ds_impl)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource_desc ds_desc, rt_desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource *wined3d_resource;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_surface *original_rt = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* If no render target is passed in check the size against the current RT */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!render_target)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(original_rt = wined3d_device_get_render_target(device->wined3d_device, 0)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_NOTFOUND;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource = wined3d_surface_get_resource(original_rt);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource = wined3d_surface_get_resource(rt_impl->wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource_get_desc(wined3d_resource, &rt_desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource = wined3d_surface_get_resource(ds_impl->wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource_get_desc(wined3d_resource, &ds_desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (ds_desc.width < rt_desc.width || ds_desc.height < rt_desc.height)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Depth stencil is smaller than the render target, returning D3DERR_INVALIDCALL\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync original_ds = wined3d_device_get_depth_stencil(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_depth_stencil(device->wined3d_device, ds_impl ? ds_impl->wined3d_surface : NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (render_target)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_render_target(device->wined3d_device, 0, rt_impl->wined3d_surface, TRUE);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_depth_stencil(device->wined3d_device, original_ds);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetRenderTarget(IDirect3DDevice8 *iface, IDirect3DSurface8 **render_target)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_surface *wined3d_surface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *surface_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, render_target %p.\n", iface, render_target);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!render_target)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((wined3d_surface = wined3d_device_get_render_target(device->wined3d_device, 0)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync surface_impl = wined3d_surface_get_parent(wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *render_target = &surface_impl->IDirect3DSurface8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface8_AddRef(*render_target);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to get wined3d render target.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *render_target = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = D3DERR_NOTFOUND;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetDepthStencilSurface(IDirect3DDevice8 *iface, IDirect3DSurface8 **depth_stencil)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_surface *wined3d_surface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *surface_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr = D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, depth_stencil %p.\n", iface, depth_stencil);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!depth_stencil)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((wined3d_surface = wined3d_device_get_depth_stencil(device->wined3d_device)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync surface_impl = wined3d_surface_get_parent(wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *depth_stencil = &surface_impl->IDirect3DSurface8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface8_AddRef(*depth_stencil);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = WINED3DERR_NOTFOUND;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *depth_stencil = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_BeginScene(IDirect3DDevice8 *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_begin_scene(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI DECLSPEC_HOTPATCH d3d8_device_EndScene(IDirect3DDevice8 *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_end_scene(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_Clear(IDirect3DDevice8 *iface, DWORD rect_count,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const D3DRECT *rects, DWORD flags, D3DCOLOR color, float z, DWORD stencil)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const struct wined3d_color c =
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ((color >> 16) & 0xff) / 255.0f,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ((color >> 8) & 0xff) / 255.0f,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync (color & 0xff) / 255.0f,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ((color >> 24) & 0xff) / 255.0f,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync };
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, rect_count %u, rects %p, flags %#x, color 0x%08x, z %.8e, stencil %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, rect_count, rects, flags, color, z, stencil);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_clear(device->wined3d_device, rect_count, (const RECT *)rects, flags, &c, z, stencil);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetTransform(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DTRANSFORMSTATETYPE state, const D3DMATRIX *matrix)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, state %#x, matrix %p.\n", iface, state, matrix);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DMATRIX is compatible with struct wined3d_matrix. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_transform(device->wined3d_device, state, (const struct wined3d_matrix *)matrix);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetTransform(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DTRANSFORMSTATETYPE state, D3DMATRIX *matrix)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, state %#x, matrix %p.\n", iface, state, matrix);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DMATRIX is compatible with struct wined3d_matrix. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_get_transform(device->wined3d_device, state, (struct wined3d_matrix *)matrix);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_MultiplyTransform(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DTRANSFORMSTATETYPE state, const D3DMATRIX *matrix)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, state %#x, matrix %p.\n", iface, state, matrix);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DMATRIX is compatible with struct wined3d_matrix. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_multiply_transform(device->wined3d_device, state, (const struct wined3d_matrix *)matrix);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetViewport(IDirect3DDevice8 *iface, const D3DVIEWPORT8 *viewport)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, viewport %p.\n", iface, viewport);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DVIEWPORT8 is compatible with struct wined3d_viewport. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_viewport(device->wined3d_device, (const struct wined3d_viewport *)viewport);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetViewport(IDirect3DDevice8 *iface, D3DVIEWPORT8 *viewport)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, viewport %p.\n", iface, viewport);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DVIEWPORT8 is compatible with struct wined3d_viewport. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_get_viewport(device->wined3d_device, (struct wined3d_viewport *)viewport);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetMaterial(IDirect3DDevice8 *iface, const D3DMATERIAL8 *material)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, material %p.\n", iface, material);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DMATERIAL8 is compatible with struct wined3d_material. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_material(device->wined3d_device, (const struct wined3d_material *)material);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetMaterial(IDirect3DDevice8 *iface, D3DMATERIAL8 *material)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, material %p.\n", iface, material);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DMATERIAL8 is compatible with struct wined3d_material. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_get_material(device->wined3d_device, (struct wined3d_material *)material);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetLight(IDirect3DDevice8 *iface, DWORD index, const D3DLIGHT8 *light)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, index %u, light %p.\n", iface, index, light);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DLIGHT8 is compatible with struct wined3d_light. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_light(device->wined3d_device, index, (const struct wined3d_light *)light);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetLight(IDirect3DDevice8 *iface, DWORD index, D3DLIGHT8 *light)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, index %u, light %p.\n", iface, index, light);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DLIGHT8 is compatible with struct wined3d_light. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_light(device->wined3d_device, index, (struct wined3d_light *)light);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_LightEnable(IDirect3DDevice8 *iface, DWORD index, BOOL enable)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, index %u, enable %#x.\n", iface, index, enable);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_light_enable(device->wined3d_device, index, enable);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetLightEnable(IDirect3DDevice8 *iface, DWORD index, BOOL *enable)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, index %u, enable %p.\n", iface, index, enable);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_light_enable(device->wined3d_device, index, enable);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetClipPlane(IDirect3DDevice8 *iface, DWORD index, const float *plane)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, index %u, plane %p.\n", iface, index, plane);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_clip_plane(device->wined3d_device, index, (const struct wined3d_vec4 *)plane);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetClipPlane(IDirect3DDevice8 *iface, DWORD index, float *plane)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, index %u, plane %p.\n", iface, index, plane);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_clip_plane(device->wined3d_device, index, (struct wined3d_vec4 *)plane);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetRenderState(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DRENDERSTATETYPE state, DWORD value)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, state %#x, value %#x.\n", iface, state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync switch (state)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DRS_ZBIAS:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_render_state(device->wined3d_device, WINED3D_RS_DEPTHBIAS, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync break;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync default:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_render_state(device->wined3d_device, state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetRenderState(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DRENDERSTATETYPE state, DWORD *value)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, state %#x, value %p.\n", iface, state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync switch (state)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DRS_ZBIAS:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *value = wined3d_device_get_render_state(device->wined3d_device, WINED3D_RS_DEPTHBIAS);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync break;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync default:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *value = wined3d_device_get_render_state(device->wined3d_device, state);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_BeginStateBlock(IDirect3DDevice8 *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_begin_stateblock(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_EndStateBlock(IDirect3DDevice8 *iface, DWORD *token)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_stateblock *stateblock;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, token %p.\n", iface, token);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Tell wineD3D to endstateblock before anything else (in case we run out
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * of memory later and cause locking problems)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_end_stateblock(device->wined3d_device, &stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("IWineD3DDevice_EndStateBlock returned an error\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *token = d3d8_allocate_handle(&device->handle_table, stateblock, D3D8_HANDLE_SB);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (*token == D3D8_INVALID_HANDLE)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to create a handle\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_stateblock_decref(stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_FAIL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ++*token;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Returning %#x (%p).\n", *token, stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_ApplyStateBlock(IDirect3DDevice8 *iface, DWORD token)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_stateblock *stateblock;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, token %#x.\n", iface, token);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!token)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync stateblock = d3d8_get_object(&device->handle_table, token - 1, D3D8_HANDLE_SB);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!stateblock)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle (%#x) passed.\n", token);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_stateblock_apply(stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CaptureStateBlock(IDirect3DDevice8 *iface, DWORD token)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_stateblock *stateblock;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, token %#x.\n", iface, token);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync stateblock = d3d8_get_object(&device->handle_table, token - 1, D3D8_HANDLE_SB);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!stateblock)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle (%#x) passed.\n", token);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_stateblock_capture(stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_DeleteStateBlock(IDirect3DDevice8 *iface, DWORD token)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_stateblock *stateblock;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, token %#x.\n", iface, token);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync stateblock = d3d8_free_handle(&device->handle_table, token - 1, D3D8_HANDLE_SB);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!stateblock)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle (%#x) passed.\n", token);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (wined3d_stateblock_decref(stateblock))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Stateblock %p has references left, this shouldn't happen.\n", stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreateStateBlock(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DSTATEBLOCKTYPE type, DWORD *handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_stateblock *stateblock;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, type %#x, handle %p.\n", iface, type, handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (type != D3DSBT_ALL
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync && type != D3DSBT_PIXELSTATE
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync && type != D3DSBT_VERTEXSTATE)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Unexpected stateblock type, returning D3DERR_INVALIDCALL\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_stateblock_create(device->wined3d_device, (enum wined3d_stateblock_type)type, &stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("IWineD3DDevice_CreateStateBlock failed, hr %#x\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *handle = d3d8_allocate_handle(&device->handle_table, stateblock, D3D8_HANDLE_SB);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (*handle == D3D8_INVALID_HANDLE)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to allocate a handle.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_stateblock_decref(stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_FAIL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ++*handle;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Returning %#x (%p).\n", *handle, stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetClipStatus(IDirect3DDevice8 *iface, const D3DCLIPSTATUS8 *clip_status)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, clip_status %p.\n", iface, clip_status);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* FIXME: Verify that D3DCLIPSTATUS8 ~= struct wined3d_clip_status. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_clip_status(device->wined3d_device, (const struct wined3d_clip_status *)clip_status);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetClipStatus(IDirect3DDevice8 *iface, D3DCLIPSTATUS8 *clip_status)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, clip_status %p.\n", iface, clip_status);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_clip_status(device->wined3d_device, (struct wined3d_clip_status *)clip_status);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetTexture(IDirect3DDevice8 *iface, DWORD stage, IDirect3DBaseTexture8 **texture)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_texture *wined3d_texture;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_texture *texture_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stage %u, texture %p.\n", iface, stage, texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!texture)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((wined3d_texture = wined3d_device_get_texture(device->wined3d_device, stage)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync texture_impl = wined3d_texture_get_parent(wined3d_texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *texture = &texture_impl->IDirect3DBaseTexture8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DBaseTexture8_AddRef(*texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *texture = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetTexture(IDirect3DDevice8 *iface, DWORD stage, IDirect3DBaseTexture8 *texture)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_texture *texture_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stage %u, texture %p.\n", iface, stage, texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync texture_impl = unsafe_impl_from_IDirect3DBaseTexture8(texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_texture(device->wined3d_device, stage,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync texture_impl ? texture_impl->wined3d_texture : NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic const struct tss_lookup
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BOOL sampler_state;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync enum wined3d_texture_stage_state state;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsynctss_lookup[] =
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_INVALID}, /* 0, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_COLOR_OP}, /* 1, D3DTSS_COLOROP */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_COLOR_ARG1}, /* 2, D3DTSS_COLORARG1 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_COLOR_ARG2}, /* 3, D3DTSS_COLORARG2 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_ALPHA_OP}, /* 4, D3DTSS_ALPHAOP */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_ALPHA_ARG1}, /* 5, D3DTSS_ALPHAARG1 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_ALPHA_ARG2}, /* 6, D3DTSS_ALPHAARG2 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_BUMPENV_MAT00}, /* 7, D3DTSS_BUMPENVMAT00 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_BUMPENV_MAT01}, /* 8, D3DTSS_BUMPENVMAT01 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_BUMPENV_MAT10}, /* 9, D3DTSS_BUMPENVMAT10 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_BUMPENV_MAT11}, /* 10, D3DTSS_BUMPENVMAT11 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_TEXCOORD_INDEX}, /* 11, D3DTSS_TEXCOORDINDEX */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_INVALID}, /* 12, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {TRUE, WINED3D_SAMP_ADDRESS_U}, /* 13, D3DTSS_ADDRESSU */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {TRUE, WINED3D_SAMP_ADDRESS_V}, /* 14, D3DTSS_ADDRESSV */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {TRUE, WINED3D_SAMP_BORDER_COLOR}, /* 15, D3DTSS_BORDERCOLOR */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {TRUE, WINED3D_SAMP_MAG_FILTER}, /* 16, D3DTSS_MAGFILTER */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {TRUE, WINED3D_SAMP_MIN_FILTER}, /* 17, D3DTSS_MINFILTER */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {TRUE, WINED3D_SAMP_MIP_FILTER}, /* 18, D3DTSS_MIPFILTER */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {TRUE, WINED3D_SAMP_MIPMAP_LOD_BIAS}, /* 19, D3DTSS_MIPMAPLODBIAS */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {TRUE, WINED3D_SAMP_MAX_MIP_LEVEL}, /* 20, D3DTSS_MAXMIPLEVEL */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {TRUE, WINED3D_SAMP_MAX_ANISOTROPY}, /* 21, D3DTSS_MAXANISOTROPY */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_BUMPENV_LSCALE}, /* 22, D3DTSS_BUMPENVLSCALE */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_BUMPENV_LOFFSET}, /* 23, D3DTSS_BUMPENVLOFFSET */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_TEXTURE_TRANSFORM_FLAGS}, /* 24, D3DTSS_TEXTURETRANSFORMFLAGS */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {TRUE, WINED3D_SAMP_ADDRESS_W}, /* 25, D3DTSS_ADDRESSW */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_COLOR_ARG0}, /* 26, D3DTSS_COLORARG0 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_ALPHA_ARG0}, /* 27, D3DTSS_ALPHAARG0 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {FALSE, WINED3D_TSS_RESULT_ARG}, /* 28, D3DTSS_RESULTARG */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync};
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetTextureStageState(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD stage, D3DTEXTURESTAGESTATETYPE Type, DWORD *value)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const struct tss_lookup *l;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stage %u, state %#x, value %p.\n", iface, stage, Type, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (Type >= sizeof(tss_lookup) / sizeof(*tss_lookup))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid Type %#x passed.\n", Type);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync l = &tss_lookup[Type];
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (l->sampler_state)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *value = wined3d_device_get_sampler_state(device->wined3d_device, stage, l->state);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *value = wined3d_device_get_texture_stage_state(device->wined3d_device, stage, l->state);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetTextureStageState(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD stage, D3DTEXTURESTAGESTATETYPE type, DWORD value)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const struct tss_lookup *l;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stage %u, state %#x, value %#x.\n", iface, stage, type, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (type >= sizeof(tss_lookup) / sizeof(*tss_lookup))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid type %#x passed.\n", type);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync l = &tss_lookup[type];
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (l->sampler_state)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_sampler_state(device->wined3d_device, stage, l->state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_texture_stage_state(device->wined3d_device, stage, l->state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_ValidateDevice(IDirect3DDevice8 *iface, DWORD *pass_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, pass_count %p.\n", iface, pass_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_validate_device(device->wined3d_device, pass_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetInfo(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD info_id, void *info, DWORD info_size)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, info_id %#x, info %p, info_size %u stub!\n", iface, info_id, info, info_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetPaletteEntries(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT palette_idx, const PALETTEENTRY *entries)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("iface %p, palette_idx %u, entries %p unimplemented\n", iface, palette_idx, entries);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* GPUs stopped supporting palettized textures with the Shader Model 1 generation. Wined3d
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * does not have a d3d8/9-style palette API */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetPaletteEntries(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT palette_idx, PALETTEENTRY *entries)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, palette_idx %u, entries %p unimplemented.\n", iface, palette_idx, entries);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetCurrentTexturePalette(IDirect3DDevice8 *iface, UINT palette_idx)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("iface %p, palette_idx %u unimplemented.\n", iface, palette_idx);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetCurrentTexturePalette(IDirect3DDevice8 *iface, UINT *palette_idx)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, palette_idx %p unimplemented.\n", iface, palette_idx);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_DrawPrimitive(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRIMITIVETYPE primitive_type, UINT start_vertex, UINT primitive_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, primitive_type %#x, start_vertex %u, primitive_count %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, primitive_type, start_vertex, primitive_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_primitive_type(device->wined3d_device, primitive_type);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_draw_primitive(device->wined3d_device, start_vertex,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vertex_count_from_primitive_count(primitive_type, primitive_count));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_DrawIndexedPrimitive(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRIMITIVETYPE primitive_type, UINT min_vertex_idx, UINT vertex_count,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT start_idx, UINT primitive_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, primitive_type %#x, min_vertex_idx %u, vertex_count %u, start_idx %u, primitive_count %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, primitive_type, min_vertex_idx, vertex_count, start_idx, primitive_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_primitive_type(device->wined3d_device, primitive_type);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_draw_indexed_primitive(device->wined3d_device, start_idx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vertex_count_from_primitive_count(primitive_type, primitive_count));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void STDMETHODCALLTYPE d3d8_null_wined3d_object_destroyed(void *parent) {}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic const struct wined3d_parent_ops d3d8_null_wined3d_parent_ops =
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_null_wined3d_object_destroyed,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync};
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync/* The caller is responsible for wined3d locking */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT d3d8_device_prepare_vertex_buffer(struct d3d8_device *device, UINT min_size)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->vertex_buffer_size < min_size || !device->vertex_buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT size = max(device->vertex_buffer_size * 2, min_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_buffer *buffer;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Growing vertex buffer to %u bytes\n", size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_buffer_create_vb(device->wined3d_device, size, WINED3DUSAGE_DYNAMIC | WINED3DUSAGE_WRITEONLY,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_POOL_DEFAULT, NULL, &d3d8_null_wined3d_parent_ops, &buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("(%p) wined3d_buffer_create_vb failed with hr = %08x\n", device, hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->vertex_buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_buffer_decref(device->vertex_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->vertex_buffer = buffer;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->vertex_buffer_size = size;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->vertex_buffer_pos = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_DrawPrimitiveUP(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRIMITIVETYPE primitive_type, UINT primitive_count, const void *data,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT stride)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT vtx_count = vertex_count_from_primitive_count(primitive_type, primitive_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT size = vtx_count * stride;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT vb_pos, align;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BYTE *buffer_data;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, primitive_type %#x, primitive_count %u, data %p, stride %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, primitive_type, primitive_count, data, stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!primitive_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("primitive_count is 0, returning D3D_OK\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = d3d8_device_prepare_vertex_buffer(device, size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vb_pos = device->vertex_buffer_pos;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync align = vb_pos % stride;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (align) align = stride - align;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (vb_pos + size + align > device->vertex_buffer_size)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vb_pos = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vb_pos += align;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_buffer_map(device->vertex_buffer, vb_pos, size, &buffer_data,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vb_pos ? WINED3D_MAP_NOOVERWRITE : WINED3D_MAP_DISCARD);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync memcpy(buffer_data, data, size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_buffer_unmap(device->vertex_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->vertex_buffer_pos = vb_pos + size;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_stream_source(device->wined3d_device, 0, device->vertex_buffer, 0, stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_primitive_type(device->wined3d_device, primitive_type);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_draw_primitive(device->wined3d_device, vb_pos / stride, vtx_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_stream_source(device->wined3d_device, 0, NULL, 0, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncdone:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync/* The caller is responsible for wined3d locking */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT d3d8_device_prepare_index_buffer(struct d3d8_device *device, UINT min_size)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->index_buffer_size < min_size || !device->index_buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT size = max(device->index_buffer_size * 2, min_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_buffer *buffer;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Growing index buffer to %u bytes\n", size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_buffer_create_ib(device->wined3d_device, size, WINED3DUSAGE_DYNAMIC | WINED3DUSAGE_WRITEONLY,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_POOL_DEFAULT, NULL, &d3d8_null_wined3d_parent_ops, &buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("(%p) wined3d_buffer_create_ib failed with hr = %08x\n", device, hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->index_buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_buffer_decref(device->index_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->index_buffer = buffer;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->index_buffer_size = size;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->index_buffer_pos = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_DrawIndexedPrimitiveUP(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRIMITIVETYPE primitive_type, UINT min_vertex_idx, UINT vertex_count,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT primitive_count, const void *index_data, D3DFORMAT index_format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const void *vertex_data, UINT vertex_stride)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BYTE *buffer_data;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT idx_count = vertex_count_from_primitive_count(primitive_type, primitive_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT idx_fmt_size = index_format == D3DFMT_INDEX16 ? 2 : 4;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT idx_size = idx_count * idx_fmt_size;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT ib_pos;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT vtx_size = vertex_count * vertex_stride;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT vb_pos, align;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, primitive_type %#x, min_vertex_idx %u, vertex_count %u, primitive_count %u,\n"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync "index_data %p, index_format %#x, vertex_data %p, vertex_stride %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, primitive_type, min_vertex_idx, vertex_count, primitive_count,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync index_data, index_format, vertex_data, vertex_stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!primitive_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("primitive_count is 0, returning D3D_OK\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = d3d8_device_prepare_vertex_buffer(device, vtx_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vb_pos = device->vertex_buffer_pos;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync align = vb_pos % vertex_stride;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (align) align = vertex_stride - align;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (vb_pos + vtx_size + align > device->vertex_buffer_size)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vb_pos = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vb_pos += align;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_buffer_map(device->vertex_buffer, vb_pos, vtx_size, &buffer_data,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vb_pos ? WINED3D_MAP_NOOVERWRITE : WINED3D_MAP_DISCARD);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync memcpy(buffer_data, vertex_data, vtx_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_buffer_unmap(device->vertex_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->vertex_buffer_pos = vb_pos + vtx_size;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = d3d8_device_prepare_index_buffer(device, idx_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ib_pos = device->index_buffer_pos;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync align = ib_pos % idx_fmt_size;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (align) align = idx_fmt_size - align;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (ib_pos + idx_size + align > device->index_buffer_size)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ib_pos = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ib_pos += align;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_buffer_map(device->index_buffer, ib_pos, idx_size, &buffer_data,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ib_pos ? WINED3D_MAP_NOOVERWRITE : WINED3D_MAP_DISCARD);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync memcpy(buffer_data, index_data, idx_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_buffer_unmap(device->index_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->index_buffer_pos = ib_pos + idx_size;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_stream_source(device->wined3d_device, 0, device->vertex_buffer, 0, vertex_stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_index_buffer(device->wined3d_device, device->index_buffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3dformat_from_d3dformat(index_format));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_base_vertex_index(device->wined3d_device, vb_pos / vertex_stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_primitive_type(device->wined3d_device, primitive_type);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_draw_indexed_primitive(device->wined3d_device, ib_pos / idx_fmt_size, idx_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_stream_source(device->wined3d_device, 0, NULL, 0, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_index_buffer(device->wined3d_device, NULL, WINED3DFMT_UNKNOWN);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_base_vertex_index(device->wined3d_device, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncdone:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_ProcessVertices(IDirect3DDevice8 *iface, UINT src_start_idx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT dst_idx, UINT vertex_count, IDirect3DVertexBuffer8 *dst_buffer, DWORD flags)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertexbuffer *dst = unsafe_impl_from_IDirect3DVertexBuffer8(dst_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, src_start_idx %u, dst_idx %u, vertex_count %u, dst_buffer %p, flags %#x.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, src_start_idx, dst_idx, vertex_count, dst_buffer, flags);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_process_vertices(device->wined3d_device, src_start_idx, dst_idx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vertex_count, dst->wined3d_buffer, NULL, flags, dst->fvf);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreateVertexShader(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const DWORD *declaration, const DWORD *byte_code, DWORD *shader, DWORD usage)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertex_shader *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD shader_handle;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD handle;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, declaration %p, byte_code %p, shader %p, usage %#x.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, declaration, byte_code, shader, usage);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync handle = d3d8_allocate_handle(&device->handle_table, object, D3D8_HANDLE_VS);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (handle == D3D8_INVALID_HANDLE)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to allocate vertex shader handle.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync shader_handle = handle + VS_HIGHESTFIXEDFXF + 1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = d3d8_vertex_shader_init(object, device, declaration, byte_code, shader_handle, usage);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize vertex shader, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_free_handle(&device->handle_table, handle, D3D8_HANDLE_VS);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created vertex shader %p (handle %#x).\n", object, shader_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = shader_handle;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic struct d3d8_vertex_declaration *d3d8_device_get_fvf_declaration(struct d3d8_device *device, DWORD fvf)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertex_declaration *d3d8_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct FvfToDecl *convertedDecls = device->decls;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync int p, low, high; /* deliberately signed */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Searching for declaration for fvf %08x... ", fvf);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync low = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync high = device->numConvertedDecls - 1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync while (low <= high)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync p = (low + high) >> 1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("%d ", p);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (convertedDecls[p].fvf == fvf)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("found %p\n", convertedDecls[p].declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return convertedDecls[p].declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (convertedDecls[p].fvf < fvf)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync low = p + 1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync high = p - 1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("not found. Creating and inserting at position %d.\n", low);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(d3d8_declaration = HeapAlloc(GetProcessHeap(), 0, sizeof(*d3d8_declaration))))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = d3d8_vertex_declaration_init_fvf(d3d8_declaration, device, fvf)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize vertex declaration, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, d3d8_declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->declArraySize == device->numConvertedDecls)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT grow = device->declArraySize / 2;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync convertedDecls = HeapReAlloc(GetProcessHeap(), 0, convertedDecls,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync sizeof(*convertedDecls) * (device->numConvertedDecls + grow));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!convertedDecls)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_vertex_declaration_destroy(d3d8_declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->decls = convertedDecls;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->declArraySize += grow;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync memmove(convertedDecls + low + 1, convertedDecls + low,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync sizeof(*convertedDecls) * (device->numConvertedDecls - low));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync convertedDecls[low].declaration = d3d8_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync convertedDecls[low].fvf = fvf;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ++device->numConvertedDecls;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Returning %p. %u decls in array.\n", d3d8_declaration, device->numConvertedDecls);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return d3d8_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetVertexShader(IDirect3DDevice8 *iface, DWORD shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertex_shader *shader_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %#x.\n", iface, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (VS_HIGHESTFIXEDFXF >= shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Setting FVF, %#x\n", shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_vertex_declaration(device->wined3d_device,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_get_fvf_declaration(device, shader)->wined3d_vertex_declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_vertex_shader(device->wined3d_device, NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Setting shader\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(shader_impl = d3d8_get_object(&device->handle_table, shader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle (%#x) passed.\n", shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_vertex_declaration(device->wined3d_device,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync shader_impl->vertex_declaration->wined3d_vertex_declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_vertex_shader(device->wined3d_device, shader_impl->wined3d_shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetVertexShader(IDirect3DDevice8 *iface, DWORD *shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_vertex_declaration *wined3d_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertex_declaration *d3d8_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %p.\n", iface, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((wined3d_declaration = wined3d_device_get_vertex_declaration(device->wined3d_device)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_declaration = wined3d_vertex_declaration_get_parent(wined3d_declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = d3d8_declaration->shader_handle;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Returning %#x.\n", *shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_DeleteVertexShader(IDirect3DDevice8 *iface, DWORD shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertex_shader *shader_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %#x.\n", iface, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(shader_impl = d3d8_free_handle(&device->handle_table, shader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle (%#x) passed.\n", shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shader_impl->wined3d_shader
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync && wined3d_device_get_vertex_shader(device->wined3d_device) == shader_impl->wined3d_shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DDevice8_SetVertexShader(iface, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_vertex_shader_destroy(shader_impl);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetVertexShaderConstant(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD start_register, const void *data, DWORD count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, start_register %u, data %p, count %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, start_register, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (start_register + count > D3D8_MAX_VERTEX_SHADER_CONSTANTF)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Trying to access %u constants, but d3d8 only supports %u\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync start_register + count, D3D8_MAX_VERTEX_SHADER_CONSTANTF);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_vs_consts_f(device->wined3d_device, start_register, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetVertexShaderConstant(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD start_register, void *data, DWORD count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, start_register %u, data %p, count %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, start_register, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (start_register + count > D3D8_MAX_VERTEX_SHADER_CONSTANTF)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Trying to access %u constants, but d3d8 only supports %u\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync start_register + count, D3D8_MAX_VERTEX_SHADER_CONSTANTF);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_vs_consts_f(device->wined3d_device, start_register, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetVertexShaderDeclaration(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD shader, void *data, DWORD *data_size)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertex_declaration *declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertex_shader *shader_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %#x, data %p, data_size %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, shader, data, data_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync shader_impl = d3d8_get_object(&device->handle_table, shader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!shader_impl)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle (%#x) passed.\n", shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync declaration = shader_impl->vertex_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!data)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *data_size = declaration->elements_size;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* MSDN claims that if *data_size is smaller than the required size
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * we should write the required size and return D3DERR_MOREDATA.
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * That's not actually true. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (*data_size < declaration->elements_size)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync memcpy(data, declaration->elements, declaration->elements_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetVertexShaderFunction(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD shader, void *data, DWORD *data_size)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertex_shader *shader_impl = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %#x, data %p, data_size %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, shader, data, data_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(shader_impl = d3d8_get_object(&device->handle_table, shader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle (%#x) passed.\n", shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!shader_impl->wined3d_shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *data_size = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_shader_get_byte_code(shader_impl->wined3d_shader, data, data_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetIndices(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DIndexBuffer8 *buffer, UINT base_vertex_idx)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_indexbuffer *ib = unsafe_impl_from_IDirect3DIndexBuffer8(buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, buffer %p, base_vertex_idx %u.\n", iface, buffer, base_vertex_idx);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* WineD3D takes an INT(due to d3d9), but d3d8 uses UINTs. Do I have to add a check here that
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * the UINT doesn't cause an overflow in the INT? It seems rather unlikely because such large
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * vertex buffers can't be created to address them with an index that requires the 32nd bit
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * (4 Byte minimum vertex size * 2^31-1 -> 8 gb buffer. The index sign would be the least
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * problem)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_base_vertex_index(device->wined3d_device, base_vertex_idx);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_index_buffer(device->wined3d_device,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ib ? ib->wined3d_buffer : NULL,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ib ? ib->format : WINED3DFMT_UNKNOWN);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetIndices(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DIndexBuffer8 **buffer, UINT *base_vertex_index)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync enum wined3d_format_id wined3d_format;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_buffer *wined3d_buffer;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_indexbuffer *buffer_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, buffer %p, base_vertex_index %p.\n", iface, buffer, base_vertex_index);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* The case from UINT to INT is safe because d3d8 will never set negative values */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *base_vertex_index = wined3d_device_get_base_vertex_index(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((wined3d_buffer = wined3d_device_get_index_buffer(device->wined3d_device, &wined3d_format)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync buffer_impl = wined3d_buffer_get_parent(wined3d_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *buffer = &buffer_impl->IDirect3DIndexBuffer8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DIndexBuffer8_AddRef(*buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *buffer = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_CreatePixelShader(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const DWORD *byte_code, DWORD *shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_pixel_shader *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD shader_handle;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD handle;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, byte_code %p, shader %p.\n", iface, byte_code, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync handle = d3d8_allocate_handle(&device->handle_table, object, D3D8_HANDLE_PS);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (handle == D3D8_INVALID_HANDLE)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to allocate pixel shader handle.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync shader_handle = handle + VS_HIGHESTFIXEDFXF + 1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = d3d8_pixel_shader_init(object, device, byte_code, shader_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize pixel shader, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_free_handle(&device->handle_table, handle, D3D8_HANDLE_PS);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created pixel shader %p (handle %#x).\n", object, shader_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = shader_handle;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetPixelShader(IDirect3DDevice8 *iface, DWORD shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_pixel_shader *shader_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %#x.\n", iface, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_pixel_shader(device->wined3d_device, NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(shader_impl = d3d8_get_object(&device->handle_table, shader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_PS)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle (%#x) passed.\n", shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Setting shader %p.\n", shader_impl);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_pixel_shader(device->wined3d_device, shader_impl->wined3d_shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetPixelShader(IDirect3DDevice8 *iface, DWORD *shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_shader *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %p.\n", iface, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((object = wined3d_device_get_pixel_shader(device->wined3d_device)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_pixel_shader *d3d8_shader;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_shader = wined3d_shader_get_parent(object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = d3d8_shader->handle;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Returning %#x.\n", *shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_DeletePixelShader(IDirect3DDevice8 *iface, DWORD shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_pixel_shader *shader_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %#x.\n", iface, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(shader_impl = d3d8_free_handle(&device->handle_table, shader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_PS)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle (%#x) passed.\n", shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (wined3d_device_get_pixel_shader(device->wined3d_device) == shader_impl->wined3d_shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DDevice8_SetPixelShader(iface, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_pixel_shader_destroy(shader_impl);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetPixelShaderConstant(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD start_register, const void *data, DWORD count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, start_register %u, data %p, count %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, start_register, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_ps_consts_f(device->wined3d_device, start_register, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetPixelShaderConstant(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD start_register, void *data, DWORD count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, start_register %u, data %p, count %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, start_register, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_ps_consts_f(device->wined3d_device, start_register, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetPixelShaderFunction(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD shader, void *data, DWORD *data_size)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_pixel_shader *shader_impl = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %#x, data %p, data_size %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, shader, data, data_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(shader_impl = d3d8_get_object(&device->handle_table, shader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_PS)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid handle (%#x) passed.\n", shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_shader_get_byte_code(shader_impl->wined3d_shader, data, data_size);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_DrawRectPatch(IDirect3DDevice8 *iface, UINT handle,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const float *segment_count, const D3DRECTPATCH_INFO *patch_info)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, handle %#x, segment_count %p, patch_info %p unimplemented.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, handle, segment_count, patch_info);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_DrawTriPatch(IDirect3DDevice8 *iface, UINT handle,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const float *segment_count, const D3DTRIPATCH_INFO *patch_info)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, handle %#x, segment_count %p, patch_info %p unimplemented.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, handle, segment_count, patch_info);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_DeletePatch(IDirect3DDevice8 *iface, UINT handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, handle %#x unimplemented.\n", iface, handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_SetStreamSource(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT stream_idx, IDirect3DVertexBuffer8 *buffer, UINT stride)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertexbuffer *buffer_impl = unsafe_impl_from_IDirect3DVertexBuffer8(buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stream_idx %u, buffer %p, stride %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, stream_idx, buffer, stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_stream_source(device->wined3d_device, stream_idx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync buffer_impl ? buffer_impl->wined3d_buffer : NULL, 0, stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d8_device_GetStreamSource(IDirect3DDevice8 *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT stream_idx, IDirect3DVertexBuffer8 **buffer, UINT *stride)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = impl_from_IDirect3DDevice8(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_vertexbuffer *buffer_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_buffer *wined3d_buffer = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stream_idx %u, buffer %p, stride %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, stream_idx, buffer, stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_stream_source(device->wined3d_device, stream_idx, &wined3d_buffer, 0, stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (SUCCEEDED(hr) && wined3d_buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync buffer_impl = wined3d_buffer_get_parent(wined3d_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *buffer = &buffer_impl->IDirect3DVertexBuffer8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVertexBuffer8_AddRef(*buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_buffer_decref(wined3d_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to get wined3d stream source, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *buffer = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic const struct IDirect3DDevice8Vtbl d3d8_device_vtbl =
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_QueryInterface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_AddRef,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_Release,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_TestCooperativeLevel,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetAvailableTextureMem,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_ResourceManagerDiscardBytes,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetDirect3D,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetDeviceCaps,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetDisplayMode,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetCreationParameters,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetCursorProperties,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetCursorPosition,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_ShowCursor,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreateAdditionalSwapChain,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_Reset,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_Present,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetBackBuffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetRasterStatus,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetGammaRamp,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetGammaRamp,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreateTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreateVolumeTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreateCubeTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreateVertexBuffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreateIndexBuffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreateRenderTarget,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreateDepthStencilSurface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreateImageSurface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CopyRects,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_UpdateTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetFrontBuffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetRenderTarget,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetRenderTarget,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetDepthStencilSurface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_BeginScene,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_EndScene,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_Clear,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetTransform,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetTransform,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_MultiplyTransform,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetViewport,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetViewport,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetMaterial,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetMaterial,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetLight,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetLight,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_LightEnable,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetLightEnable,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetClipPlane,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetClipPlane,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetRenderState,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetRenderState,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_BeginStateBlock,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_EndStateBlock,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_ApplyStateBlock,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CaptureStateBlock,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_DeleteStateBlock,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreateStateBlock,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetClipStatus,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetClipStatus,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetTextureStageState,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetTextureStageState,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_ValidateDevice,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetInfo,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetPaletteEntries,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetPaletteEntries,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetCurrentTexturePalette,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetCurrentTexturePalette,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_DrawPrimitive,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_DrawIndexedPrimitive,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_DrawPrimitiveUP,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_DrawIndexedPrimitiveUP,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_ProcessVertices,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreateVertexShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetVertexShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetVertexShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_DeleteVertexShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetVertexShaderConstant,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetVertexShaderConstant,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetVertexShaderDeclaration,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetVertexShaderFunction,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetStreamSource,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetStreamSource,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetIndices,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetIndices,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_CreatePixelShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetPixelShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetPixelShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_DeletePixelShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_SetPixelShaderConstant,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetPixelShaderConstant,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_GetPixelShaderFunction,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_DrawRectPatch,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_DrawTriPatch,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d8_device_DeletePatch,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync};
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic inline struct d3d8_device *device_from_device_parent(struct wined3d_device_parent *device_parent)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return CONTAINING_RECORD(device_parent, struct d3d8_device, device_parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void CDECL device_parent_wined3d_device_created(struct wined3d_device_parent *device_parent,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_device *device)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("device_parent %p, device %p\n", device_parent, device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void CDECL device_parent_mode_changed(struct wined3d_device_parent *device_parent)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("device_parent %p.\n", device_parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT CDECL device_parent_create_texture_surface(struct wined3d_device_parent *device_parent,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync void *container_parent, const struct wined3d_resource_desc *desc, UINT sub_resource_idx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD flags, struct wined3d_surface **surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = device_from_device_parent(device_parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *d3d_surface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("device_parent %p, container_parent %p, desc %p, sub_resource_idx %u, flags %#x, surface %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device_parent, container_parent, desc, sub_resource_idx, flags, surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = d3d8_device_create_surface(device, desc->width, desc->height,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3dformat_from_wined3dformat(desc->format), flags, (IDirect3DSurface8 **)&d3d_surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync desc->usage, desc->pool, desc->multisample_type, desc->multisample_quality)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to create surface, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *surface = d3d_surface->wined3d_surface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_surface_incref(*surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d_surface->container = container_parent;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DDevice8_Release(d3d_surface->parent_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d_surface->parent_device = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface8_Release(&d3d_surface->IDirect3DSurface8_iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d_surface->forwardReference = container_parent;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT CDECL device_parent_create_swapchain_surface(struct wined3d_device_parent *device_parent,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync void *container_parent, const struct wined3d_resource_desc *desc, struct wined3d_surface **surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = device_from_device_parent(device_parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource_desc texture_desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_surface *d3d_surface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_texture *texture;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("device_parent %p, container_parent %p, desc %p, surface %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device_parent, container_parent, desc, surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync texture_desc = *desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync texture_desc.resource_type = WINED3D_RTYPE_TEXTURE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = wined3d_texture_create_2d(device->wined3d_device, &texture_desc, 1,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_SURFACE_MAPPABLE, &device->IDirect3DDevice8_iface, &d3d8_null_wined3d_parent_ops, &texture)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to create texture, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *surface = wined3d_surface_from_resource(wined3d_texture_get_sub_resource(texture, 0));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_surface_incref(*surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_texture_decref(texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d_surface = wined3d_surface_get_parent(*surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d_surface->forwardReference = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d_surface->parent_device = &device->IDirect3DDevice8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT CDECL device_parent_create_volume(struct wined3d_device_parent *device_parent,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync void *container_parent, UINT width, UINT height, UINT depth, enum wined3d_format_id format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync enum wined3d_pool pool, DWORD usage, struct wined3d_volume **volume)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = device_from_device_parent(device_parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_volume *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("device_parent %p, container_parent %p, width %u, height %u, depth %u, "
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync "format %#x, pool %#x, usage %#x, volume %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device_parent, container_parent, width, height, depth,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync format, pool, usage, volume);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Allocate the storage for the device */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Allocation of memory failed\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *volume = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_OUTOFVIDEOMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = volume_init(object, device, width, height, depth, usage, format, pool);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize volume, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *volume = object->wined3d_volume;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_volume_incref(*volume);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVolume8_Release(&object->IDirect3DVolume8_iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object->container = container_parent;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object->forwardReference = container_parent;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created volume %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT CDECL device_parent_create_swapchain(struct wined3d_device_parent *device_parent,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_swapchain_desc *desc, struct wined3d_swapchain **swapchain)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_device *device = device_from_device_parent(device_parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d8_swapchain *d3d_swapchain;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("device_parent %p, desc %p, swapchain %p.\n", device_parent, desc, swapchain);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = d3d8_swapchain_create(device, desc, &d3d_swapchain)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to create swapchain, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *swapchain = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *swapchain = d3d_swapchain->wined3d_swapchain;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_swapchain_incref(*swapchain);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSwapChain8_Release(&d3d_swapchain->IDirect3DSwapChain8_iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic const struct wined3d_device_parent_ops d3d8_wined3d_device_parent_ops =
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device_parent_wined3d_device_created,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device_parent_mode_changed,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device_parent_create_swapchain_surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device_parent_create_texture_surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device_parent_create_volume,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device_parent_create_swapchain,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync};
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void setup_fpu(void)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WORD cw;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync __asm__ volatile ("fnstcw %0" : "=m" (cw));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync cw = (cw & ~0xf3f) | 0x3f;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync __asm__ volatile ("fldcw %0" : : "m" (cw));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#elif defined(__i386__) && defined(_MSC_VER)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WORD cw;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync __asm fnstcw cw;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync cw = (cw & ~0xf3f) | 0x3f;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync __asm fldcw cw;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#elif defined(RT_ARCH_AMD64)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync unsigned int currentControl = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync _controlfp_s(&currentControl, 0x3f, 0xf3f);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("FPU setup not implemented for this platform.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncHRESULT device_init(struct d3d8_device *device, struct d3d8 *parent, struct wined3d *wined3d, UINT adapter,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DDEVTYPE device_type, HWND focus_window, DWORD flags, D3DPRESENT_PARAMETERS *parameters)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_swapchain_desc swapchain_desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->IDirect3DDevice8_iface.lpVtbl = &d3d8_device_vtbl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->device_parent.ops = &d3d8_wined3d_device_parent_ops;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->ref = 1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->handle_table.entries = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3D8_INITIAL_HANDLE_TABLE_SIZE * sizeof(*device->handle_table.entries));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!device->handle_table.entries)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to allocate handle table memory.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->handle_table.table_size = D3D8_INITIAL_HANDLE_TABLE_SIZE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(flags & D3DCREATE_FPU_PRESERVE)) setup_fpu();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_create(wined3d, adapter, device_type, focus_window, flags, 4,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync &device->device_parent, &device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to create wined3d device, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!parameters->Windowed)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HWND device_window = parameters->hDeviceWindow;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!focus_window)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync focus_window = device_window;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = wined3d_device_acquire_focus_window(device->wined3d_device, focus_window)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to acquire focus window, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_decref(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!device_window)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device_window = focus_window;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_setup_fullscreen_window(device->wined3d_device, device_window,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync parameters->BackBufferWidth,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync parameters->BackBufferHeight);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (flags & D3DCREATE_MULTITHREADED)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_multithreaded(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_swapchain_desc_from_present_parameters(&swapchain_desc, parameters);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_init_3d(device->wined3d_device, &swapchain_desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize 3D, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_release_focus_window(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_decref(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_render_state(device->wined3d_device, WINED3D_RS_POINTSIZE_MIN, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters_from_wined3d_swapchain_desc(parameters, &swapchain_desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->declArraySize = 16;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->decls = HeapAlloc(GetProcessHeap(), 0, device->declArraySize * sizeof(*device->decls));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!device->decls)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to allocate FVF vertex declaration map memory.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto err;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->d3d_parent = &parent->IDirect3D8_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3D8_AddRef(device->d3d_parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncerr:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_uninit_3d(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_release_focus_window(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_decref(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}