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
ce8f6ecf
Commit
ce8f6ecf
authored
Jul 19, 2010
by
Henri Verbeet
Committed by
Alexandre Julliard
Jul 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Merge the surface thunks into surface.c.
parent
6fb9ee0e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2 additions
and
5 deletions
+2
-5
Makefile.in
dlls/ddraw/Makefile.in
+0
-1
ddraw.c
dlls/ddraw/ddraw.c
+1
-1
ddraw_private.h
dlls/ddraw/ddraw_private.h
+1
-3
surface.c
dlls/ddraw/surface.c
+0
-0
surface_thunks.c
dlls/ddraw/surface_thunks.c
+0
-0
No files found.
dlls/ddraw/Makefile.in
View file @
ce8f6ecf
...
...
@@ -20,7 +20,6 @@ C_SRCS = \
parent.c
\
regsvr.c
\
surface.c
\
surface_thunks.c
\
texture.c
\
utils.c
\
vertexbuffer.c
\
...
...
dlls/ddraw/ddraw.c
View file @
ce8f6ecf
...
...
@@ -3324,7 +3324,7 @@ static HRESULT WINAPI ddraw7_CreateSurface(IDirectDraw7 *iface,
{
release_surf
=
object
;
object
=
object
->
complex_array
[
0
];
IDirectDrawSurfaceImpl_D
estroy
(
release_surf
);
ddraw_surface_d
estroy
(
release_surf
);
}
LeaveCriticalSection
(
&
ddraw_cs
);
return
hr
;
...
...
dlls/ddraw/ddraw_private.h
View file @
ce8f6ecf
...
...
@@ -282,9 +282,7 @@ extern const IDirectDrawGammaControlVtbl IDirectDrawGammaControl_Vtbl DECLSPEC_H
extern
const
IDirect3DTexture2Vtbl
IDirect3DTexture2_Vtbl
DECLSPEC_HIDDEN
;
extern
const
IDirect3DTextureVtbl
IDirect3DTexture1_Vtbl
DECLSPEC_HIDDEN
;
HRESULT
WINAPI
IDirectDrawSurfaceImpl_AddAttachedSurface
(
IDirectDrawSurfaceImpl
*
This
,
IDirectDrawSurfaceImpl
*
Surf
)
DECLSPEC_HIDDEN
;
void
IDirectDrawSurfaceImpl_Destroy
(
IDirectDrawSurfaceImpl
*
This
)
DECLSPEC_HIDDEN
;
void
ddraw_surface_destroy
(
IDirectDrawSurfaceImpl
*
surface
)
DECLSPEC_HIDDEN
;
static
inline
IDirectDrawSurfaceImpl
*
surface_from_texture1
(
IDirect3DTexture
*
iface
)
{
...
...
dlls/ddraw/surface.c
View file @
ce8f6ecf
This diff is collapsed.
Click to expand it.
dlls/ddraw/surface_thunks.c
deleted
100644 → 0
View file @
6fb9ee0e
This diff is collapsed.
Click to expand it.
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