Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
4d1192ad
Commit
4d1192ad
authored
Mar 15, 2016
by
Matteo Bruni
Committed by
Alexandre Julliard
Mar 15, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9: Cleanup header includes.
Signed-off-by:
Matteo Bruni
<
mbruni@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
303daeef
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
55 additions
and
76 deletions
+55
-76
animation.c
dlls/d3dx9_36/animation.c
+4
-2
core.c
dlls/d3dx9_36/core.c
+3
-9
d3dx9_36_main.c
dlls/d3dx9_36/d3dx9_36_main.c
+2
-9
d3dx9_private.h
dlls/d3dx9_36/d3dx9_private.h
+5
-7
effect.c
dlls/d3dx9_36/effect.c
+1
-6
font.c
dlls/d3dx9_36/font.c
+1
-2
line.c
dlls/d3dx9_36/line.c
+4
-2
math.c
dlls/d3dx9_36/math.c
+1
-7
mesh.c
dlls/d3dx9_36/mesh.c
+2
-7
render.c
dlls/d3dx9_36/render.c
+4
-2
shader.c
dlls/d3dx9_36/shader.c
+1
-6
skin.c
dlls/d3dx9_36/skin.c
+4
-2
sprite.c
dlls/d3dx9_36/sprite.c
+4
-2
surface.c
dlls/d3dx9_36/surface.c
+4
-3
texture.c
dlls/d3dx9_36/texture.c
+4
-3
util.c
dlls/d3dx9_36/util.c
+4
-2
volume.c
dlls/d3dx9_36/volume.c
+4
-2
xfile.c
dlls/d3dx9_36/xfile.c
+3
-3
No files found.
dlls/d3dx9_36/animation.c
View file @
4d1192ad
...
...
@@ -18,8 +18,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wine/debug.h"
#include "d3dx9_36_private.h"
#include "config.h"
#include "wine/port.h"
#include "d3dx9_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/core.c
View file @
4d1192ad
...
...
@@ -17,16 +17,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "config.h"
#include "wine/port.h"
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "d3dx9_36_private.h"
#include "d3dx9_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/d3dx9_36_main.c
View file @
4d1192ad
...
...
@@ -22,16 +22,9 @@
#include "config.h"
#include "wine/port.h"
#include "initguid.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "d3dx9.h"
#include "initguid.h"
#include "d3dx9_private.h"
/***********************************************************************
* DllMain.
...
...
dlls/d3dx9_36/d3dx9_
36_
private.h
→
dlls/d3dx9_36/d3dx9_private.h
View file @
4d1192ad
...
...
@@ -19,15 +19,13 @@
*
*/
#ifndef __WINE_D3DX9_
36_
PRIVATE_H
#define __WINE_D3DX9_
36_
PRIVATE_H
#ifndef __WINE_D3DX9_PRIVATE_H
#define __WINE_D3DX9_PRIVATE_H
#include <stdarg.h>
#define NONAMELESSUNION
#include "wine/debug.h"
#define COBJMACROS
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "d3dx9.h"
#define ARRAY_SIZE(array) (sizeof(array)/sizeof(*array))
...
...
@@ -110,4 +108,4 @@ const char *debug_d3dxparameter_registerset(D3DXREGISTER_SET r) DECLSPEC_HIDDEN;
void
set_number
(
void
*
outdata
,
D3DXPARAMETER_TYPE
outtype
,
const
void
*
indata
,
D3DXPARAMETER_TYPE
intype
)
DECLSPEC_HIDDEN
;
#endif
/* __WINE_D3DX9_
36_
PRIVATE_H */
#endif
/* __WINE_D3DX9_PRIVATE_H */
dlls/d3dx9_36/effect.c
View file @
4d1192ad
...
...
@@ -19,13 +19,8 @@
#include "config.h"
#include "wine/port.h"
#define NONAMELESSUNION
#include "wine/debug.h"
#include "wine/unicode.h"
#include "windef.h"
#include "wingdi.h"
#include "d3dx9_36_private.h"
#include "d3dx9_private.h"
#include "d3dcompiler.h"
/* Constants for special INT/FLOAT conversation */
...
...
dlls/d3dx9_36/font.c
View file @
4d1192ad
...
...
@@ -20,9 +20,8 @@
#include "config.h"
#include "wine/port.h"
#include "
wine/debug
.h"
#include "
d3dx9_private
.h"
#include "wine/unicode.h"
#include "d3dx9_36_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/line.c
View file @
4d1192ad
...
...
@@ -17,8 +17,10 @@
*
*/
#include "wine/debug.h"
#include "d3dx9_36_private.h"
#include "config.h"
#include "wine/port.h"
#include "d3dx9_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/math.c
View file @
4d1192ad
...
...
@@ -22,16 +22,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define NONAMELESSUNION
#include "config.h"
#include "wine/port.h"
#include "windef.h"
#include "wingdi.h"
#include "d3dx9_36_private.h"
#include "wine/debug.h"
#include "d3dx9_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/mesh.c
View file @
4d1192ad
...
...
@@ -27,23 +27,18 @@
#include "config.h"
#include "wine/port.h"
#define COBJMACROS
#define NONAMELESSUNION
#include <assert.h>
#ifdef HAVE_FLOAT_H
# include <float.h>
#endif
#include "windef.h"
#include "wingdi.h"
#include "d3dx9.h"
#include "d3dx9_private.h"
#undef MAKE_DDHRESULT
#include "dxfile.h"
#include "rmxfguid.h"
#include "rmxftmpl.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "wine/list.h"
#include "d3dx9_36_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/render.c
View file @
4d1192ad
...
...
@@ -17,8 +17,10 @@
*
*/
#include "wine/debug.h"
#include "d3dx9_36_private.h"
#include "config.h"
#include "wine/port.h"
#include "d3dx9_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/shader.c
View file @
4d1192ad
...
...
@@ -21,14 +21,9 @@
#include "config.h"
#include "wine/port.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "windef.h"
#include "wingdi.h"
#include "objbase.h"
#include "d3dx9_private.h"
#include "d3dcommon.h"
#include "d3dcompiler.h"
#include "d3dx9_36_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/skin.c
View file @
4d1192ad
...
...
@@ -18,8 +18,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wine/debug.h"
#include "d3dx9_36_private.h"
#include "config.h"
#include "wine/port.h"
#include "d3dx9_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/sprite.c
View file @
4d1192ad
...
...
@@ -17,8 +17,10 @@
*
*/
#include "wine/debug.h"
#include "d3dx9_36_private.h"
#include "config.h"
#include "wine/port.h"
#include "d3dx9_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/surface.c
View file @
4d1192ad
...
...
@@ -18,9 +18,10 @@
*
*/
#include "wine/debug.h"
#include "wine/unicode.h"
#include "d3dx9_36_private.h"
#include "config.h"
#include "wine/port.h"
#include "d3dx9_private.h"
#include "initguid.h"
#include "ole2.h"
...
...
dlls/d3dx9_36/texture.c
View file @
4d1192ad
...
...
@@ -19,9 +19,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wine/unicode.h"
#include "wine/debug.h"
#include "d3dx9_36_private.h"
#include "config.h"
#include "wine/port.h"
#include "d3dx9_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/util.c
View file @
4d1192ad
...
...
@@ -17,8 +17,10 @@
*
*/
#include "wine/debug.h"
#include "d3dx9_36_private.h"
#include "config.h"
#include "wine/port.h"
#include "d3dx9_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/volume.c
View file @
4d1192ad
...
...
@@ -16,8 +16,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wine/debug.h"
#include "d3dx9_36_private.h"
#include "config.h"
#include "wine/port.h"
#include "d3dx9_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
dlls/d3dx9_36/xfile.c
View file @
4d1192ad
...
...
@@ -17,10 +17,10 @@
*
*/
#include "wine/debug.h"
#include "config.h"
#include "wine/port.h"
#define COBJMACROS
#include "d3dx9.h"
#include "d3dx9_private.h"
#include "d3dx9xof.h"
#undef MAKE_DDHRESULT
#include "dxfile.h"
...
...
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