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
0e840f61
Commit
0e840f61
authored
Jul 10, 2008
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: GdipFillRegion actually belongs to Graphics.
parent
d778f745
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
graphics.c
dlls/gdiplus/graphics.c
+11
-0
region.c
dlls/gdiplus/region.c
+0
-11
No files found.
dlls/gdiplus/graphics.c
View file @
0e840f61
...
...
@@ -2114,6 +2114,17 @@ GpStatus WINGDIPAPI GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush, GD
return
ret
;
}
GpStatus
WINGDIPAPI
GdipFillRegion
(
GpGraphics
*
graphics
,
GpBrush
*
brush
,
GpRegion
*
region
)
{
if
(
!
(
graphics
&&
brush
&&
region
))
return
InvalidParameter
;
FIXME
(
"(%p, %p, %p): stub
\n
"
,
graphics
,
brush
,
region
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipFlush
(
GpGraphics
*
graphics
,
GpFlushIntention
intention
)
{
static
int
calls
;
...
...
dlls/gdiplus/region.c
View file @
0e840f61
...
...
@@ -162,17 +162,6 @@ GpStatus WINGDIPAPI GdipDeleteRegion(GpRegion *region)
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipFillRegion
(
GpGraphics
*
graphics
,
GpBrush
*
brush
,
GpRegion
*
region
)
{
if
(
!
(
graphics
&&
brush
&&
region
))
return
InvalidParameter
;
FIXME
(
"(%p, %p, %p): stub
\n
"
,
graphics
,
brush
,
region
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipGetRegionBounds
(
GpRegion
*
region
,
GpGraphics
*
graphics
,
GpRectF
*
rect
)
{
FIXME
(
"(%p, %p, %p): stub
\n
"
,
region
,
graphics
,
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