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
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
void (*wine_tsx11_lock_ptr)(void) = NULL;
|
|
|
|
void (*wine_tsx11_unlock_ptr)(void) = NULL;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3D8* WINAPI Direct3DCreate8(UINT SDKVersion) {
|
|
|
|
IDirect3D8Impl* object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3D8Impl));
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
object->lpVtbl = &Direct3D8_Vtbl;
|
|
|
|
object->ref = 1;
|
2004-11-23 14:52:46 +01:00
|
|
|
object->WineD3D = WineDirect3DCreate(SDKVersion, 8, (IUnknown *)object);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2004-09-28 04:12:12 +02:00
|
|
|
TRACE("SDKVersion = %x, Created Direct3D object @ %p, WineObj @ %p\n", SDKVersion, object, object->WineD3D);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return (IDirect3D8*) object;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* At process attach */
|
2006-02-25 13:15:08 +01:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv) {
|
|
|
|
TRACE("fdwReason=%ld\n", fdwReason);
|
|
|
|
if (fdwReason == DLL_PROCESS_ATTACH) {
|
|
|
|
HMODULE mod;
|
2003-06-30 22:53:48 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
DisableThreadLibraryCalls(hInstDLL);
|
2003-06-30 22:53:48 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
mod = GetModuleHandleA( "winex11.drv" );
|
|
|
|
if (mod)
|
|
|
|
{
|
|
|
|
wine_tsx11_lock_ptr = (void*) GetProcAddress(mod, "wine_tsx11_lock");
|
|
|
|
wine_tsx11_unlock_ptr = (void*) GetProcAddress(mod, "wine_tsx11_unlock");
|
|
|
|
}
|
2004-04-16 01:58:15 +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
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ValidateVertexShader (D3D8.@)
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* toto result?
|
|
|
|
*/
|
2006-03-02 19:40:33 +01:00
|
|
|
BOOL WINAPI ValidateVertexShader(LPVOID pFunction, int param1, int param2, LPVOID toto)
|
2006-02-25 13:15:08 +01:00
|
|
|
{
|
2006-03-02 19:40:33 +01:00
|
|
|
FIXME("(%p %d %d %p): stub\n", pFunction, param1, param2, toto);
|
2006-02-25 13:15:08 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ValidatePixelShader (D3D8.@)
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* toto result?
|
|
|
|
*/
|
2006-03-02 19:40:33 +01:00
|
|
|
BOOL WINAPI ValidatePixelShader(LPVOID pFunction, int param1, int param2, LPVOID toto)
|
2006-02-25 13:15:08 +01:00
|
|
|
{
|
2006-03-02 19:40:33 +01:00
|
|
|
FIXME("(%p %d %d %p): stub\n", pFunction, param1, param2, toto);
|
2006-02-25 13:15:08 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|