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
f8ca3724
Commit
f8ca3724
authored
Dec 18, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Dec 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add trace for values of new graphics and image objects.
parent
2d8fb9ad
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
graphics.c
dlls/gdiplus/graphics.c
+4
-0
image.c
dlls/gdiplus/image.c
+4
-0
No files found.
dlls/gdiplus/graphics.c
View file @
f8ca3724
...
@@ -1162,6 +1162,8 @@ GpStatus WINGDIPAPI GdipCreateFromHDC2(HDC hdc, HANDLE hDevice, GpGraphics **gra
...
@@ -1162,6 +1162,8 @@ GpStatus WINGDIPAPI GdipCreateFromHDC2(HDC hdc, HANDLE hDevice, GpGraphics **gra
list_init
(
&
(
*
graphics
)
->
containers
);
list_init
(
&
(
*
graphics
)
->
containers
);
(
*
graphics
)
->
contid
=
0
;
(
*
graphics
)
->
contid
=
0
;
TRACE
(
"<-- %p
\n
"
,
*
graphics
);
return
Ok
;
return
Ok
;
}
}
...
@@ -1271,6 +1273,8 @@ GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
...
@@ -1271,6 +1273,8 @@ GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
if
(
delete
)
if
(
delete
)
DeleteMetaFile
(
hwmf
);
DeleteMetaFile
(
hwmf
);
TRACE
(
"<-- %p
\n
"
,
*
metafile
);
return
Ok
;
return
Ok
;
err
:
err
:
...
...
dlls/gdiplus/image.c
View file @
f8ca3724
...
@@ -1282,6 +1282,8 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromScan0(INT width, INT height, INT stride,
...
@@ -1282,6 +1282,8 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromScan0(INT width, INT height, INT stride,
}
}
}
}
TRACE
(
"<-- %p
\n
"
,
*
bitmap
);
return
Ok
;
return
Ok
;
}
}
...
@@ -1976,6 +1978,8 @@ static GpStatus decode_image_olepicture_metafile(IStream* stream, REFCLSID clsid
...
@@ -1976,6 +1978,8 @@ static GpStatus decode_image_olepicture_metafile(IStream* stream, REFCLSID clsid
(
*
image
)
->
palette_size
=
0
;
(
*
image
)
->
palette_size
=
0
;
(
*
image
)
->
palette_entries
=
NULL
;
(
*
image
)
->
palette_entries
=
NULL
;
TRACE
(
"<-- %p
\n
"
,
*
image
);
return
Ok
;
return
Ok
;
}
}
...
...
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