mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 04:37:15 +00:00
* Fixed d3d9.dll stubs
* Added first draft of IDirect3D9 implementation based on greatlrd's work svn path=/trunk/; revision=31168
This commit is contained in:
parent
6d228ac0a4
commit
cc08f895b2
2 changed files with 4600 additions and 7 deletions
|
@ -1,39 +1,45 @@
|
|||
#include <windows.h>
|
||||
#include "d3d9.h"
|
||||
#include "d3d9_private.h"
|
||||
|
||||
#include <debug.h>
|
||||
|
||||
HRESULT DLLAPI Direct3DShaderValidatorCreate9(void)
|
||||
DLLAPI
|
||||
HRESULT Direct3DShaderValidatorCreate9(void)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
return 0;
|
||||
}
|
||||
|
||||
HRESULT DLLAPI PSGPError(void)
|
||||
DLLAPI
|
||||
HRESULT PSGPError(void)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
return 0;
|
||||
}
|
||||
|
||||
HRESULT DLLAPI PSGPSampleTexture(void)
|
||||
DLLAPI
|
||||
HRESULT PSGPSampleTexture(void)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
return 0;
|
||||
}
|
||||
|
||||
HRESULT DLLAPI DebugSetLevel(void)
|
||||
DLLAPI
|
||||
HRESULT DebugSetLevel(void)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
return 0;
|
||||
}
|
||||
|
||||
HRESULT DLLAPI DebugSetMute(DWORD dw1)
|
||||
DLLAPI
|
||||
HRESULT DebugSetMute(DWORD dw1)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
return 0;
|
||||
}
|
||||
|
||||
DWORD DLLAPI Direct3DCreate9( UINT SDKVersion )
|
||||
DLLAPI
|
||||
IDirect3D9* WINAPI Direct3DCreate9(UINT SDKVersion)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
return 0;
|
||||
|
|
4587
reactos/dll/directx/d3d9/d3d9_private.h
Normal file
4587
reactos/dll/directx/d3d9/d3d9_private.h
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue