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
7929ba8d
Commit
7929ba8d
authored
Aug 02, 2007
by
Evan Stade
Committed by
Alexandre Julliard
Aug 03, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Updated GpBrush functions.
parent
9ea7ef46
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
brush.c
dlls/gdiplus/brush.c
+40
-0
No files found.
dlls/gdiplus/brush.c
View file @
7929ba8d
...
...
@@ -41,6 +41,35 @@ GpStatus WINGDIPAPI GdipCloneBrush(GpBrush *brush, GpBrush **clone)
(
*
clone
)
->
gdibrush
=
CreateBrushIndirect
(
&
(
*
clone
)
->
lb
);
break
;
case
BrushTypePathGradient
:{
GpPathGradient
*
src
,
*
dest
;
INT
count
;
*
clone
=
GdipAlloc
(
sizeof
(
GpPathGradient
));
if
(
!*
clone
)
return
OutOfMemory
;
src
=
(
GpPathGradient
*
)
brush
,
dest
=
(
GpPathGradient
*
)
*
clone
;
count
=
src
->
pathdata
.
Count
;
memcpy
(
dest
,
src
,
sizeof
(
GpPathGradient
));
dest
->
pathdata
.
Count
=
count
;
dest
->
pathdata
.
Points
=
GdipAlloc
(
count
*
sizeof
(
PointF
));
dest
->
pathdata
.
Types
=
GdipAlloc
(
count
);
if
(
!
dest
->
pathdata
.
Points
||
!
dest
->
pathdata
.
Types
){
GdipFree
(
dest
->
pathdata
.
Points
);
GdipFree
(
dest
->
pathdata
.
Types
);
GdipFree
(
dest
);
return
OutOfMemory
;
}
memcpy
(
dest
->
pathdata
.
Points
,
src
->
pathdata
.
Points
,
count
*
sizeof
(
PointF
));
memcpy
(
dest
->
pathdata
.
Types
,
src
->
pathdata
.
Types
,
count
);
break
;
}
default:
return
NotImplemented
;
}
...
...
@@ -162,6 +191,17 @@ GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush *brush)
{
if
(
!
brush
)
return
InvalidParameter
;
switch
(
brush
->
bt
)
{
case
BrushTypePathGradient
:
GdipFree
(((
GpPathGradient
*
)
brush
)
->
pathdata
.
Points
);
GdipFree
(((
GpPathGradient
*
)
brush
)
->
pathdata
.
Types
);
break
;
case
BrushTypeSolidColor
:
default:
break
;
}
DeleteObject
(
brush
->
gdibrush
);
GdipFree
(
brush
);
...
...
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