2006-02-25 13:15:08 +01:00
|
|
|
/*
|
|
|
|
* Direct3D 8
|
|
|
|
*
|
|
|
|
* Copyright 2005 Oliver Stieber
|
2002-06-26 01:23:03 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-06-26 01:23:03 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-04-12 02:06:42 +02:00
|
|
|
#include "config.h"
|
2006-02-20 11:11:35 +01:00
|
|
|
#include "initguid.h"
|
2002-09-28 00:46:16 +02:00
|
|
|
#include "d3d8_private.h"
|
2006-02-25 13:15:08 +01:00
|
|
|
#include "wine/debug.h"
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
|
2002-06-26 01:23:03 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
HRESULT WINAPI D3D8GetSWInfo(void) {
|
2002-06-26 01:23:03 +02:00
|
|
|
FIXME("(void): stub\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
void WINAPI DebugSetMute(void) {
|
2003-06-05 00:45:57 +02:00
|
|
|
/* nothing to do */
|
2002-06-26 01:23:03 +02:00
|
|
|
}
|
|
|
|
|
2009-09-12 14:13:58 +02:00
|
|
|
IDirect3D8* WINAPI DECLSPEC_HOTPATCH Direct3DCreate8(UINT SDKVersion) {
|
2007-05-22 23:57:30 +02:00
|
|
|
IDirect3D8Impl* object;
|
|
|
|
TRACE("SDKVersion = %x\n", SDKVersion);
|
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
|
|
|
|
2007-05-22 23:57:30 +02:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3D8Impl));
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
object->lpVtbl = &Direct3D8_Vtbl;
|
|
|
|
object->ref = 1;
|
2008-10-23 16:37:10 +02:00
|
|
|
object->WineD3D = WineDirect3DCreate(8, (IUnknown *)object);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-05-22 23:57:30 +02:00
|
|
|
TRACE("Created Direct3D object @ %p, WineObj @ %p\n", object, object->WineD3D);
|
2009-08-25 08:17:14 +02:00
|
|
|
|
|
|
|
wined3d_mutex_unlock();
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2008-06-24 11:07:43 +02:00
|
|
|
if (!object->WineD3D)
|
|
|
|
{
|
|
|
|
HeapFree( GetProcessHeap(), 0, object );
|
|
|
|
object = NULL;
|
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
return (IDirect3D8*) object;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* At process attach */
|
2006-09-26 15:25:11 +02:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
|
|
|
|
{
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("fdwReason=%d\n", fdwReason);
|
2006-09-26 15:25:11 +02:00
|
|
|
if (fdwReason == DLL_PROCESS_ATTACH)
|
2006-02-25 13:15:08 +01:00
|
|
|
DisableThreadLibraryCalls(hInstDLL);
|
2003-06-30 22:53:48 +02:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
return TRUE;
|
2002-06-26 01:23:03 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
2009-08-25 08:17:13 +02:00
|
|
|
* ValidateVertexShader (D3D8.@)
|
2006-02-25 13:15:08 +01:00
|
|
|
*
|
2006-09-10 13:05:45 +02:00
|
|
|
* I've seen reserved1 and reserved2 always passed as 0's
|
2009-08-31 09:57:52 +02:00
|
|
|
* bool seems always passed as 0 or 1, but other values work as well...
|
2006-02-25 13:15:08 +01:00
|
|
|
* toto result?
|
|
|
|
*/
|
2007-08-03 00:47:02 +02:00
|
|
|
HRESULT WINAPI ValidateVertexShader(DWORD* vertexshader, DWORD* reserved1, DWORD* reserved2, BOOL bool, DWORD* toto)
|
2009-08-31 09:57:52 +02:00
|
|
|
{
|
2006-09-10 13:05:45 +02:00
|
|
|
HRESULT ret;
|
2010-02-19 15:37:23 +01:00
|
|
|
static BOOL warned;
|
|
|
|
|
|
|
|
if (TRACE_ON(d3d8) || !warned) {
|
|
|
|
FIXME("(%p %p %p %d %p): stub\n", vertexshader, reserved1, reserved2, bool, toto);
|
|
|
|
warned = TRUE;
|
|
|
|
}
|
2006-09-10 13:05:45 +02:00
|
|
|
|
|
|
|
if (!vertexshader)
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
if (reserved1 || reserved2)
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
switch(*vertexshader) {
|
|
|
|
case 0xFFFE0101:
|
2009-08-31 09:57:52 +02:00
|
|
|
case 0xFFFE0100:
|
2006-09-10 13:05:45 +02:00
|
|
|
ret=S_OK;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR("vertexshader version mismatch\n");
|
|
|
|
ret=E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2009-08-25 08:17:13 +02:00
|
|
|
* ValidatePixelShader (D3D8.@)
|
2006-02-25 13:15:08 +01:00
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* toto result?
|
|
|
|
*/
|
2007-08-03 00:47:02 +02:00
|
|
|
HRESULT WINAPI ValidatePixelShader(DWORD* pixelshader, DWORD* reserved1, BOOL bool, DWORD* toto)
|
2006-02-25 13:15:08 +01:00
|
|
|
{
|
2006-09-18 20:16:48 +02:00
|
|
|
HRESULT ret;
|
2010-02-19 15:37:23 +01:00
|
|
|
static BOOL warned;
|
|
|
|
|
|
|
|
if (TRACE_ON(d3d8) || !warned) {
|
|
|
|
FIXME("(%p %p %d %p): stub\n", pixelshader, reserved1, bool, toto);
|
|
|
|
warned = TRUE;
|
|
|
|
}
|
2009-08-31 09:57:52 +02:00
|
|
|
|
2006-09-18 20:16:48 +02:00
|
|
|
if (!pixelshader)
|
|
|
|
return E_FAIL;
|
|
|
|
|
|
|
|
if (reserved1)
|
2009-08-31 09:57:52 +02:00
|
|
|
return E_FAIL;
|
2006-09-18 20:16:48 +02:00
|
|
|
|
|
|
|
switch(*pixelshader) {
|
|
|
|
case 0xFFFF0100:
|
|
|
|
case 0xFFFF0101:
|
|
|
|
case 0xFFFF0102:
|
|
|
|
case 0xFFFF0103:
|
|
|
|
case 0xFFFF0104:
|
|
|
|
ret=S_OK;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR("pixelshader version mismatch\n");
|
|
|
|
ret=E_FAIL;
|
|
|
|
}
|
|
|
|
return ret;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|