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
c543f3d9
Commit
c543f3d9
authored
Oct 22, 2008
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Added GdipSetClipGraphics.
parent
9e6f2146
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
graphics.c
dlls/gdiplus/graphics.c
+11
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
c543f3d9
...
...
@@ -506,7 +506,7 @@
@ stdcall GdipSetAdjustableArrowCapHeight(ptr long)
@ stdcall GdipSetAdjustableArrowCapMiddleInset(ptr long)
@ stdcall GdipSetAdjustableArrowCapWidth(ptr long)
@ st
ub GdipSetClipGraphics
@ st
dcall GdipSetClipGraphics(ptr ptr long)
@ stub GdipSetClipHrgn
@ stdcall GdipSetClipPath(ptr ptr long)
@ stdcall GdipSetClipRect(ptr long long long long long)
...
...
dlls/gdiplus/graphics.c
View file @
c543f3d9
...
...
@@ -2818,6 +2818,17 @@ GpStatus WINGDIPAPI GdipScaleWorldTransform(GpGraphics *graphics, REAL sx,
return
GdipScaleMatrix
(
graphics
->
worldtrans
,
sx
,
sy
,
order
);
}
GpStatus
WINGDIPAPI
GdipSetClipGraphics
(
GpGraphics
*
graphics
,
GpGraphics
*
srcgraphics
,
CombineMode
mode
)
{
TRACE
(
"(%p, %p, %d)
\n
"
,
graphics
,
srcgraphics
,
mode
);
if
(
!
graphics
||
!
srcgraphics
)
return
InvalidParameter
;
return
GdipCombineRegionRegion
(
graphics
->
clip
,
srcgraphics
->
clip
,
mode
);
}
GpStatus
WINGDIPAPI
GdipSetCompositingMode
(
GpGraphics
*
graphics
,
CompositingMode
mode
)
{
...
...
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