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
03e31f9b
Commit
03e31f9b
authored
Dec 23, 2009
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jan 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Implement GdipIsVisibleClipEmpty.
parent
157b1f69
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
1 deletion
+24
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
graphics.c
dlls/gdiplus/graphics.c
+23
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
03e31f9b
...
...
@@ -424,7 +424,7 @@
@ stdcall GdipIsOutlineVisiblePathPoint(ptr long long ptr ptr ptr)
@ stdcall GdipIsOutlineVisiblePathPointI(ptr long long ptr ptr ptr)
@ stdcall GdipIsStyleAvailable(ptr long ptr)
@ st
ub GdipIsVisibleClipEmpty
@ st
dcall GdipIsVisibleClipEmpty(ptr ptr)
@ stdcall GdipIsVisiblePathPoint(ptr long long ptr ptr)
@ stdcall GdipIsVisiblePathPointI(ptr long long ptr ptr)
@ stdcall GdipIsVisiblePoint(ptr long long ptr)
...
...
dlls/gdiplus/graphics.c
View file @
03e31f9b
...
...
@@ -4359,3 +4359,26 @@ GpStatus WINGDIPAPI GdipRecordMetafileI(HDC hdc, EmfType type, GDIPCONST GpRect
FIXME
(
"(%p %d %p %d %p %p): stub
\n
"
,
hdc
,
type
,
frameRect
,
frameUnit
,
desc
,
metafile
);
return
NotImplemented
;
}
/*****************************************************************************
* GdipIsVisibleClipEmpty [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipIsVisibleClipEmpty
(
GpGraphics
*
graphics
,
BOOL
*
res
)
{
GpStatus
stat
;
GpRegion
*
rgn
;
TRACE
(
"(%p, %p)
\n
"
,
graphics
,
res
);
if
((
stat
=
GdipCreateRegion
(
&
rgn
))
!=
Ok
)
return
stat
;
if
((
stat
=
get_visible_clip_region
(
graphics
,
rgn
))
!=
Ok
)
goto
cleanup
;
stat
=
GdipIsEmptyRegion
(
rgn
,
graphics
,
res
);
cleanup
:
GdipDeleteRegion
(
rgn
);
return
stat
;
}
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