mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[D3DX9_30] Sync with Wine Staging 1.7.37. CORE-9246
svn path=/trunk/; revision=66432
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
@ stdcall D3DXConcatenateMeshes(ptr long long ptr ptr ptr ptr ptr) d3dx9_36.D3DXConcatenateMeshes
|
||||
@ stdcall D3DXConvertMeshSubsetToSingleStrip(ptr long long ptr ptr) d3dx9_36.D3DXConvertMeshSubsetToSingleStrip
|
||||
@ stdcall D3DXConvertMeshSubsetToStrips(ptr long long ptr ptr ptr ptr) d3dx9_36.D3DXConvertMeshSubsetToStrips
|
||||
@ stdcall -stub D3DXCpuOptimizations(long)
|
||||
@ stdcall D3DXCpuOptimizations(long)
|
||||
@ stdcall D3DXCreateAnimationController(long long long long ptr) d3dx9_36.D3DXCreateAnimationController
|
||||
@ stdcall D3DXCreateBox(ptr float float float ptr ptr) d3dx9_36.D3DXCreateBox
|
||||
@ stdcall D3DXCreateBuffer(long ptr) d3dx9_36.D3DXCreateBuffer
|
||||
|
||||
@@ -35,6 +35,10 @@
|
||||
|
||||
#include <d3dx9.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(d3dx);
|
||||
|
||||
/***********************************************************************
|
||||
* DllMain.
|
||||
*/
|
||||
@@ -62,3 +66,17 @@ BOOL WINAPI D3DXCheckVersion(UINT d3dsdkvers, UINT d3dxsdkvers)
|
||||
else
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
typedef enum _D3DX_CPU_OPTIMIZATION
|
||||
{
|
||||
D3DX_NOT_OPTIMIZED = 0,
|
||||
D3DX_3DNOW_OPTIMIZED = 1,
|
||||
D3DX_SSE2_OPTIMIZED = 2,
|
||||
D3DX_SSE_OPTIMIZED = 3
|
||||
} D3DX_CPU_OPTIMIZATION;
|
||||
|
||||
D3DX_CPU_OPTIMIZATION WINAPI D3DXCpuOptimizations(BOOL enable)
|
||||
{
|
||||
FIXME("%i - stub\n", enable);
|
||||
return D3DX_NOT_OPTIMIZED;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user