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
6ea90c3c
Commit
6ea90c3c
authored
Jun 25, 2010
by
Andrew Nguyen
Committed by
Alexandre Julliard
Jun 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add a few additional traces to gdiplus image functions.
parent
58dd97ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
image.c
dlls/gdiplus/image.c
+18
-0
No files found.
dlls/gdiplus/image.c
View file @
6ea90c3c
...
...
@@ -1391,6 +1391,8 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromGraphics(INT width, INT height,
static
int
calls
;
GpStatus
ret
;
TRACE
(
"(%d, %d, %p, %p)
\n
"
,
width
,
height
,
target
,
bitmap
);
if
(
!
target
||
!
bitmap
)
return
InvalidParameter
;
...
...
@@ -2133,6 +2135,8 @@ GpStatus WINGDIPAPI GdipGetImagePixelFormat(GpImage *image, PixelFormat *format)
GpStatus
WINGDIPAPI
GdipGetImageRawFormat
(
GpImage
*
image
,
GUID
*
format
)
{
TRACE
(
"(%p, %p)
\n
"
,
image
,
format
);
if
(
!
image
||
!
format
)
return
InvalidParameter
;
...
...
@@ -2195,6 +2199,8 @@ GpStatus WINGDIPAPI GdipGetMetafileHeaderFromMetafile(GpMetafile * metafile,
{
static
int
calls
;
TRACE
(
"(%p, %p)
\n
"
,
metafile
,
header
);
if
(
!
metafile
||
!
header
)
return
InvalidParameter
;
...
...
@@ -2211,6 +2217,8 @@ GpStatus WINGDIPAPI GdipGetAllPropertyItems(GpImage *image, UINT size,
{
static
int
calls
;
TRACE
(
"(%p, %u, %u, %p)
\n
"
,
image
,
size
,
num
,
items
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -2221,6 +2229,8 @@ GpStatus WINGDIPAPI GdipGetPropertyCount(GpImage *image, UINT* num)
{
static
int
calls
;
TRACE
(
"(%p, %p)
\n
"
,
image
,
num
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -2231,6 +2241,8 @@ GpStatus WINGDIPAPI GdipGetPropertyIdList(GpImage *image, UINT num, PROPID* list
{
static
int
calls
;
TRACE
(
"(%p, %u, %p)
\n
"
,
image
,
num
,
list
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -2242,6 +2254,8 @@ GpStatus WINGDIPAPI GdipGetPropertyItem(GpImage *image, PROPID id, UINT size,
{
static
int
calls
;
TRACE
(
"(%p, %u, %u, %p)
\n
"
,
image
,
id
,
size
,
buffer
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -2311,6 +2325,8 @@ GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image,
GpStatus
WINGDIPAPI
GdipImageGetFrameDimensionsCount
(
GpImage
*
image
,
UINT
*
count
)
{
TRACE
(
"(%p, %p)
\n
"
,
image
,
count
);
/* Native gdiplus 1.1 does not yet support multiple frame dimensions. */
if
(
!
image
||
!
count
)
...
...
@@ -2354,6 +2370,8 @@ GpStatus WINGDIPAPI GdipImageSelectActiveFrame(GpImage *image,
{
static
int
calls
;
TRACE
(
"(%p, %s, %u)
\n
"
,
image
,
debugstr_guid
(
dimensionID
),
frameidx
);
if
(
!
image
||
!
dimensionID
)
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