Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
00aeee6e
Commit
00aeee6e
authored
14 years ago
by
Esme Povirk
Committed by
Alexandre Julliard
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
gdiplus: Stub GdipMultiplyPathGradientTransform.
parent
358d3827
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/gdiplus/brush.c
+13
-0
13 additions, 0 deletions
dlls/gdiplus/brush.c
dlls/gdiplus/gdiplus.spec
+1
-1
1 addition, 1 deletion
dlls/gdiplus/gdiplus.spec
with
14 additions
and
1 deletion
dlls/gdiplus/brush.c
+
13
−
0
View file @
00aeee6e
...
...
@@ -1601,6 +1601,19 @@ GpStatus WINGDIPAPI GdipSetPathGradientWrapMode(GpPathGradient *grad,
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipMultiplyPathGradientTransform
(
GpPathGradient
*
grad
,
GDIPCONST
GpMatrix
*
matrix
,
GpMatrixOrder
order
)
{
static
int
calls
;
TRACE
(
"(%p,%p,%i)
\n
"
,
grad
,
matrix
,
order
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipSetSolidFillColor
(
GpSolidFill
*
sf
,
ARGB
argb
)
{
TRACE
(
"(%p, %x)
\n
"
,
sf
,
argb
);
...
...
This diff is collapsed.
Click to expand it.
dlls/gdiplus/gdiplus.spec
+
1
−
1
View file @
00aeee6e
...
...
@@ -444,7 +444,7 @@
@ stdcall GdipMeasureString(ptr wstr long ptr ptr ptr ptr ptr ptr)
@ stdcall GdipMultiplyLineTransform(ptr ptr long)
@ stdcall GdipMultiplyMatrix(ptr ptr long)
@ st
ub
GdipMultiplyPathGradientTransform
@ st
dcall
GdipMultiplyPathGradientTransform
(ptr ptr long)
@ stdcall GdipMultiplyPenTransform(ptr ptr long)
@ stdcall GdipMultiplyTextureTransform(ptr ptr long)
@ stdcall GdipMultiplyWorldTransform(ptr ptr long)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment