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
cb3a133b
Commit
cb3a133b
authored
Nov 02, 2010
by
Henri Verbeet
Committed by
Alexandre Julliard
Nov 02, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Fix some TRACEs.
parent
b990617a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
surface.c
dlls/ddraw/surface.c
+2
-2
No files found.
dlls/ddraw/surface.c
View file @
cb3a133b
...
...
@@ -853,7 +853,7 @@ static HRESULT WINAPI ddraw_surface7_Blt(IDirectDrawSurface7 *iface, RECT *DestR
IDirectDrawSurfaceImpl
*
Src
=
(
IDirectDrawSurfaceImpl
*
)
SrcSurface
;
HRESULT
hr
;
TRACE
(
"iface %p, dst_rect %s, src_surface %p, src_rect %
p
, flags %#x, fx %p.
\n
"
,
TRACE
(
"iface %p, dst_rect %s, src_surface %p, src_rect %
s
, flags %#x, fx %p.
\n
"
,
iface
,
wine_dbgstr_rect
(
DestRect
),
SrcSurface
,
wine_dbgstr_rect
(
SrcRect
),
Flags
,
DDBltFx
);
/* Check for validity of the flags here. WineD3D Has the software-opengl selection path and would have
...
...
@@ -919,7 +919,7 @@ static HRESULT WINAPI ddraw_surface7_Blt(IDirectDrawSurface7 *iface, RECT *DestR
static
HRESULT
WINAPI
ddraw_surface3_Blt
(
IDirectDrawSurface3
*
iface
,
RECT
*
dst_rect
,
IDirectDrawSurface3
*
src_surface
,
RECT
*
src_rect
,
DWORD
flags
,
DDBLTFX
*
fx
)
{
TRACE
(
"iface %p, dst_rect %s, src_surface %p, src_rect %
p
, flags %#x, fx %p.
\n
"
,
TRACE
(
"iface %p, dst_rect %s, src_surface %p, src_rect %
s
, flags %#x, fx %p.
\n
"
,
iface
,
wine_dbgstr_rect
(
dst_rect
),
src_surface
,
wine_dbgstr_rect
(
src_rect
),
flags
,
fx
);
return
ddraw_surface7_Blt
((
IDirectDrawSurface7
*
)
surface_from_surface3
(
iface
),
dst_rect
,
...
...
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