Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
b48e7474
Commit
b48e7474
authored
Oct 21, 2014
by
André Hentschel
Committed by
Alexandre Julliard
Oct 22, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9_30: Add stub for D3DXCpuOptimizations.
parent
42e5a32c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
d3dx9_30.spec
dlls/d3dx9_30/d3dx9_30.spec
+1
-1
d3dx9_30_main.c
dlls/d3dx9_30/d3dx9_30_main.c
+17
-0
No files found.
dlls/d3dx9_30/d3dx9_30.spec
View file @
b48e7474
...
...
@@ -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
@ st
ub
D3DXCpuOptimizations(long)
@ st
dcall
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
...
...
dlls/d3dx9_30/d3dx9_30_main.c
View file @
b48e7474
...
...
@@ -30,6 +30,9 @@
#include "winuser.h"
#include "d3dx9.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
/***********************************************************************
* DllMain.
...
...
@@ -58,3 +61,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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment