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
69c3e6ff
Commit
69c3e6ff
authored
Jun 06, 2005
by
Christian Costa
Committed by
Alexandre Julliard
Jun 06, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved d3ddevice and direct3d objects files to ddraw root dir.
Renamed all remaining files.
parent
d8c5960c
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
23 additions
and
39 deletions
+23
-39
configure
configure
+0
-10
configure.ac
configure.ac
+0
-2
Makefile.in
dlls/ddraw/Makefile.in
+12
-16
d3d_utils.c
dlls/ddraw/d3d_utils.c
+0
-0
ddraw_main.c
dlls/ddraw/ddraw_main.c
+1
-1
device_main.c
dlls/ddraw/device_main.c
+0
-0
device_opengl.c
dlls/ddraw/device_opengl.c
+1
-1
direct3d_main.c
dlls/ddraw/direct3d_main.c
+0
-0
direct3d_opengl.c
dlls/ddraw/direct3d_opengl.c
+1
-1
executebuffer.c
dlls/ddraw/executebuffer.c
+1
-1
light.c
dlls/ddraw/light.c
+1
-1
main.c
dlls/ddraw/main.c
+1
-1
material.c
dlls/ddraw/material.c
+1
-1
opengl_private.h
dlls/ddraw/opengl_private.h
+0
-0
opengl_utils.c
dlls/ddraw/opengl_utils.c
+1
-1
surface_main.c
dlls/ddraw/surface_main.c
+1
-1
texture.c
dlls/ddraw/texture.c
+1
-1
vertexbuffer.c
dlls/ddraw/vertexbuffer.c
+1
-1
viewport.c
dlls/ddraw/viewport.c
+0
-0
No files found.
configure
View file @
69c3e6ff
...
...
@@ -20049,10 +20049,6 @@ esac
ac_config_commands
=
"
$ac_config_commands
dlls/ddraw/d3ddevice"
ac_config_commands
=
"
$ac_config_commands
dlls/ddraw/direct3d"
ac_config_commands
=
"
$ac_config_commands
dlls/gdi/enhmfdrv"
ac_config_commands
=
"
$ac_config_commands
dlls/gdi/mfdrv"
...
...
@@ -20878,8 +20874,6 @@ do
"tools/winegcc/Makefile" ) CONFIG_FILES="
$CONFIG_FILES
tools/winegcc/Makefile" ;;
"tools/wmc/Makefile" ) CONFIG_FILES="
$CONFIG_FILES
tools/wmc/Makefile" ;;
"tools/wrc/Makefile" ) CONFIG_FILES="
$CONFIG_FILES
tools/wrc/Makefile" ;;
"dlls/ddraw/d3ddevice" ) CONFIG_COMMANDS="
$CONFIG_COMMANDS
dlls/ddraw/d3ddevice" ;;
"dlls/ddraw/direct3d" ) CONFIG_COMMANDS="
$CONFIG_COMMANDS
dlls/ddraw/direct3d" ;;
"dlls/gdi/enhmfdrv" ) CONFIG_COMMANDS="
$CONFIG_COMMANDS
dlls/gdi/enhmfdrv" ;;
"dlls/gdi/mfdrv" ) CONFIG_COMMANDS="
$CONFIG_COMMANDS
dlls/gdi/mfdrv" ;;
"dlls/kernel/messages" ) CONFIG_COMMANDS="
$CONFIG_COMMANDS
dlls/kernel/messages" ;;
...
...
@@ -21670,10 +21664,6 @@ esac
{ echo "
$as_me
:
$LINENO
: executing
$ac_dest
commands" >&5
echo "
$as_me
: executing
$ac_dest
commands" >&6;}
case
$ac_dest
in
dlls/ddraw/d3ddevice ) test -d "dlls/ddraw/d3ddevice" || ({ echo "
$as_me
:
$LINENO
: creating dlls/ddraw/d3ddevice" >&5
echo "
$as_me
: creating dlls/ddraw/d3ddevice" >&6;} && mkdir "dlls/ddraw/d3ddevice") ;;
dlls/ddraw/direct3d ) test -d "dlls/ddraw/direct3d" || ({ echo "
$as_me
:
$LINENO
: creating dlls/ddraw/direct3d" >&5
echo "
$as_me
: creating dlls/ddraw/direct3d" >&6;} && mkdir "dlls/ddraw/direct3d") ;;
dlls/gdi/enhmfdrv ) test -d "dlls/gdi/enhmfdrv" || ({ echo "
$as_me
:
$LINENO
: creating dlls/gdi/enhmfdrv" >&5
echo "
$as_me
: creating dlls/gdi/enhmfdrv" >&6;} && mkdir "dlls/gdi/enhmfdrv") ;;
dlls/gdi/mfdrv ) test -d "dlls/gdi/mfdrv" || ({ echo "
$as_me
:
$LINENO
: creating dlls/gdi/mfdrv" >&5
...
...
configure.ac
View file @
69c3e6ff
...
...
@@ -1507,8 +1507,6 @@ dnl **** Generate output files ****
AH_TOP([#define __WINE_CONFIG_H])
WINE_CONFIG_EXTRA_DIR(dlls/ddraw/d3ddevice)
WINE_CONFIG_EXTRA_DIR(dlls/ddraw/direct3d)
WINE_CONFIG_EXTRA_DIR(dlls/gdi/enhmfdrv)
WINE_CONFIG_EXTRA_DIR(dlls/gdi/mfdrv)
WINE_CONFIG_EXTRA_DIR(dlls/kernel/messages)
...
...
dlls/ddraw/Makefile.in
View file @
69c3e6ff
...
...
@@ -9,18 +9,18 @@ EXTRAINCL = @X_CFLAGS@
EXTRALIBS
=
-ldxguid
-luuid
@X_LIBS@ @X_PRE_LIBS@ @XLIB@ @X_EXTRA_LIBS@
OPENGLFILES
=
\
d3d
common
.c
\
d
3ddevice/
main.c
\
d
3ddevice/mesa
.c
\
d
3dexecutebuffer
.c
\
d
3dlight
.c
\
d3dmaterial
.c
\
d3dtexture
.c
\
d3dvertexbuffer
.c
\
d3dviewport
.c
\
direct3d/main
.c
\
direct3d/mesa
.c
\
mesa
.c
d3d
_utils
.c
\
d
evice_
main.c
\
d
evice_opengl
.c
\
d
irect3d_main
.c
\
d
irect3d_opengl
.c
\
executebuffer
.c
\
light
.c
\
material
.c
\
opengl_utils
.c
\
texture
.c
\
vertexbuffer
.c
\
viewport
.c
C_SRCS
=
\
@OPENGLFILES@
\
...
...
@@ -47,10 +47,6 @@ RC_SRCS = version.rc
SUBDIRS
=
tests
EXTRASUBDIRS
=
\
d3ddevice
\
direct3d
@MAKE_DLL_RULES@
### Dependencies:
dlls/ddraw/d3d
common
.c
→
dlls/ddraw/d3d
_utils
.c
View file @
69c3e6ff
File moved
dlls/ddraw/ddraw_main.c
View file @
69c3e6ff
...
...
@@ -67,7 +67,7 @@
#include "wine/debug.h"
#include "ddraw_private.h"
#include "
mesa
_private.h"
/* To have the D3D creation function */
#include "
opengl
_private.h"
/* To have the D3D creation function */
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/d
3ddevice/
main.c
→
dlls/ddraw/d
evice_
main.c
View file @
69c3e6ff
File moved
dlls/ddraw/d
3ddevice/mesa
.c
→
dlls/ddraw/d
evice_opengl
.c
View file @
69c3e6ff
...
...
@@ -43,7 +43,7 @@
#include "wine/library.h"
#include "d3d_private.h"
#include "
mesa
_private.h"
#include "
opengl
_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
WINE_DECLARE_DEBUG_CHANNEL
(
ddraw_geom
);
...
...
dlls/ddraw/direct3d
/
main.c
→
dlls/ddraw/direct3d
_
main.c
View file @
69c3e6ff
File moved
dlls/ddraw/direct3d
/mesa
.c
→
dlls/ddraw/direct3d
_opengl
.c
View file @
69c3e6ff
...
...
@@ -42,7 +42,7 @@
#include "ddraw_private.h"
#include "d3d_private.h"
#include "
mesa
_private.h"
#include "
opengl
_private.h"
#include "wine/debug.h"
...
...
dlls/ddraw/
d3d
executebuffer.c
→
dlls/ddraw/executebuffer.c
View file @
69c3e6ff
...
...
@@ -39,7 +39,7 @@
#include "wine/debug.h"
#include "d3d_private.h"
#include "
mesa
_private.h"
#include "
opengl
_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
WINE_DECLARE_DEBUG_CHANNEL
(
ddraw_geom
);
...
...
dlls/ddraw/
d3d
light.c
→
dlls/ddraw/light.c
View file @
69c3e6ff
...
...
@@ -37,7 +37,7 @@
#include "wine/debug.h"
#include "d3d_private.h"
#include "
mesa
_private.h"
#include "
opengl
_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/main.c
View file @
69c3e6ff
...
...
@@ -73,7 +73,7 @@ BOOL opengl_initialized = 0;
#ifdef HAVE_OPENGL
#include "
mesa
_private.h"
#include "
opengl
_private.h"
static
void
*
gl_handle
=
NULL
;
...
...
dlls/ddraw/
d3d
material.c
→
dlls/ddraw/material.c
View file @
69c3e6ff
...
...
@@ -37,7 +37,7 @@
#include "wine/debug.h"
#include "d3d_private.h"
#include "
mesa
_private.h"
#include "
opengl
_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/
mesa
_private.h
→
dlls/ddraw/
opengl
_private.h
View file @
69c3e6ff
File moved
dlls/ddraw/
mesa
.c
→
dlls/ddraw/
opengl_utils
.c
View file @
69c3e6ff
...
...
@@ -32,7 +32,7 @@
#include "d3d.h"
#include "wine/debug.h"
#include "
mesa
_private.h"
#include "
opengl
_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/surface_main.c
View file @
69c3e6ff
...
...
@@ -30,9 +30,9 @@
#define NONAMELESSSTRUCT
#include "winerror.h"
#include "mesa_private.h"
#include "wine/debug.h"
#include "ddraw_private.h"
#include "opengl_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
WINE_DECLARE_DEBUG_CHANNEL
(
ddraw_flip
);
...
...
dlls/ddraw/
d3d
texture.c
→
dlls/ddraw/texture.c
View file @
69c3e6ff
...
...
@@ -37,7 +37,7 @@
#include "d3d.h"
#include "wine/debug.h"
#include "
mesa
_private.h"
#include "
opengl
_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
WINE_DECLARE_DEBUG_CHANNEL
(
ddraw_tex
);
...
...
dlls/ddraw/
d3d
vertexbuffer.c
→
dlls/ddraw/vertexbuffer.c
View file @
69c3e6ff
...
...
@@ -33,7 +33,7 @@
#include "wine/debug.h"
#include "d3d_private.h"
#include "
mesa
_private.h"
#include "
opengl
_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ddraw
);
WINE_DECLARE_DEBUG_CHANNEL
(
ddraw_geom
);
...
...
dlls/ddraw/
d3d
viewport.c
→
dlls/ddraw/viewport.c
View file @
69c3e6ff
File moved
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