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
8be3e5cf
Commit
8be3e5cf
authored
Dec 18, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Jan 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Always trace pixel formats in hex.
parent
30574dd6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
image.c
dlls/gdiplus/image.c
+4
-4
No files found.
dlls/gdiplus/image.c
View file @
8be3e5cf
...
...
@@ -429,7 +429,7 @@ GpStatus WINGDIPAPI GdipBitmapLockBits(GpBitmap* bitmap, GDIPCONST GpRect* rect,
UINT
abs_height
;
GpRect
act_rect
;
/* actual rect to be used */
TRACE
(
"%p %p %d
%d
%p
\n
"
,
bitmap
,
rect
,
flags
,
format
,
lockeddata
);
TRACE
(
"%p %p %d
0x%x
%p
\n
"
,
bitmap
,
rect
,
flags
,
format
,
lockeddata
);
if
(
!
lockeddata
||
!
bitmap
)
return
InvalidParameter
;
...
...
@@ -623,7 +623,7 @@ GpStatus WINGDIPAPI GdipCloneBitmapArea(REAL x, REAL y, REAL width, REAL height,
Rect
area
;
GpStatus
stat
;
TRACE
(
"(%f,%f,%f,%f,
%i
,%p,%p)
\n
"
,
x
,
y
,
width
,
height
,
format
,
srcBitmap
,
dstBitmap
);
TRACE
(
"(%f,%f,%f,%f,
0x%x
,%p,%p)
\n
"
,
x
,
y
,
width
,
height
,
format
,
srcBitmap
,
dstBitmap
);
if
(
!
srcBitmap
||
!
dstBitmap
||
srcBitmap
->
image
.
type
!=
ImageTypeBitmap
||
x
<
0
||
y
<
0
||
...
...
@@ -681,7 +681,7 @@ GpStatus WINGDIPAPI GdipCloneBitmapArea(REAL x, REAL y, REAL width, REAL height,
GpStatus
WINGDIPAPI
GdipCloneBitmapAreaI
(
INT
x
,
INT
y
,
INT
width
,
INT
height
,
PixelFormat
format
,
GpBitmap
*
srcBitmap
,
GpBitmap
**
dstBitmap
)
{
TRACE
(
"(%i,%i,%i,%i,
%i
,%p,%p)
\n
"
,
x
,
y
,
width
,
height
,
format
,
srcBitmap
,
dstBitmap
);
TRACE
(
"(%i,%i,%i,%i,
0x%x
,%p,%p)
\n
"
,
x
,
y
,
width
,
height
,
format
,
srcBitmap
,
dstBitmap
);
return
GdipCloneBitmapArea
(
x
,
y
,
width
,
height
,
format
,
srcBitmap
,
dstBitmap
);
}
...
...
@@ -1211,7 +1211,7 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromScan0(INT width, INT height, INT stride,
REAL
xres
,
yres
;
GpStatus
stat
;
TRACE
(
"%d %d %d
%d
%p %p
\n
"
,
width
,
height
,
stride
,
format
,
scan0
,
bitmap
);
TRACE
(
"%d %d %d
0x%x
%p %p
\n
"
,
width
,
height
,
stride
,
format
,
scan0
,
bitmap
);
if
(
!
bitmap
)
return
InvalidParameter
;
...
...
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