WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
147337
PathApplierFunction should take a reference to a PathElement
https://bugs.webkit.org/show_bug.cgi?id=147337
Summary
PathApplierFunction should take a reference to a PathElement
Simon Fraser (smfr)
Reported
2015-07-27 16:23:15 PDT
PathApplierFunction should take a reference to a PathElement
Attachments
Patch
(17.96 KB, patch)
2015-07-27 16:24 PDT
,
Simon Fraser (smfr)
no flags
Details
Formatted Diff
Diff
Patch
(19.78 KB, patch)
2015-07-27 18:27 PDT
,
Simon Fraser (smfr)
dbates
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Simon Fraser (smfr)
Comment 1
2015-07-27 16:24:07 PDT
Created
attachment 257610
[details]
Patch
Simon Fraser (smfr)
Comment 2
2015-07-27 18:27:34 PDT
Created
attachment 257624
[details]
Patch
Daniel Bates
Comment 3
2015-07-27 18:55:11 PDT
Comment on
attachment 257624
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=257624&action=review
Obviously, we need to rebase this patch before landing.
> Source/WebCore/platform/graphics/cg/PathCG.cpp:383 > +static void CGPathApplierToPathApplier(void *info, const CGPathElement* element)
We should also fix up the position of the '*' in the first argument.
Simon Fraser (smfr)
Comment 4
2015-07-28 11:23:54 PDT
https://trac.webkit.org/r187492
Darin Adler
Comment 5
2015-07-28 11:26:51 PDT
Comment on
attachment 257624
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=257624&action=review
> Source/WebCore/platform/graphics/Path.h:83 > + typedef void (*PathApplierFunction)(void* info, const PathElement&);
We should come back here and change this to be: typedef std::function<void (const PathElement&)> PathApplierFunction; Cleaner to use std::function instead of void*.
Simon Fraser (smfr)
Comment 6
2015-07-28 22:07:36 PDT
> We should come back here and change this to be: > > typedef std::function<void (const PathElement&)> PathApplierFunction; > > Cleaner to use std::function instead of void*.
Doing so via
bug 147368
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug