058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync/*
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * IDirect3DDevice9 implementation
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * Copyright 2002-2005 Jason Edmeades
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * Copyright 2002-2005 Raphael Junqueira
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * Copyright 2005 Oliver Stieber
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#include "d3d9_private.h"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync# include <iprt/assert.h>
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync# include "../../common/VBoxVideoTools.h"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncWINE_DEFAULT_DEBUG_CHANNEL(d3d9);
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_R8G8B8A8_UNORM: return D3DFMT_A8B8G8R8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R8G8B8X8_UNORM: return D3DFMT_X8B8G8R8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R16G16_UNORM: return D3DFMT_G16R16;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_B10G10R10A2_UNORM: return D3DFMT_A2R10G10B10;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R16G16B16A16_UNORM: return D3DFMT_A16B16G16R16;
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_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_L16_UNORM: return D3DFMT_L16;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_D32_FLOAT: return D3DFMT_D32F_LOCKABLE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_S8_UINT_D24_FLOAT: return D3DFMT_D24FS8;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_VERTEXDATA: return D3DFMT_VERTEXDATA;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R16_UINT: return D3DFMT_INDEX16;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R32_UINT: return D3DFMT_INDEX32;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R16G16B16A16_SNORM: return D3DFMT_Q16W16V16U16;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R16_FLOAT: return D3DFMT_R16F;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R16G16_FLOAT: return D3DFMT_G16R16F;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R16G16B16A16_FLOAT: return D3DFMT_A16B16G16R16F;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R32_FLOAT: return D3DFMT_R32F;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R32G32_FLOAT: return D3DFMT_G32R32F;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R32G32B32A32_FLOAT: return D3DFMT_A32B32G32R32F;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case WINED3DFMT_R8G8_SNORM_Cx: return D3DFMT_CxV8U8;
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_A8B8G8R8: return WINED3DFMT_R8G8B8A8_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_X8B8G8R8: return WINED3DFMT_R8G8B8X8_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_G16R16: return WINED3DFMT_R16G16_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A2R10G10B10: return WINED3DFMT_B10G10R10A2_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A16B16G16R16: return WINED3DFMT_R16G16B16A16_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_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_L16: return WINED3DFMT_L16_UNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_D32F_LOCKABLE: return WINED3DFMT_D32_FLOAT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_D24FS8: return WINED3DFMT_S8_UINT_D24_FLOAT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_VERTEXDATA: return WINED3DFMT_VERTEXDATA;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_INDEX16: return WINED3DFMT_R16_UINT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_INDEX32: return WINED3DFMT_R32_UINT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_Q16W16V16U16: return WINED3DFMT_R16G16B16A16_SNORM;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_R16F: return WINED3DFMT_R16_FLOAT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_G16R16F: return WINED3DFMT_R16G16_FLOAT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A16B16G16R16F: return WINED3DFMT_R16G16B16A16_FLOAT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_R32F: return WINED3DFMT_R32_FLOAT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_G32R32F: return WINED3DFMT_R32G32_FLOAT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_A32B32G32R32F: return WINED3DFMT_R32G32B32A32_FLOAT;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync case D3DFMT_CxV8U8: return WINED3DFMT_R8G8_SNORM_Cx;
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
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncvoid 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->MultiSampleQuality = swapchain_desc->multisample_quality;
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->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 = present_parameters->MultiSampleQuality;
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->PresentationInterval;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->auto_restore_display_mode = TRUE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc->pHgsmi = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_QueryInterface(IDirect3DDevice9Ex *iface, REFIID riid, void **out)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (IsEqualGUID(riid, &IID_IDirect3DDevice9)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync || IsEqualGUID(riid, &IID_IUnknown))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DDevice9Ex_AddRef(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *out = iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return S_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (IsEqualGUID(riid, &IID_IDirect3DDevice9Ex))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Find out if the creating d3d9 interface was created with Direct3DCreate9Ex.
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * It doesn't matter with which function the device was created. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!device->d3d_parent->extended)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("IDirect3D9 instance wasn't created with CreateDirect3D9Ex, returning E_NOINTERFACE.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *out = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOINTERFACE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DDevice9Ex_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 d3d9_device_AddRef(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ULONG refcount = InterlockedIncrement(&device->refcount);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("%p increasing refcount to %u.\n", iface, refcount);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return refcount;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic LONG d3d9_device_Term(struct d3d9_device *device)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync unsigned i;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync LONG refs = device->refcount;
19656593ca5dc4fd9681cdea5245dac152de5316vboxsync LONG wined3d_refs;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->in_destruction = TRUE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (refs != 1)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
8cfe2efff2058bd07777056112155ea5353dcfbavboxsync WARN("unexpected ref count %d, destroying in anyway", refs);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync for (i = 0; i < device->fvf_decl_count; ++i)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_vertex_declaration_decref(device->fvf_decls[i].decl);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, device->fvf_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# ifndef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_release_focus_window(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync# endif
19656593ca5dc4fd9681cdea5245dac152de5316vboxsync wined3d_refs = wined3d_device_decref(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3D9Ex_Release(&device->d3d_parent->IDirect3D9Ex_iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
19656593ca5dc4fd9681cdea5245dac152de5316vboxsync return wined3d_refs;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic ULONG WINAPI DECLSPEC_HOTPATCH d3d9_device_Release(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ULONG refcount;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->in_destruction)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync refcount = InterlockedDecrement(&device->refcount);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("%p decreasing refcount to %u.\n", iface, refcount);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!refcount)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_Term(device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync unsigned i;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->in_destruction = TRUE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync for (i = 0; i < device->fvf_decl_count; ++i)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_vertex_declaration_decref(device->fvf_decls[i].decl);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, device->fvf_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 wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3D9Ex_Release(&device->d3d_parent->IDirect3D9Ex_iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return refcount;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_TestCooperativeLevel(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->not_reset)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("D3D9 device is marked not reset.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_DEVICENOTRESET;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic UINT WINAPI d3d9_device_GetAvailableTextureMem(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_EvictManagedResources(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
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 d3d9_device_GetDirect3D(IDirect3DDevice9Ex *iface, IDirect3D9 **d3d9)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, d3d9 %p.\n", iface, d3d9);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!d3d9)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return IDirect3D9Ex_QueryInterface(&device->d3d_parent->IDirect3D9Ex_iface, &IID_IDirect3D9, (void **)d3d9);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetDeviceCaps(IDirect3DDevice9Ex *iface, D3DCAPS9 *caps)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 memset(caps, 0, sizeof(*caps));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_device_caps(device->wined3d_device, wined3d_caps);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINECAPSTOD3D9CAPS(caps, wined3d_caps)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, wined3d_caps);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Some functionality is implemented in d3d9.dll, not wined3d.dll. Add the needed caps */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync caps->DevCaps2 |= D3DDEVCAPS2_CAN_STRETCHRECT_FROM_TEXTURES;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync filter_caps(caps);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetDisplayMode(IDirect3DDevice9Ex *iface, UINT swapchain, D3DDISPLAYMODE *mode)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_display_mode wined3d_mode;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, swapchain %u, mode %p.\n", iface, swapchain, mode);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_display_mode(device->wined3d_device, swapchain, &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 d3d9_device_GetCreationParameters(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DDEVICE_CREATION_PARAMETERS *parameters)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_SetCursorProperties(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT hotspot_x, UINT hotspot_y, IDirect3DSurface9 *bitmap)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *bitmap_impl = unsafe_impl_from_IDirect3DSurface9(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 d3d9_device_SetCursorPosition(IDirect3DDevice9Ex *iface, int x, int y, DWORD flags)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_ShowCursor(IDirect3DDevice9Ex *iface, BOOL show)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 DECLSPEC_HOTPATCH d3d9_device_CreateAdditionalSwapChain(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRESENT_PARAMETERS *present_parameters, IDirect3DSwapChain9 **swapchain)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_swapchain_desc desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_swapchain *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
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(hr = d3d9_swapchain_create(device, &desc, &object)))
76f3927069cc452e77bf72f32d9175c0256ed3b3vboxsync *swapchain = (IDirect3DSwapChain9 *)&object->IDirect3DSwapChain9Ex_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters_from_wined3d_swapchain_desc(present_parameters, &desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI DECLSPEC_HOTPATCH d3d9_device_GetSwapChain(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT swapchain_idx, IDirect3DSwapChain9 **swapchain)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_swapchain *wined3d_swapchain;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_swapchain *swapchain_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, swapchain_idx %u, swapchain %p.\n", iface, swapchain_idx, swapchain);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((wined3d_swapchain = wined3d_device_get_swapchain(device->wined3d_device, swapchain_idx)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_impl = wined3d_swapchain_get_parent(wined3d_swapchain);
76f3927069cc452e77bf72f32d9175c0256ed3b3vboxsync *swapchain = (IDirect3DSwapChain9 *)&swapchain_impl->IDirect3DSwapChain9Ex_iface;
76f3927069cc452e77bf72f32d9175c0256ed3b3vboxsync IDirect3DSwapChain9Ex_AddRef(*swapchain);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *swapchain = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic UINT WINAPI d3d9_device_GetNumberOfSwapChains(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT count;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync count = wined3d_device_get_swapchain_count(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return count;
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 d3d9_surface *surface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (desc.resource_type == WINED3D_RTYPE_TEXTURE)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IUnknown *parent = wined3d_resource_get_parent(resource);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DBaseTexture9 *texture;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (SUCCEEDED(IUnknown_QueryInterface(parent, &IID_IDirect3DBaseTexture9, (void **)&texture)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DBaseTexture9_Release(texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Texture %p (resource %p) in pool D3DPOOL_DEFAULT blocks the Reset call.\n", texture, resource);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
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_INVALIDCALL;
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_INVALIDCALL;
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 DECLSPEC_HOTPATCH d3d9_device_Reset(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRESENT_PARAMETERS *present_parameters)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 hr = wined3d_device_reset(device->wined3d_device, &swapchain_desc,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync NULL, reset_enum_callback, !device->d3d_parent->extended);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr) && !device->d3d_parent->extended)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->not_reset = TRUE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->not_reset = FALSE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI DECLSPEC_HOTPATCH d3d9_device_Present(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override, const RGNDATA *dirty_region)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, src_rect %p, dst_rect %p, dst_window_override %p, dirty_region %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, src_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 d3d9_device_GetBackBuffer(IDirect3DDevice9Ex *iface, UINT swapchain,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT backbuffer_idx, D3DBACKBUFFER_TYPE backbuffer_type, IDirect3DSurface9 **backbuffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_surface *wined3d_surface = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *surface_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, swapchain %u, backbuffer_idx %u, backbuffer_type %#x, backbuffer %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, swapchain, backbuffer_idx, backbuffer_type, backbuffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_back_buffer(device->wined3d_device, swapchain,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync backbuffer_idx, (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->IDirect3DSurface9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface9_AddRef(*backbuffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetRasterStatus(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT swapchain, D3DRASTER_STATUS *raster_status)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, swapchain %u, raster_status %p.\n", iface, swapchain, raster_status);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_raster_status(device->wined3d_device,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain, (struct wined3d_raster_status *)raster_status);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetDialogBoxMode(IDirect3DDevice9Ex *iface, BOOL enable)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, enable %#x.\n", iface, enable);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_dialog_box_mode(device->wined3d_device, enable);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void WINAPI d3d9_device_SetGammaRamp(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT swapchain, DWORD flags, const D3DGAMMARAMP *ramp)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, swapchain %u, flags %#x, ramp %p.\n", iface, swapchain, 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, swapchain, flags, (const struct wined3d_gamma_ramp *)ramp);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic void WINAPI d3d9_device_GetGammaRamp(IDirect3DDevice9Ex *iface, UINT swapchain, D3DGAMMARAMP *ramp)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, swapchain %u, ramp %p.\n", iface, swapchain, 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, swapchain, (struct wined3d_gamma_ramp *)ramp);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync//#pragma comment(linker, "/export:VBoxWineExD3DDev9Flush=_VBoxWineExD3DDev9Flush@4")
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncVBOXWINEEX_DECL(HRESULT) VBoxWineExD3DDev9Flush(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, Flush\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_flush(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncVBOXWINEEX_DECL(HRESULT) VBoxWineExD3DDev9FlushToHost(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, FlushToHost\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_flush_to_host(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncVBOXWINEEX_DECL(HRESULT) VBoxWineExD3DDev9Finish(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, FlushToHost\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_finish(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsyncVBOXWINEEX_DECL(HRESULT) VBoxWineExD3DDev9GetHostId(IDirect3DDevice9Ex *iface, int32_t *pi32Id)
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync{
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync HRESULT hr;
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync TRACE("iface %p, FlushToHost\n", iface);
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync wined3d_mutex_lock();
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync hr = wined3d_device_get_host_id(device->wined3d_device, pi32Id);
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync wined3d_mutex_unlock();
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync return hr;
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync}
ea1cc8df95dba6fca9c36c94f565ef95c7802a36vboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync//#pragma comment(linker, "/export:VBoxWineExD3DDev9CreateTexture=_VBoxWineExD3DDev9CreateTexture@40")
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncVBOXWINEEX_DECL(HRESULT) VBoxWineExD3DDev9CreateTexture(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, UINT levels, DWORD usage, D3DFORMAT format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPOOL pool, IDirect3DTexture9 **texture, HANDLE *shared_handle,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync void **pavClientMem) /* <- extension arg to pass in the client memory buffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * applicable ONLY for SYSMEM textures */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_texture *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, levels %u, usage %#x, format %#x, pool %#x, texture %p, shared_handle %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, levels, usage, format, pool, texture, shared_handle);
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, shared_handle, pavClientMem);
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 = (IDirect3DTexture9 *)&object->IDirect3DBaseTexture9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncVBOXWINEEX_DECL(HRESULT) VBoxWineExD3DDev9CreateVolumeTexture(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, UINT depth, UINT levels, DWORD usage, D3DFORMAT format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPOOL pool, IDirect3DVolumeTexture9 **texture, HANDLE *shared_handle,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync void **pavClientMem)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_texture *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, depth %u, levels %u\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, depth, levels);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("usage %#x, format %#x, pool %#x, texture %p, shared_handle %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync usage, format, pool, texture, shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
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, shared_handle, pavClientMem);
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 = (IDirect3DVolumeTexture9 *)&object->IDirect3DBaseTexture9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncVBOXWINEEX_DECL(HRESULT) VBoxWineExD3DDev9CreateCubeTexture(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT edge_length, UINT levels, DWORD usage, D3DFORMAT format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPOOL pool, IDirect3DCubeTexture9 **texture, HANDLE *shared_handle,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync void **pavClientMem) /* <- extension arg to pass in the client memory buffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * applicable ONLY for SYSMEM textures */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_texture *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, edge_length %u, levels %u, usage %#x, format %#x, pool %#x, texture %p, shared_handle %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, edge_length, levels, usage, format, pool, texture, shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
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, shared_handle, pavClientMem);
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 = (IDirect3DCubeTexture9 *)&object->IDirect3DBaseTexture9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateTexture(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, UINT levels, DWORD usage, D3DFORMAT format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPOOL pool, IDirect3DTexture9 **texture, HANDLE *shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return VBoxWineExD3DDev9CreateTexture(iface, width, height, levels, usage, format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync pool, texture, shared_handle,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_texture *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BOOL set_mem = FALSE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, levels %u, usage %#x, format %#x, pool %#x, texture %p, shared_handle %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, levels, usage, format, pool, texture, shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (pool == D3DPOOL_SYSTEMMEM)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (levels != 1)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync set_mem = TRUE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
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 if (set_mem)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource *resource;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *surface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync resource = wined3d_texture_get_sub_resource(object->wined3d_texture, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync surface = wined3d_resource_get_parent(resource);
1675f41731e9e75ac43352afd2b690c08795b032vboxsync wined3d_surface_set_mem(surface->wined3d_surface, *shared_handle, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created texture %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *texture = (IDirect3DTexture9 *)&object->IDirect3DBaseTexture9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateVolumeTexture(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, UINT depth, UINT levels, DWORD usage, D3DFORMAT format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPOOL pool, IDirect3DVolumeTexture9 **texture, HANDLE *shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return VBoxWineExD3DDev9CreateVolumeTexture(iface, width, height, depth, levels, usage, format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync pool, texture, shared_handle, NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_texture *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, depth %u, levels %u\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, depth, levels);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("usage %#x, format %#x, pool %#x, texture %p, shared_handle %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync usage, format, pool, texture, shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
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 = (IDirect3DVolumeTexture9 *)&object->IDirect3DBaseTexture9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateCubeTexture(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT edge_length, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DCubeTexture9 **texture, HANDLE *shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return VBoxWineExD3DDev9CreateCubeTexture(iface, edge_length, levels, usage, format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync pool, texture, shared_handle, NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_texture *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, edge_length %u, levels %u, usage %#x, format %#x, pool %#x, texture %p, shared_handle %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, edge_length, levels, usage, format, pool, texture, shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
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 = (IDirect3DCubeTexture9 *)&object->IDirect3DBaseTexture9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateVertexBuffer(IDirect3DDevice9Ex *iface, UINT size,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD usage, DWORD fvf, D3DPOOL pool, IDirect3DVertexBuffer9 **buffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HANDLE *shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertexbuffer *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, size %u, usage %#x, fvf %#x, pool %#x, buffer %p, shared_handle %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, size, usage, fvf, pool, buffer, shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
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->IDirect3DVertexBuffer9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateIndexBuffer(IDirect3DDevice9Ex *iface, UINT size,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD usage, D3DFORMAT format, D3DPOOL pool, IDirect3DIndexBuffer9 **buffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HANDLE *shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_indexbuffer *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, size %u, usage %#x, format %#x, pool %#x, buffer %p, shared_handle %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, size, usage, format, pool, buffer, shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
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->IDirect3DIndexBuffer9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT d3d9_device_create_surface(struct d3d9_device *device, UINT width, UINT height,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DFORMAT format, DWORD flags, IDirect3DSurface9 **surface, UINT usage, D3DPOOL pool,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , HANDLE *shared_handle
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , void *pvClientMem
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync )
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("device %p, width %u, height %u, format %#x, flags %#x, surface %p.\n"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync "usage %#x, pool %#x, multisample_type %#x, multisample_quality %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device, width, height, format, flags, surface, usage, pool,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync 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#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = surface_init(object, device, width, height, format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync flags, usage, pool, multisample_type, multisample_quality
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , shared_handle
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , pvClientMem
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync )))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = surface_init(object, device, width, height, format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync flags, usage, pool, multisample_type, multisample_quality)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
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->IDirect3DSurface9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateRenderTarget(IDirect3DDevice9Ex *iface, UINT width, UINT height,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DFORMAT format, D3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BOOL lockable, IDirect3DSurface9 **surface, HANDLE *shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD flags = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, format %#x, multisample_type %#x, multisample_quality %u.\n"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync "lockable %#x, surface %p, shared_handle %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, format, multisample_type, multisample_quality,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync lockable, surface, shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (lockable)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync flags |= WINED3D_SURFACE_MAPPABLE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return d3d9_device_create_surface(device, width, height, format, flags, surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DUSAGE_RENDERTARGET, D3DPOOL_DEFAULT, multisample_type, multisample_quality
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , shared_handle
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , NULL
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync );
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateDepthStencilSurface(IDirect3DDevice9Ex *iface, UINT width, UINT height,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DFORMAT format, D3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BOOL discard, IDirect3DSurface9 **surface, HANDLE *shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD flags = WINED3D_SURFACE_MAPPABLE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, format %#x, multisample_type %#x, multisample_quality %u.\n"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync "discard %#x, surface %p, shared_handle %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, format, multisample_type, multisample_quality,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync discard, surface, shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (discard)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync flags |= WINED3D_SURFACE_DISCARD;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return d3d9_device_create_surface(device, width, height, format, flags, surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DUSAGE_DEPTHSTENCIL, D3DPOOL_DEFAULT, multisample_type, multisample_quality
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , shared_handle
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , NULL
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync );
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_UpdateSurface(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface9 *src_surface, const RECT *src_rect,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface9 *dst_surface, const POINT *dst_point)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *src = unsafe_impl_from_IDirect3DSurface9(src_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *dst = unsafe_impl_from_IDirect3DSurface9(dst_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, src_surface %p, src_rect %p, dst_surface %p, dst_point %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, src_surface, src_rect, dst_surface, dst_point);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_update_surface(device->wined3d_device, src->wined3d_surface, src_rect,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync dst->wined3d_surface, dst_point);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_UpdateTexture(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DBaseTexture9 *src_texture, IDirect3DBaseTexture9 *dst_texture)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_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_IDirect3DBaseTexture9(src_texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync dst_impl = unsafe_impl_from_IDirect3DBaseTexture9(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 d3d9_device_GetRenderTargetData(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface9 *render_target, IDirect3DSurface9 *dst_surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *rt_impl = unsafe_impl_from_IDirect3DSurface9(render_target);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *dst_impl = unsafe_impl_from_IDirect3DSurface9(dst_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, render_target %p, dst_surface %p.\n", iface, render_target, dst_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_surface_get_render_target_data(dst_impl->wined3d_surface, rt_impl->wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetFrontBufferData(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT swapchain, IDirect3DSurface9 *dst_surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *dst_impl = unsafe_impl_from_IDirect3DSurface9(dst_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, swapchain %u, dst_surface %p.\n", iface, swapchain, dst_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_front_buffer_data(device->wined3d_device, swapchain, dst_impl->wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_StretchRect(IDirect3DDevice9Ex *iface, IDirect3DSurface9 *src_surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const RECT *src_rect, IDirect3DSurface9 *dst_surface, const RECT *dst_rect, D3DTEXTUREFILTERTYPE filter)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *src = unsafe_impl_from_IDirect3DSurface9(src_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *dst = unsafe_impl_from_IDirect3DSurface9(dst_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr = D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource_desc src_desc, dst_desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource *wined3d_resource;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, src_surface %p, src_rect %p, dst_surface %p, dst_rect %p, filter %#x.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, src_surface, src_rect, dst_surface, dst_rect, filter);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource = wined3d_surface_get_resource(dst->wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource_get_desc(wined3d_resource, &dst_desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource = wined3d_surface_get_resource(src->wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource_get_desc(wined3d_resource, &src_desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (src_desc.usage & WINED3DUSAGE_DEPTHSTENCIL)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->in_scene)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Rejecting depth / stencil blit while in scene.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (src_rect)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (src_rect->left || src_rect->top || src_rect->right != src_desc.width
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync || src_rect->bottom != src_desc.height)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Rejecting depth / stencil blit with invalid source rect %s.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wine_dbgstr_rect(src_rect));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (dst_rect)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (dst_rect->left || dst_rect->top || dst_rect->right != dst_desc.width
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync || dst_rect->bottom != dst_desc.height)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Rejecting depth / stencil blit with invalid destination rect %s.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wine_dbgstr_rect(dst_rect));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (src_desc.width != dst_desc.width || src_desc.height != dst_desc.height)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Rejecting depth / stencil blit with mismatched surface sizes.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync goto done;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_surface_blt(dst->wined3d_surface, dst_rect, src->wined3d_surface, src_rect, 0, NULL, filter);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (hr == WINEDDERR_INVALIDRECT)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncdone:
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_ColorFill(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface9 *surface, const RECT *rect, D3DCOLOR color)
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 d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *surface_impl = unsafe_impl_from_IDirect3DSurface9(surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource *wined3d_resource;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource_desc desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, surface %p, rect %p, color 0x%08x.\n", iface, surface, rect, color);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource = wined3d_surface_get_resource(surface_impl->wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_resource_get_desc(wined3d_resource, &desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* This method is only allowed with surfaces that are render targets, or
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * offscreen plain surfaces in D3DPOOL_DEFAULT. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(desc.usage & WINED3DUSAGE_RENDERTARGET) && desc.pool != WINED3D_POOL_DEFAULT)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Surface is not a render target, or not a stand-alone D3DPOOL_DEFAULT surface\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Colorfill can only be used on rendertarget surfaces, or offscreen plain surfaces in D3DPOOL_DEFAULT */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_color_fill(device->wined3d_device, surface_impl->wined3d_surface, rect, &c);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateOffscreenPlainSurface(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, D3DFORMAT format, D3DPOOL pool, IDirect3DSurface9 **surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HANDLE *shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, width %u, height %u, format %#x, pool %#x, surface %p, shared_handle %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, format, pool, surface, shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (pool == D3DPOOL_MANAGED)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Attempting to create a managed offscreen plain surface.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* FIXME: Offscreen surfaces are supposed to be always lockable,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * regardless of the pool they're created in. Should we set dynamic usage
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * here? */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return d3d9_device_create_surface(device, width, height, format,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_SURFACE_MAPPABLE, surface, 0, pool, D3DMULTISAMPLE_NONE, 0
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , shared_handle
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , NULL
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync );
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetRenderTarget(IDirect3DDevice9Ex *iface, DWORD idx, IDirect3DSurface9 *surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *surface_impl = unsafe_impl_from_IDirect3DSurface9(surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, idx %u, surface %p.\n", iface, idx, surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (idx >= D3D9_MAX_SIMULTANEOUS_RENDERTARGETS)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid index %u specified.\n", idx);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_render_target(device->wined3d_device, idx,
35dfd86e4de7b13cc0bc6dedfd6900b898c52c82vboxsync surface_impl ? surface_impl->wined3d_surface : NULL,
35dfd86e4de7b13cc0bc6dedfd6900b898c52c82vboxsync#ifdef VBOX_WITH_WDDM
35dfd86e4de7b13cc0bc6dedfd6900b898c52c82vboxsync FALSE
35dfd86e4de7b13cc0bc6dedfd6900b898c52c82vboxsync#else
35dfd86e4de7b13cc0bc6dedfd6900b898c52c82vboxsync TRUE
35dfd86e4de7b13cc0bc6dedfd6900b898c52c82vboxsync#endif
35dfd86e4de7b13cc0bc6dedfd6900b898c52c82vboxsync );
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetRenderTarget(IDirect3DDevice9Ex *iface, DWORD idx, IDirect3DSurface9 **surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_surface *wined3d_surface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *surface_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr = D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, idx %u, surface %p.\n", iface, idx, surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!surface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (idx >= D3D9_MAX_SIMULTANEOUS_RENDERTARGETS)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid index %u specified.\n", idx);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((wined3d_surface = wined3d_device_get_render_target(device->wined3d_device, idx)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync surface_impl = wined3d_surface_get_parent(wined3d_surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *surface = &surface_impl->IDirect3DSurface9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface9_AddRef(*surface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = WINED3DERR_NOTFOUND;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *surface = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetDepthStencilSurface(IDirect3DDevice9Ex *iface, IDirect3DSurface9 *depth_stencil)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_surface *ds_impl = unsafe_impl_from_IDirect3DSurface9(depth_stencil);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, depth_stencil %p.\n", iface, depth_stencil);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_depth_stencil(device->wined3d_device, ds_impl ? ds_impl->wined3d_surface : NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetDepthStencilSurface(IDirect3DDevice9Ex *iface, IDirect3DSurface9 **depth_stencil)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_surface *wined3d_surface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_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->IDirect3DSurface9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface9_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 d3d9_device_BeginScene(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (SUCCEEDED(hr = wined3d_device_begin_scene(device->wined3d_device)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->in_scene = TRUE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI DECLSPEC_HOTPATCH d3d9_device_EndScene(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (SUCCEEDED(hr = wined3d_device_end_scene(device->wined3d_device)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->in_scene = FALSE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_Clear(IDirect3DDevice9Ex *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 d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_SetTransform(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DTRANSFORMSTATETYPE state, const D3DMATRIX *matrix)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_GetTransform(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DTRANSFORMSTATETYPE state, D3DMATRIX *matrix)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_MultiplyTransform(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DTRANSFORMSTATETYPE state, const D3DMATRIX *matrix)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_SetViewport(IDirect3DDevice9Ex *iface, const D3DVIEWPORT9 *viewport)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, viewport %p.\n", iface, viewport);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DVIEWPORT9 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 d3d9_device_GetViewport(IDirect3DDevice9Ex *iface, D3DVIEWPORT9 *viewport)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, viewport %p.\n", iface, viewport);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DVIEWPORT9 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 d3d9_device_SetMaterial(IDirect3DDevice9Ex *iface, const D3DMATERIAL9 *material)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, material %p.\n", iface, material);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DMATERIAL9 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 d3d9_device_GetMaterial(IDirect3DDevice9Ex *iface, D3DMATERIAL9 *material)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, material %p.\n", iface, material);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DMATERIAL9 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 d3d9_device_SetLight(IDirect3DDevice9Ex *iface, DWORD index, const D3DLIGHT9 *light)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, index %u, light %p.\n", iface, index, light);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DLIGHT9 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 d3d9_device_GetLight(IDirect3DDevice9Ex *iface, DWORD index, D3DLIGHT9 *light)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, index %u, light %p.\n", iface, index, light);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Note: D3DLIGHT9 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 d3d9_device_LightEnable(IDirect3DDevice9Ex *iface, DWORD index, BOOL enable)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_GetLightEnable(IDirect3DDevice9Ex *iface, DWORD index, BOOL *enable)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_SetClipPlane(IDirect3DDevice9Ex *iface, DWORD index, const float *plane)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_GetClipPlane(IDirect3DDevice9Ex *iface, DWORD index, float *plane)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 DECLSPEC_HOTPATCH d3d9_device_SetRenderState(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DRENDERSTATETYPE state, DWORD value)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, state %#x, value %#x.\n", iface, state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_render_state(device->wined3d_device, state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetRenderState(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DRENDERSTATETYPE state, DWORD *value)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, state %#x, value %p.\n", iface, state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *value = wined3d_device_get_render_state(device->wined3d_device, state);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateStateBlock(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DSTATEBLOCKTYPE type, IDirect3DStateBlock9 **stateblock)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_stateblock *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, type %#x, stateblock %p.\n", iface, type, stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (type != D3DSBT_ALL && type != D3DSBT_PIXELSTATE && type != D3DSBT_VERTEXSTATE)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Unexpected stateblock type, returning D3DERR_INVALIDCALL.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = stateblock_init(object, device, type, NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize stateblock, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created stateblock %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *stateblock = &object->IDirect3DStateBlock9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_BeginStateBlock(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_EndStateBlock(IDirect3DDevice9Ex *iface, IDirect3DStateBlock9 **stateblock)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_stateblock *wined3d_stateblock;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_stateblock *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stateblock %p.\n", iface, stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_end_stateblock(device->wined3d_device, &wined3d_stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("IWineD3DDevice_EndStateBlock() failed, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_stateblock_decref(wined3d_stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = stateblock_init(object, device, 0, wined3d_stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize stateblock, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_stateblock_decref(wined3d_stateblock);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created stateblock %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *stateblock = &object->IDirect3DStateBlock9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetClipStatus(IDirect3DDevice9Ex *iface, const D3DCLIPSTATUS9 *clip_status)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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_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 d3d9_device_GetClipStatus(IDirect3DDevice9Ex *iface, D3DCLIPSTATUS9 *clip_status)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_GetTexture(IDirect3DDevice9Ex *iface, DWORD stage, IDirect3DBaseTexture9 **texture)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_texture *wined3d_texture = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_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->IDirect3DBaseTexture9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DBaseTexture9_AddRef(*texture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *texture = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetTexture(IDirect3DDevice9Ex *iface, DWORD stage, IDirect3DBaseTexture9 *texture)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_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_IDirect3DBaseTexture9(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 enum wined3d_texture_stage_state tss_lookup[] =
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 0, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_COLOR_OP, /* 1, D3DTSS_COLOROP */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_COLOR_ARG1, /* 2, D3DTSS_COLORARG1 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_COLOR_ARG2, /* 3, D3DTSS_COLORARG2 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_ALPHA_OP, /* 4, D3DTSS_ALPHAOP */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_ALPHA_ARG1, /* 5, D3DTSS_ALPHAARG1 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_ALPHA_ARG2, /* 6, D3DTSS_ALPHAARG2 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_BUMPENV_MAT00, /* 7, D3DTSS_BUMPENVMAT00 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_BUMPENV_MAT01, /* 8, D3DTSS_BUMPENVMAT01 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_BUMPENV_MAT10, /* 9, D3DTSS_BUMPENVMAT10 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_BUMPENV_MAT11, /* 10, D3DTSS_BUMPENVMAT11 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_TEXCOORD_INDEX, /* 11, D3DTSS_TEXCOORDINDEX */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 12, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 13, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 14, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 15, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 16, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 17, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 18, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 19, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 20, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 21, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_BUMPENV_LSCALE, /* 22, D3DTSS_BUMPENVLSCALE */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_BUMPENV_LOFFSET, /* 23, D3DTSS_BUMPENVLOFFSET */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_TEXTURE_TRANSFORM_FLAGS, /* 24, D3DTSS_TEXTURETRANSFORMFLAGS */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 25, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_COLOR_ARG0, /* 26, D3DTSS_COLORARG0 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_ALPHA_ARG0, /* 27, D3DTSS_ALPHAARG0 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_RESULT_ARG, /* 28, D3DTSS_RESULTARG */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 29, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 30, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_INVALID, /* 31, unused */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_TSS_CONSTANT, /* 32, D3DTSS_CONSTANT */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync};
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetTextureStageState(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD stage, D3DTEXTURESTAGESTATETYPE state, DWORD *value)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stage %u, state %#x, value %p.\n", iface, stage, state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (state >= sizeof(tss_lookup) / sizeof(*tss_lookup))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid state %#x passed.\n", state);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *value = wined3d_device_get_texture_stage_state(device->wined3d_device, stage, tss_lookup[state]);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetTextureStageState(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD stage, D3DTEXTURESTAGESTATETYPE state, DWORD value)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stage %u, state %#x, value %#x.\n", iface, stage, state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (state >= sizeof(tss_lookup) / sizeof(*tss_lookup))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Invalid state %#x passed.\n", state);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_texture_stage_state(device->wined3d_device, stage, tss_lookup[state], value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetSamplerState(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD sampler, D3DSAMPLERSTATETYPE state, DWORD *value)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, sampler %u, state %#x, value %p.\n", iface, sampler, state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *value = wined3d_device_get_sampler_state(device->wined3d_device, sampler, state);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI DECLSPEC_HOTPATCH d3d9_device_SetSamplerState(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync DWORD sampler, D3DSAMPLERSTATETYPE state, DWORD value)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, sampler %u, state %#x, value %#x.\n", iface, sampler, state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_sampler_state(device->wined3d_device, sampler, state, value);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_ValidateDevice(IDirect3DDevice9Ex *iface, DWORD *pass_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_SetPaletteEntries(IDirect3DDevice9Ex *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 /* The d3d9 palette API is non-functional on Windows. Getters and setters are implemented,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * and some drivers allow the creation of P8 surfaces. These surfaces can be copied to
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * other P8 surfaces with StretchRect, but cannot be converted to (A)RGB.
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * Some older(dx7) cards may have support for P8 textures, but games cannot rely on this. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetPaletteEntries(IDirect3DDevice9Ex *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 d3d9_device_SetCurrentTexturePalette(IDirect3DDevice9Ex *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 d3d9_device_GetCurrentTexturePalette(IDirect3DDevice9Ex *iface, UINT *palette_idx)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, palette_idx %p.\n", iface, palette_idx);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetScissorRect(IDirect3DDevice9Ex *iface, const RECT *rect)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, rect %p.\n", iface, rect);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_scissor_rect(device->wined3d_device, rect);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetScissorRect(IDirect3DDevice9Ex *iface, RECT *rect)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, rect %p.\n", iface, rect);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_get_scissor_rect(device->wined3d_device, rect);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetSoftwareVertexProcessing(IDirect3DDevice9Ex *iface, BOOL software)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, software %#x.\n", iface, software);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_software_vertex_processing(device->wined3d_device, software);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic BOOL WINAPI d3d9_device_GetSoftwareVertexProcessing(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BOOL ret;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ret = wined3d_device_get_software_vertex_processing(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return ret;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetNPatchMode(IDirect3DDevice9Ex *iface, float segment_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, segment_count %.8e.\n", iface, segment_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_npatch_mode(device->wined3d_device, segment_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic float WINAPI d3d9_device_GetNPatchMode(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync float ret;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p.\n", iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ret = wined3d_device_get_npatch_mode(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return ret;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_DrawPrimitive(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRIMITIVETYPE primitive_type, UINT start_vertex, UINT primitive_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 d3d9_device_DrawIndexedPrimitive(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRIMITIVETYPE primitive_type, INT base_vertex_idx, UINT min_vertex_idx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT vertex_count, UINT start_idx, UINT primitive_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, primitive_type %#x, base_vertex_idx %u, min_vertex_idx %u,\n"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync "vertex_count %u, start_idx %u, primitive_count %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, primitive_type, base_vertex_idx, min_vertex_idx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync vertex_count, start_idx, primitive_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_base_vertex_index(device->wined3d_device, base_vertex_idx);
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 d3d9_null_wined3d_object_destroyed(void *parent) {}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic const struct wined3d_parent_ops d3d9_null_wined3d_parent_ops =
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_null_wined3d_object_destroyed,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync};
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync/* The caller is responsible for wined3d locking */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT d3d9_device_prepare_vertex_buffer(struct d3d9_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, &d3d9_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 d3d9_device_DrawPrimitiveUP(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRIMITIVETYPE primitive_type, UINT primitive_count, const void *data, UINT stride)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(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
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = d3d9_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 d3d9_device_prepare_index_buffer(struct d3d9_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, &d3d9_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 d3d9_device_DrawIndexedPrimitiveUP(IDirect3DDevice9Ex *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 d3d9_device *device = impl_from_IDirect3DDevice9Ex(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 = d3d9_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 = d3d9_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 d3d9_device_ProcessVertices(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT src_start_idx, UINT dst_idx, UINT vertex_count, IDirect3DVertexBuffer9 *dst_buffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVertexDeclaration9 *declaration, DWORD flags)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertexbuffer *dst_impl = unsafe_impl_from_IDirect3DVertexBuffer9(dst_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertex_declaration *decl_impl = unsafe_impl_from_IDirect3DVertexDeclaration9(declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, src_start_idx %u, dst_idx %u, vertex_count %u, dst_buffer %p, declaration %p, flags %#x.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, src_start_idx, dst_idx, vertex_count, dst_buffer, declaration, flags);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_process_vertices(device->wined3d_device, src_start_idx, dst_idx, vertex_count,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync dst_impl->wined3d_buffer, decl_impl ? decl_impl->wined3d_declaration : NULL,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync flags, dst_impl->fvf);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateVertexDeclaration(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const D3DVERTEXELEMENT9 *elements, IDirect3DVertexDeclaration9 **declaration)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertex_declaration *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, elements %p, declaration %p.\n", iface, elements, declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!declaration)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Caller passed a NULL declaration, returning D3DERR_INVALIDCALL.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (SUCCEEDED(hr = d3d9_vertex_declaration_create(device, elements, &object)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *declaration = &object->IDirect3DVertexDeclaration9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetVertexDeclaration(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVertexDeclaration9 *declaration)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertex_declaration *decl_impl = unsafe_impl_from_IDirect3DVertexDeclaration9(declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, declaration %p.\n", iface, declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_vertex_declaration(device->wined3d_device,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync decl_impl ? decl_impl->wined3d_declaration : NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetVertexDeclaration(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVertexDeclaration9 **declaration)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_vertex_declaration *wined3d_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertex_declaration *declaration_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, declaration %p.\n", iface, declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!declaration) return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((wined3d_declaration = wined3d_device_get_vertex_declaration(device->wined3d_device)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync declaration_impl = wined3d_vertex_declaration_get_parent(wined3d_declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *declaration = &declaration_impl->IDirect3DVertexDeclaration9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVertexDeclaration9_AddRef(*declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *declaration = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Returning %p.\n", *declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic struct wined3d_vertex_declaration *device_get_fvf_declaration(struct d3d9_device *device, DWORD fvf)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_vertex_declaration *wined3d_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct fvf_declaration *fvf_decls = device->fvf_decls;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertex_declaration *d3d9_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DVERTEXELEMENT9 *elements;
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->fvf_decl_count - 1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync while (low <= high)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync p = (low + high) >> 1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("%d ", p);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (fvf_decls[p].fvf == fvf)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("found %p.\n", fvf_decls[p].decl);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return fvf_decls[p].decl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (fvf_decls[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 (FAILED(hr = vdecl_convert_fvf(fvf, &elements)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = d3d9_vertex_declaration_create(device, elements, &d3d9_declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, elements);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->fvf_decl_size == device->fvf_decl_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT grow = max(device->fvf_decl_size / 2, 8);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync fvf_decls = HeapReAlloc(GetProcessHeap(), 0, fvf_decls, sizeof(*fvf_decls) * (device->fvf_decl_size + grow));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!fvf_decls)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVertexDeclaration9_Release(&d3d9_declaration->IDirect3DVertexDeclaration9_iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->fvf_decls = fvf_decls;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->fvf_decl_size += grow;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_declaration->fvf = fvf;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_declaration = d3d9_declaration->wined3d_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_vertex_declaration_incref(wined3d_declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVertexDeclaration9_Release(&d3d9_declaration->IDirect3DVertexDeclaration9_iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync memmove(fvf_decls + low + 1, fvf_decls + low, sizeof(*fvf_decls) * (device->fvf_decl_count - low));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync fvf_decls[low].decl = wined3d_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync fvf_decls[low].fvf = fvf;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ++device->fvf_decl_count;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Returning %p. %u declatations in array.\n", wined3d_declaration, device->fvf_decl_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return wined3d_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetFVF(IDirect3DDevice9Ex *iface, DWORD fvf)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_vertex_declaration *decl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, fvf %#x.\n", iface, fvf);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!fvf)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("%#x is not a valid FVF.\n", fvf);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!(decl = device_get_fvf_declaration(device, fvf)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to create a vertex declaration for fvf %#x.\n", fvf);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_DRIVERINTERNALERROR;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_vertex_declaration(device->wined3d_device, decl);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetFVF(IDirect3DDevice9Ex *iface, DWORD *fvf)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_vertex_declaration *wined3d_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertex_declaration *d3d9_declaration;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, fvf %p.\n", iface, fvf);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((wined3d_declaration = wined3d_device_get_vertex_declaration(device->wined3d_device)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_declaration = wined3d_vertex_declaration_get_parent(wined3d_declaration);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *fvf = d3d9_declaration->fvf;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *fvf = 0;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Returning FVF %#x.\n", *fvf);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateVertexShader(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const DWORD *byte_code, IDirect3DVertexShader9 **shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertexshader *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, byte_code %p, shader %p.\n", iface, byte_code, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = vertexshader_init(object, device, byte_code);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize vertex shader, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created vertex shader %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = &object->IDirect3DVertexShader9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetVertexShader(IDirect3DDevice9Ex *iface, IDirect3DVertexShader9 *shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertexshader *shader_obj = unsafe_impl_from_IDirect3DVertexShader9(shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %p.\n", iface, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_vertex_shader(device->wined3d_device,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync shader_obj ? shader_obj->wined3d_shader : NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetVertexShader(IDirect3DDevice9Ex *iface, IDirect3DVertexShader9 **shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertexshader *shader_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_shader *wined3d_shader;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %p.\n", iface, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((wined3d_shader = wined3d_device_get_vertex_shader(device->wined3d_device)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync shader_impl = wined3d_shader_get_parent(wined3d_shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = &shader_impl->IDirect3DVertexShader9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVertexShader9_AddRef(*shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Returning %p.\n", *shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetVertexShaderConstantF(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, const float *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (reg_idx + count > D3D9_MAX_VERTEX_SHADER_CONSTANTF)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Trying to access %u constants, but d3d9 only supports %u\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync reg_idx + count, D3D9_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, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetVertexShaderConstantF(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, float *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (reg_idx + count > D3D9_MAX_VERTEX_SHADER_CONSTANTF)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Trying to access %u constants, but d3d9 only supports %u\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync reg_idx + count, D3D9_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, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetVertexShaderConstantI(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, const int *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_vs_consts_i(device->wined3d_device, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetVertexShaderConstantI(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, int *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_vs_consts_i(device->wined3d_device, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetVertexShaderConstantB(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, const BOOL *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_vs_consts_b(device->wined3d_device, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetVertexShaderConstantB(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, BOOL *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_vs_consts_b(device->wined3d_device, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetStreamSource(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT stream_idx, IDirect3DVertexBuffer9 *buffer, UINT offset, UINT stride)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertexbuffer *buffer_impl = unsafe_impl_from_IDirect3DVertexBuffer9(buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stream_idx %u, buffer %p, offset %u, stride %u.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, stream_idx, buffer, offset, 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, offset, stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetStreamSource(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT stream_idx, IDirect3DVertexBuffer9 **buffer, UINT *offset, UINT *stride)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_vertexbuffer *buffer_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_buffer *wined3d_buffer;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stream_idx %u, buffer %p, offset %p, stride %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, stream_idx, buffer, offset, 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, offset, stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (SUCCEEDED(hr) && wined3d_buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync buffer_impl = wined3d_buffer_get_parent(wined3d_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *buffer = &buffer_impl->IDirect3DVertexBuffer9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVertexBuffer9_AddRef(*buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_buffer_decref(wined3d_buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Call to GetStreamSource failed %p %p\n", offset, stride);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *buffer = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetStreamSourceFreq(IDirect3DDevice9Ex *iface, UINT stream_idx, UINT freq)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stream_idx %u, freq %u.\n", iface, stream_idx, freq);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_stream_source_freq(device->wined3d_device, stream_idx, freq);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetStreamSourceFreq(IDirect3DDevice9Ex *iface, UINT stream_idx, UINT *freq)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, stream_idx %u, freq %p.\n", iface, stream_idx, freq);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_stream_source_freq(device->wined3d_device, stream_idx, freq);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetIndices(IDirect3DDevice9Ex *iface, IDirect3DIndexBuffer9 *buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_indexbuffer *ib = unsafe_impl_from_IDirect3DIndexBuffer9(buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, buffer %p.\n", iface, buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
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 d3d9_device_GetIndices(IDirect3DDevice9Ex *iface, IDirect3DIndexBuffer9 **buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync enum wined3d_format_id wined3d_format;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_buffer *wined3d_buffer;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_indexbuffer *buffer_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, buffer %p.\n", iface, buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!buffer)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
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->IDirect3DIndexBuffer9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DIndexBuffer9_AddRef(*buffer);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *buffer = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreatePixelShader(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const DWORD *byte_code, IDirect3DPixelShader9 **shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_pixelshader *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, byte_code %p, shader %p.\n", iface, byte_code, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Failed to allocate pixel shader memory.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = pixelshader_init(object, device, byte_code);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize pixel shader, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created pixel shader %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = &object->IDirect3DPixelShader9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetPixelShader(IDirect3DDevice9Ex *iface, IDirect3DPixelShader9 *shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_pixelshader *shader_obj = unsafe_impl_from_IDirect3DPixelShader9(shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %p.\n", iface, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_pixel_shader(device->wined3d_device,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync shader_obj ? shader_obj->wined3d_shader : NULL);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetPixelShader(IDirect3DDevice9Ex *iface, IDirect3DPixelShader9 **shader)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_pixelshader *shader_impl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_shader *wined3d_shader;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, shader %p.\n", iface, shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!shader) return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if ((wined3d_shader = wined3d_device_get_pixel_shader(device->wined3d_device)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync shader_impl = wined3d_shader_get_parent(wined3d_shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = &shader_impl->IDirect3DPixelShader9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DPixelShader9_AddRef(*shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *shader = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Returning %p.\n", *shader);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetPixelShaderConstantF(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, const float *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_ps_consts_f(device->wined3d_device, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetPixelShaderConstantF(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, float *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_ps_consts_f(device->wined3d_device, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetPixelShaderConstantI(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, const int *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_ps_consts_i(device->wined3d_device, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetPixelShaderConstantI(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, int *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_ps_consts_i(device->wined3d_device, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetPixelShaderConstantB(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, const BOOL *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_set_ps_consts_b(device->wined3d_device, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetPixelShaderConstantB(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT reg_idx, BOOL *data, UINT count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, reg_idx %u, data %p, count %u.\n", iface, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_ps_consts_b(device->wined3d_device, reg_idx, data, count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_DrawRectPatch(IDirect3DDevice9Ex *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 d3d9_device_DrawTriPatch(IDirect3DDevice9Ex *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 d3d9_device_DeletePatch(IDirect3DDevice9Ex *iface, UINT handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, handle %#x unimplemented.\n", iface, handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateQuery(IDirect3DDevice9Ex *iface, D3DQUERYTYPE type, IDirect3DQuery9 **query)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_query *object;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, type %#x, query %p.\n", iface, type, query);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!object)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = query_init(object, device, type);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WARN("Failed to initialize query, hr %#x.\n", hr);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("Created query %p.\n", object);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (query) *query = &object->IDirect3DQuery9_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync else IDirect3DQuery9_Release(&object->IDirect3DQuery9_iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetConvolutionMonoKernel(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, float *rows, float *columns)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, width %u, height %u, rows %p, columns %p stub!\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, rows, columns);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOTIMPL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_ComposeRects(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface9 *src_surface, IDirect3DSurface9 *dst_surface, IDirect3DVertexBuffer9 *src_descs,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT rect_count, IDirect3DVertexBuffer9 *dst_descs, D3DCOMPOSERECTSOP operation, INT offset_x, INT offset_y)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, src_surface %p, dst_surface %p, src_descs %p, rect_count %u,\n"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync "dst_descs %p, operation %#x, offset_x %u, offset_y %u stub!\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, src_surface, dst_surface, src_descs, rect_count,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync dst_descs, operation, offset_x, offset_y);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOTIMPL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_PresentEx(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const RGNDATA *dirty_region, DWORD flags)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, src_rect %s, dst_rect %s, dst_window_override %p, dirty_region %p, flags %#x.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect),
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync dst_window_override, dirty_region, flags);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_present(device->wined3d_device, src_rect, dst_rect,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync dst_window_override, dirty_region, flags);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetGPUThreadPriority(IDirect3DDevice9Ex *iface, INT *priority)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, priority %p stub!\n", iface, priority);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOTIMPL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetGPUThreadPriority(IDirect3DDevice9Ex *iface, INT priority)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, priority %d stub!\n", iface, priority);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOTIMPL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_WaitForVBlank(IDirect3DDevice9Ex *iface, UINT swapchain_idx)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, swapchain_idx %u stub!\n", iface, swapchain_idx);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOTIMPL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CheckResourceResidency(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DResource9 **resources, UINT32 resource_count)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, resources %p, resource_count %u stub!\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, resources, resource_count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOTIMPL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_SetMaximumFrameLatency(IDirect3DDevice9Ex *iface, UINT max_latency)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, max_latency %u stub!\n", iface, max_latency);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOTIMPL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetMaximumFrameLatency(IDirect3DDevice9Ex *iface, UINT *max_latency)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, max_latency %p stub!\n", iface, max_latency);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync *max_latency = 2;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOTIMPL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CheckDeviceState(IDirect3DDevice9Ex *iface, HWND dst_window)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync static int i;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, dst_window %p stub!\n", iface, dst_window);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!i++)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, dst_window %p stub!\n", iface, dst_window);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateRenderTargetEx(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, D3DFORMAT format, D3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BOOL lockable, IDirect3DSurface9 **surface, HANDLE *shared_handle, DWORD usage)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, width %u, height %u, format %#x, multisample_type %#x, multisample_quality %u,\n"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync "lockable %#x, surface %p, shared_handle %p, usage %#x stub!\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, format, multisample_type, multisample_quality,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync lockable, surface, shared_handle, usage);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOTIMPL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateOffscreenPlainSurfaceEx(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, D3DFORMAT format, D3DPOOL pool, IDirect3DSurface9 **surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HANDLE *shared_handle, DWORD usage)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, width %u, height %u, format %#x, pool %#x, surface %p, shared_handle %p, usage %#x stub!\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, format, pool, surface, shared_handle, usage);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOTIMPL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_CreateDepthStencilSurfaceEx(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT width, UINT height, D3DFORMAT format, D3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync BOOL discard, IDirect3DSurface9 **surface, HANDLE *shared_handle, DWORD usage)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("iface %p, width %u, height %u, format %#x, multisample_type %#x, multisample_quality %u,\n"
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync "discard %#x, surface %p, shared_handle %p, usage %#x stub!\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, width, height, format, multisample_type, multisample_quality,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync discard, surface, shared_handle, usage);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (shared_handle)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Resource sharing not implemented, *shared_handle %p.\n", *shared_handle);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_NOTIMPL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_ResetEx(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync D3DPRESENT_PARAMETERS *present_parameters, D3DDISPLAYMODEEX *mode)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_swapchain_desc swapchain_desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_display_mode wined3d_mode;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, present_parameters %p, mode %p.\n", iface, present_parameters, mode);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (mode)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mode.width = mode->Width;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mode.height = mode->Height;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mode.refresh_rate = mode->RefreshRate;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mode.format_id = wined3dformat_from_d3dformat(mode->Format);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mode.scanline_ordering = mode->ScanLineOrdering;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
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 hr = wined3d_device_reset(device->wined3d_device, &swapchain_desc,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync mode ? &wined3d_mode : NULL, reset_enum_callback, FALSE);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic HRESULT WINAPI d3d9_device_GetDisplayModeEx(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT swapchain_idx, D3DDISPLAYMODEEX *mode, D3DDISPLAYROTATION *rotation)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_display_mode wined3d_mode;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("iface %p, swapchain_idx %u, mode %p, rotation %p.\n",
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync iface, swapchain_idx, mode, rotation);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (mode->Size != sizeof(*mode))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3DERR_INVALIDCALL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_get_display_mode(device->wined3d_device, swapchain_idx, &wined3d_mode,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync (enum wined3d_display_rotation *)rotation);
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 mode->ScanLineOrdering = wined3d_mode.scanline_ordering;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic const struct IDirect3DDevice9ExVtbl d3d9_device_vtbl =
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* IUnknown */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_QueryInterface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_AddRef,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_Release,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* IDirect3DDevice9 */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_TestCooperativeLevel,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetAvailableTextureMem,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_EvictManagedResources,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetDirect3D,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetDeviceCaps,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetDisplayMode,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetCreationParameters,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetCursorProperties,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetCursorPosition,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_ShowCursor,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateAdditionalSwapChain,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetSwapChain,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetNumberOfSwapChains,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_Reset,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_Present,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetBackBuffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetRasterStatus,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetDialogBoxMode,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetGammaRamp,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetGammaRamp,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateVolumeTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateCubeTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateVertexBuffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateIndexBuffer,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateRenderTarget,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateDepthStencilSurface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_UpdateSurface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_UpdateTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetRenderTargetData,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetFrontBufferData,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_StretchRect,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_ColorFill,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateOffscreenPlainSurface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetRenderTarget,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetRenderTarget,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetDepthStencilSurface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetDepthStencilSurface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_BeginScene,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_EndScene,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_Clear,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetTransform,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetTransform,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_MultiplyTransform,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetViewport,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetViewport,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetMaterial,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetMaterial,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetLight,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetLight,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_LightEnable,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetLightEnable,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetClipPlane,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetClipPlane,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetRenderState,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetRenderState,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateStateBlock,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_BeginStateBlock,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_EndStateBlock,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetClipStatus,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetClipStatus,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetTextureStageState,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetTextureStageState,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetSamplerState,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetSamplerState,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_ValidateDevice,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetPaletteEntries,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetPaletteEntries,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetCurrentTexturePalette,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetCurrentTexturePalette,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetScissorRect,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetScissorRect,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetSoftwareVertexProcessing,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetSoftwareVertexProcessing,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetNPatchMode,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetNPatchMode,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_DrawPrimitive,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_DrawIndexedPrimitive,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_DrawPrimitiveUP,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_DrawIndexedPrimitiveUP,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_ProcessVertices,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateVertexDeclaration,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetVertexDeclaration,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetVertexDeclaration,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetFVF,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetFVF,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateVertexShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetVertexShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetVertexShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetVertexShaderConstantF,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetVertexShaderConstantF,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetVertexShaderConstantI,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetVertexShaderConstantI,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetVertexShaderConstantB,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetVertexShaderConstantB,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetStreamSource,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetStreamSource,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetStreamSourceFreq,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetStreamSourceFreq,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetIndices,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetIndices,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreatePixelShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetPixelShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetPixelShader,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetPixelShaderConstantF,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetPixelShaderConstantF,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetPixelShaderConstantI,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetPixelShaderConstantI,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetPixelShaderConstantB,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetPixelShaderConstantB,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_DrawRectPatch,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_DrawTriPatch,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_DeletePatch,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateQuery,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* IDirect3DDevice9Ex */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetConvolutionMonoKernel,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_ComposeRects,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_PresentEx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetGPUThreadPriority,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetGPUThreadPriority,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_WaitForVBlank,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CheckResourceResidency,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_SetMaximumFrameLatency,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetMaximumFrameLatency,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CheckDeviceState,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateRenderTargetEx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateOffscreenPlainSurfaceEx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_CreateDepthStencilSurfaceEx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_ResetEx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d9_device_GetDisplayModeEx,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync};
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic inline struct d3d9_device *device_from_device_parent(struct wined3d_device_parent *device_parent)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return CONTAINING_RECORD(device_parent, struct d3d9_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#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , HANDLE *shared_handle
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , void *pvClientMem
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync )
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = device_from_device_parent(device_parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_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#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = d3d9_device_create_surface(device, desc->width, desc->height,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3dformat_from_wined3dformat(desc->format), flags, (IDirect3DSurface9 **)&d3d_surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync desc->usage, desc->pool, desc->multisample_type, desc->multisample_quality
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , shared_handle
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , pvClientMem
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync )))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = d3d9_device_create_surface(device, desc->width, desc->height,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3dformat_from_wined3dformat(desc->format), flags, (IDirect3DSurface9 **)&d3d_surface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync desc->usage, desc->pool, desc->multisample_type, desc->multisample_quality)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
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 IDirect3DDevice9Ex_Release(d3d_surface->parent_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync d3d_surface->parent_device = NULL;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DSurface9_Release(&d3d_surface->IDirect3DSurface9_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 d3d9_device *device = device_from_device_parent(device_parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_resource_desc texture_desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_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 if (container_parent == device_parent)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync container_parent = &device->IDirect3DDevice9Ex_iface;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync texture_desc = *desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync texture_desc.resource_type = WINED3D_RTYPE_TEXTURE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = wined3d_texture_create_2d(device->wined3d_device, &texture_desc, 1,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_SURFACE_MAPPABLE, container_parent, &d3d9_null_wined3d_parent_ops, &texture
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , NULL, NULL)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr = wined3d_texture_create_2d(device->wined3d_device, &texture_desc, 1,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3D_SURFACE_MAPPABLE, container_parent, &d3d9_null_wined3d_parent_ops, &texture)))
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
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->IDirect3DDevice9Ex_iface;
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#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , HANDLE *shared_handle
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , void *pvClientMem
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync )
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = device_from_device_parent(device_parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_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#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , shared_handle
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , pvClientMem
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync );
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 IDirect3DVolume9_Release(&object->IDirect3DVolume9_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 d3d9_device *device = device_from_device_parent(device_parent);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_swapchain *d3d_swapchain;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync TRACE("device_parent %p, desc %p, swapchain %p\n", device_parent, desc, swapchain);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = d3d9_swapchain_create(device, desc, &d3d_swapchain);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (FAILED(hr))
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);
76f3927069cc452e77bf72f32d9175c0256ed3b3vboxsync IDirect3DSwapChain9Ex_Release(&d3d_swapchain->IDirect3DSwapChain9Ex_iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncstatic const struct wined3d_device_parent_ops d3d9_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
3afb377509fa36b98d85bf48c86eeb7225c999c9vboxsync#if defined(VBOX) && defined(RT_ARCH_AMD64)
3afb377509fa36b98d85bf48c86eeb7225c999c9vboxsyncDECLASM(uint16_t) VBoxAsmFpuFCWGet();
3afb377509fa36b98d85bf48c86eeb7225c999c9vboxsyncDECLASM(void) VBoxAsmFpuFCWSet(uint16_t u16FCW);
3afb377509fa36b98d85bf48c86eeb7225c999c9vboxsync#endif
3afb377509fa36b98d85bf48c86eeb7225c999c9vboxsync
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;
3afb377509fa36b98d85bf48c86eeb7225c999c9vboxsync#elif defined(VBOX) && defined(RT_ARCH_AMD64)
3afb377509fa36b98d85bf48c86eeb7225c999c9vboxsync uint16_t cw = VBoxAsmFpuFCWGet();
3afb377509fa36b98d85bf48c86eeb7225c999c9vboxsync cw = (cw & ~0xf3f) | 0x3f;
3afb377509fa36b98d85bf48c86eeb7225c999c9vboxsync VBoxAsmFpuFCWSet(cw);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("FPU setup not implemented for this platform.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncHRESULT device_init(struct d3d9_device *device, struct d3d9 *parent, struct wined3d *wined3d,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT adapter, D3DDEVTYPE device_type, HWND focus_window, DWORD flags
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , VBOXWINEEX_D3DPRESENT_PARAMETERS *parameters
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , D3DPRESENT_PARAMETERS *parameters
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync , D3DDISPLAYMODEEX *mode)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct wined3d_swapchain_desc *swapchain_desc;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync UINT i, count = 1;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (mode)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync FIXME("Ignoring display mode.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->IDirect3DDevice9Ex_iface.lpVtbl = &d3d9_device_vtbl;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->device_parent.ops = &d3d9_wined3d_device_parent_ops;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->refcount = 1;
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 return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (flags & D3DCREATE_ADAPTERGROUP_DEVICE)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync WINED3DCAPS caps;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_get_device_caps(wined3d, adapter, device_type, &caps);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync count = caps.NumberOfAdaptersInGroup;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (flags & D3DCREATE_MULTITHREADED)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_set_multithreaded(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifndef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!parameters->Windowed)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!focus_window)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync focus_window = parameters->hDeviceWindow;
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 return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync for (i = 0; i < count; ++i)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HWND device_window = parameters[i].hDeviceWindow;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!device_window) device_window = focus_window;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_setup_fullscreen_window(device->wined3d_device, device_window,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync parameters[i].BackBufferWidth,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync parameters[i].BackBufferHeight);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!parameters->Base.Windowed)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("non-windowed mode unsupported!");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync parameters->Base.Windowed = TRUE;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc = HeapAlloc(GetProcessHeap(), 0, sizeof(*swapchain_desc) * count);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!swapchain_desc)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to allocate wined3d parameters.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_decref(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync for (i = 0; i < count; ++i)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_swapchain_desc_from_present_parameters(&swapchain_desc[i], &parameters[i].Base);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync swapchain_desc[i].pHgsmi = parameters[i].pHgsmi;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_swapchain_desc_from_present_parameters(&swapchain_desc[i], &parameters[i]);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
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#ifndef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_release_focus_window(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, swapchain_desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_decref(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync for (i = 0; i < count; ++i)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifndef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters_from_wined3d_swapchain_desc(&parameters[i], &swapchain_desc[i]);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#else
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync present_parameters_from_wined3d_swapchain_desc(&parameters[i].Base, &swapchain_desc[i]);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HeapFree(GetProcessHeap(), 0, swapchain_desc);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync /* Initialize the converted declaration array. This creates a valid pointer
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync * and when adding decls HeapReAlloc() can be used without further checking. */
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->fvf_decls = HeapAlloc(GetProcessHeap(), 0, 0);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (!device->fvf_decls)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("Failed to allocate FVF vertex declaration map memory.\n");
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_uninit_3d(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifndef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_release_focus_window(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_device_decref(device->wined3d_device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return E_OUTOFMEMORY;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3D9Ex_AddRef(&parent->IDirect3D9Ex_iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync device->d3d_parent = parent;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#ifdef VBOX_WITH_WDDM
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(sizeof (struct wined3d_box) == sizeof (VBOXBOX3D));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_SIZEOFMEMB(struct wined3d_box, left) == RT_SIZEOFMEMB(VBOXBOX3D, Left));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_SIZEOFMEMB(struct wined3d_box, top) == RT_SIZEOFMEMB(VBOXBOX3D, Top));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_SIZEOFMEMB(struct wined3d_box, right) == RT_SIZEOFMEMB(VBOXBOX3D, Right));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_SIZEOFMEMB(struct wined3d_box, bottom) == RT_SIZEOFMEMB(VBOXBOX3D, Bottom));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_SIZEOFMEMB(struct wined3d_box, front) == RT_SIZEOFMEMB(VBOXBOX3D, Front));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_SIZEOFMEMB(struct wined3d_box, back) == RT_SIZEOFMEMB(VBOXBOX3D, Back));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_OFFSETOF(struct wined3d_box, left) == RT_OFFSETOF(VBOXBOX3D, Left));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_OFFSETOF(struct wined3d_box, top) == RT_OFFSETOF(VBOXBOX3D, Top));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_OFFSETOF(struct wined3d_box, right) == RT_OFFSETOF(VBOXBOX3D, Right));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_OFFSETOF(struct wined3d_box, bottom) == RT_OFFSETOF(VBOXBOX3D, Bottom));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_OFFSETOF(struct wined3d_box, front) == RT_OFFSETOF(VBOXBOX3D, Front));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncAssertCompile(RT_OFFSETOF(struct wined3d_box, back) == RT_OFFSETOF(VBOXBOX3D, Back));
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncVBOXWINEEX_DECL(HRESULT) VBoxWineExD3DDev9VolBlt(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVolume9 *pSourceVolume, IDirect3DVolume9 *pDestinationVolume,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const VBOXBOX3D *pSrcBoxArg,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const VBOXPOINT3D *pDstPoin3D)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_volume *src = unsafe_impl_from_IDirect3DVolume9(pSourceVolume);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_volume *dst = unsafe_impl_from_IDirect3DVolume9(pDestinationVolume);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_blt_vol(device->wined3d_device, src->wined3d_volume, dst->wined3d_volume, (struct wined3d_box*)pSrcBoxArg, pDstPoin3D);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncVBOXWINEEX_DECL(HRESULT) VBoxWineExD3DDev9VolTexBlt(IDirect3DDevice9Ex *iface,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync IDirect3DVolumeTexture9 *pSourceTexture, IDirect3DVolumeTexture9 *pDestinationTexture,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const VBOXBOX3D *pSrcBoxArg,
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync const VBOXPOINT3D *pDstPoin3D)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_texture *src = unsafe_impl_from_IDirect3DBaseTexture9((IDirect3DBaseTexture9*)pSourceTexture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_texture *dst = unsafe_impl_from_IDirect3DBaseTexture9((IDirect3DBaseTexture9*)pDestinationTexture);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync HRESULT hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_lock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync hr = wined3d_device_blt_voltex(device->wined3d_device, src->wined3d_texture, dst->wined3d_texture, (struct wined3d_box*)pSrcBoxArg, pDstPoin3D);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_mutex_unlock();
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return hr;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsyncVBOXWINEEX_DECL(HRESULT) VBoxWineExD3DDev9Term(IDirect3DDevice9Ex *iface)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync{
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(iface);
19656593ca5dc4fd9681cdea5245dac152de5316vboxsync struct wined3d_device *wined3d_device = device->wined3d_device;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync LONG wined3d_refs;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (device->refcount != 1)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
8cfe2efff2058bd07777056112155ea5353dcfbavboxsync WARN("unexpected ref count %d, destroying in anyway", device->refcount);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync wined3d_refs = d3d9_device_Term(device);
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync if (wined3d_refs)
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync {
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync ERR("unexpected wined3dRefs %d, destroying in anyway", wined3d_refs);
19656593ca5dc4fd9681cdea5245dac152de5316vboxsync while (wined3d_device_decref(wined3d_device)) {}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync }
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync return D3D_OK;
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync}
058c0c53c37f5cb271aeb3c385c10766f84f4aefvboxsync#endif