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
88722390
Commit
88722390
authored
Jan 27, 2011
by
Henri Verbeet
Committed by
Alexandre Julliard
Jan 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Link directly to wined3d.
parent
69ea0884
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
47 deletions
+3
-47
Makefile.in
dlls/ddraw/Makefile.in
+1
-1
clipper.c
dlls/ddraw/clipper.c
+1
-1
ddraw.c
dlls/ddraw/ddraw.c
+1
-13
ddraw_private.h
dlls/ddraw/ddraw_private.h
+0
-4
main.c
dlls/ddraw/main.c
+0
-28
No files found.
dlls/ddraw/Makefile.in
View file @
88722390
MODULE
=
ddraw.dll
IMPORTLIB
=
ddraw
IMPORTS
=
dxguid uuid
ole32
user32 gdi32 advapi32
IMPORTS
=
dxguid uuid
wined3d
user32 gdi32 advapi32
C_SRCS
=
\
clipper.c
\
...
...
dlls/ddraw/clipper.c
View file @
88722390
...
...
@@ -307,7 +307,7 @@ HRESULT ddraw_clipper_init(IDirectDrawClipperImpl *clipper)
{
clipper
->
lpVtbl
=
&
ddraw_clipper_vtbl
;
clipper
->
ref
=
1
;
clipper
->
wineD3DClipper
=
p
WineDirect3DCreateClipper
();
clipper
->
wineD3DClipper
=
WineDirect3DCreateClipper
();
if
(
!
clipper
->
wineD3DClipper
)
{
WARN
(
"Failed to create wined3d clipper.
\n
"
);
...
...
dlls/ddraw/ddraw.c
View file @
88722390
...
...
@@ -3964,12 +3964,6 @@ DirectDrawCreateClipper(DWORD Flags,
return
CLASS_E_NOAGGREGATION
;
}
if
(
!
LoadWineD3D
())
{
LeaveCriticalSection
(
&
ddraw_cs
);
return
DDERR_NODIRECTDRAWSUPPORT
;
}
object
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
IDirectDrawClipperImpl
));
if
(
object
==
NULL
)
...
...
@@ -6016,13 +6010,7 @@ HRESULT ddraw_init(IDirectDrawImpl *ddraw, WINED3DDEVTYPE device_type)
ddraw
->
orig_width
=
GetSystemMetrics
(
SM_CXSCREEN
);
ddraw
->
orig_height
=
GetSystemMetrics
(
SM_CYSCREEN
);
if
(
!
LoadWineD3D
())
{
ERR
(
"Failed to load wined3d - broken OpenGL setup?
\n
"
);
return
DDERR_NODIRECTDRAWSUPPORT
;
}
ddraw
->
wineD3D
=
pWineDirect3DCreate
(
7
,
&
ddraw
->
IDirectDraw7_iface
);
ddraw
->
wineD3D
=
WineDirect3DCreate
(
7
,
&
ddraw
->
IDirectDraw7_iface
);
if
(
!
ddraw
->
wineD3D
)
{
WARN
(
"Failed to create a wined3d object.
\n
"
);
...
...
dlls/ddraw/ddraw_private.h
View file @
88722390
...
...
@@ -187,10 +187,6 @@ IWineD3DVertexDeclaration *ddraw_find_decl(IDirectDrawImpl *This, DWORD fvf) DEC
/* The default surface type */
extern
WINED3DSURFTYPE
DefaultSurfaceType
DECLSPEC_HIDDEN
;
extern
typeof
(
WineDirect3DCreateClipper
)
*
pWineDirect3DCreateClipper
DECLSPEC_HIDDEN
;
extern
typeof
(
WineDirect3DCreate
)
*
pWineDirect3DCreate
DECLSPEC_HIDDEN
;
/*****************************************************************************
* IDirectDrawSurface implementation structure
*****************************************************************************/
...
...
dlls/ddraw/main.c
View file @
88722390
...
...
@@ -39,9 +39,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
/* The configured default surface */
WINED3DSURFTYPE
DefaultSurfaceType
=
SURFACE_UNKNOWN
;
typeof
(
WineDirect3DCreateClipper
)
*
pWineDirect3DCreateClipper
DECLSPEC_HIDDEN
;
typeof
(
WineDirect3DCreate
)
*
pWineDirect3DCreate
DECLSPEC_HIDDEN
;
/* DDraw list and critical section */
static
struct
list
global_ddraw_list
=
LIST_INIT
(
global_ddraw_list
);
...
...
@@ -170,31 +167,6 @@ void *ddraw_get_object(struct ddraw_handle_table *t, DWORD handle, enum ddraw_ha
return
entry
->
object
;
}
/*
* Helper Function for DDRAW_Create and DirectDrawCreateClipper for
* lazy loading of the Wine D3D driver.
*
* Returns
* TRUE on success
* FALSE on failure.
*/
BOOL
LoadWineD3D
(
void
)
{
static
HMODULE
hWineD3D
=
(
HMODULE
)
-
1
;
if
(
hWineD3D
==
(
HMODULE
)
-
1
)
{
hWineD3D
=
LoadLibraryA
(
"wined3d"
);
if
(
hWineD3D
)
{
pWineDirect3DCreate
=
(
typeof
(
WineDirect3DCreate
)
*
)
GetProcAddress
(
hWineD3D
,
"WineDirect3DCreate"
);
pWineDirect3DCreateClipper
=
(
typeof
(
WineDirect3DCreateClipper
)
*
)
GetProcAddress
(
hWineD3D
,
"WineDirect3DCreateClipper"
);
return
TRUE
;
}
}
return
hWineD3D
!=
NULL
;
}
/***********************************************************************
*
* Helper function for DirectDrawCreate and friends
...
...
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