WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
177883
TextDecorationPainter::m_wavyOffset should be a float
https://bugs.webkit.org/show_bug.cgi?id=177883
Summary
TextDecorationPainter::m_wavyOffset should be a float
Daniel Bates
Reported
2017-10-04 10:34:15 PDT
Currently TextDecorationPainter::m_wavyOffset should be an int. It should be a float. This is consistent with its original type when this code was extracted from InlineTextBox in the patch for
bug #152587
.
Attachments
Patch
(4.48 KB, patch)
2017-10-04 10:41 PDT
,
Daniel Bates
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Daniel Bates
Comment 1
2017-10-04 10:41:33 PDT
Created
attachment 322687
[details]
Patch
Build Bot
Comment 2
2017-10-04 10:44:00 PDT
Attachment 322687
[details]
did not pass style-queue: ERROR: Source/WebCore/rendering/TextDecorationPainter.cpp:246: Code inside a namespace should not be indented. [whitespace/indent] [4] Total errors found: 1 in 3 files If any of these errors are false positives, please file a bug against check-webkit-style.
Simon Fraser (smfr)
Comment 3
2017-10-04 11:19:36 PDT
Comment on
attachment 322687
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=322687&action=review
> Source/WebCore/rendering/TextDecorationPainter.cpp:250 > + : m_context { context } > + , m_decoration { decoration } > + , m_wavyOffset { wavyOffsetFromDecoration() } > + , m_isPrinting { renderer.document().printing() } > + , m_styles { stylesForRenderer(renderer, m_decoration, isFirstLine) } > + , m_lineStyle { isFirstLine ? renderer.firstLineStyle() : renderer.style() }
Are we going to do this everywhere? It seems like a lot of churn for zero gain.
> Source/WebCore/rendering/TextDecorationPainter.h:67 > TextDecoration m_decoration; > - int m_wavyOffset { 0 }; > + float m_wavyOffset;
Looks like these could be re-ordered for better packing (but maybe we never heap-allocate these).
Daniel Bates
Comment 4
2017-10-04 11:32:30 PDT
(In reply to Simon Fraser (smfr) from
comment #3
)
> Comment on
attachment 322687
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=322687&action=review
> > > Source/WebCore/rendering/TextDecorationPainter.cpp:250 > > + : m_context { context } > > + , m_decoration { decoration } > > + , m_wavyOffset { wavyOffsetFromDecoration() } > > + , m_isPrinting { renderer.document().printing() } > > + , m_styles { stylesForRenderer(renderer, m_decoration, isFirstLine) } > > + , m_lineStyle { isFirstLine ? renderer.firstLineStyle() : renderer.style() } > > Are we going to do this everywhere?
I hope so. See
bug #176058
.
> It seems like a lot of churn for zero gain. >
I found this bug by changing to uniform initializer syntax because implicit conversions are disallowed when using this syntax among other benefits. Obviously, catching the implicit conversion from float to int for m_wavyOffset is not a big gain (m_wavyOffset is always equal to 1). I suspect we may find more significant bugs caused by implicit conversion if we used uniform initializer syntax everywhere.
> > Source/WebCore/rendering/TextDecorationPainter.h:67 > > TextDecoration m_decoration; > > - int m_wavyOffset { 0 }; > > + float m_wavyOffset; > > Looks like these could be re-ordered for better packing (but maybe we never > heap-allocate these).
Currently TextDecorationPainter is never heap allocated, but nothing is stopping it from being heap allocated. Regardless, we should look to better pack this data structure from a good programming practice perspective.
Daniel Bates
Comment 5
2017-10-04 11:37:51 PDT
Comment on
attachment 322687
[details]
Patch Clearing flags on attachment: 322687 Committed
r222862
: <
http://trac.webkit.org/changeset/222862
>
Daniel Bates
Comment 6
2017-10-04 11:37:53 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 7
2017-10-04 11:39:34 PDT
<
rdar://problem/34816545
>
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