mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 23:48:11 +00:00
LibWeb: Always inline absolute Length to_px() conversion
Only do the relative Length units out of line.
This commit is contained in:
parent
5f0a1ef21b
commit
ae181e1573
2 changed files with 16 additions and 6 deletions
|
@ -30,13 +30,9 @@
|
||||||
|
|
||||||
namespace Web {
|
namespace Web {
|
||||||
|
|
||||||
float Length::to_px(const LayoutNode& layout_node) const
|
float Length::relative_length_to_px(const LayoutNode& layout_node) const
|
||||||
{
|
{
|
||||||
switch (m_type) {
|
switch (m_type) {
|
||||||
case Type::Auto:
|
|
||||||
return 0;
|
|
||||||
case Type::Px:
|
|
||||||
return m_value;
|
|
||||||
case Type::Em:
|
case Type::Em:
|
||||||
return m_value * layout_node.font_size();
|
return m_value * layout_node.font_size();
|
||||||
case Type::Rem:
|
case Type::Rem:
|
||||||
|
|
|
@ -57,7 +57,19 @@ public:
|
||||||
bool is_relative() const { return m_type == Type::Em || m_type == Type::Rem; }
|
bool is_relative() const { return m_type == Type::Em || m_type == Type::Rem; }
|
||||||
|
|
||||||
float raw_value() const { return m_value; }
|
float raw_value() const { return m_value; }
|
||||||
float to_px(const LayoutNode&) const;
|
ALWAYS_INLINE float to_px(const LayoutNode& layout_node) const
|
||||||
|
{
|
||||||
|
if (is_relative())
|
||||||
|
return relative_length_to_px(layout_node);
|
||||||
|
switch (m_type) {
|
||||||
|
case Type::Auto:
|
||||||
|
return 0;
|
||||||
|
case Type::Px:
|
||||||
|
return m_value;
|
||||||
|
default:
|
||||||
|
ASSERT_NOT_REACHED();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
String to_string() const
|
String to_string() const
|
||||||
{
|
{
|
||||||
|
@ -67,6 +79,8 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
float relative_length_to_px(const LayoutNode&) const;
|
||||||
|
|
||||||
const char* unit_name() const;
|
const char* unit_name() const;
|
||||||
|
|
||||||
Type m_type { Type::Auto };
|
Type m_type { Type::Auto };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue