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
8254c37a
Commit
8254c37a
authored
Aug 09, 2007
by
Evan Stade
Committed by
Alexandre Julliard
Aug 10, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Updated GdipCloneBrush, GdipDeleteBrush.
parent
b9411ba3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
brush.c
dlls/gdiplus/brush.c
+10
-0
No files found.
dlls/gdiplus/brush.c
View file @
8254c37a
...
@@ -85,7 +85,16 @@ GpStatus WINGDIPAPI GdipCloneBrush(GpBrush *brush, GpBrush **clone)
...
@@ -85,7 +85,16 @@ GpStatus WINGDIPAPI GdipCloneBrush(GpBrush *brush, GpBrush **clone)
(
*
clone
)
->
gdibrush
=
CreateSolidBrush
((
*
clone
)
->
lb
.
lbColor
);
(
*
clone
)
->
gdibrush
=
CreateSolidBrush
((
*
clone
)
->
lb
.
lbColor
);
break
;
break
;
case
BrushTypeTextureFill
:
*
clone
=
GdipAlloc
(
sizeof
(
GpTexture
));
if
(
!*
clone
)
return
OutOfMemory
;
memcpy
(
*
clone
,
brush
,
sizeof
(
GpTexture
));
(
*
clone
)
->
gdibrush
=
CreateBrushIndirect
(
&
(
*
clone
)
->
lb
);
break
;
default:
default:
ERR
(
"not implemented for brush type %d
\n
"
,
brush
->
bt
);
return
NotImplemented
;
return
NotImplemented
;
}
}
...
@@ -385,6 +394,7 @@ GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush *brush)
...
@@ -385,6 +394,7 @@ GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush *brush)
break
;
break
;
case
BrushTypeSolidColor
:
case
BrushTypeSolidColor
:
case
BrushTypeLinearGradient
:
case
BrushTypeLinearGradient
:
case
BrushTypeTextureFill
:
default:
default:
break
;
break
;
}
}
...
...
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