[Libreoffice-commits] core.git: 2 commits - vcl/inc vcl/source
Noel Grandin (via logerrit)
logerrit at kemper.freedesktop.org
Fri Sep 3 18:24:56 UTC 2021
vcl/inc/impglyphitem.hxx | 40 ++++++++++++++++++-------------------
vcl/inc/sallayout.hxx | 2 -
vcl/source/gdi/CommonSalLayout.cxx | 2 -
3 files changed, 22 insertions(+), 22 deletions(-)
New commits:
commit ebebb531778f57ff0fe8435023326bdc8c4ddc4b
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Fri Sep 3 12:20:30 2021 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Fri Sep 3 20:24:37 2021 +0200
pack GlyphItem struct
56 bytes -> 48 bytes
Change-Id: I30d9763162b701e3d07a153deae3f5e03c290393
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121583
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/vcl/inc/impglyphitem.hxx b/vcl/inc/impglyphitem.hxx
index 998c699a5dcb..913a33c1f421 100644
--- a/vcl/inc/impglyphitem.hxx
+++ b/vcl/inc/impglyphitem.hxx
@@ -29,17 +29,17 @@
#include "fontinstance.hxx"
-enum class GlyphItemFlags
+enum class GlyphItemFlags : sal_uInt8
{
NONE = 0,
- IS_IN_CLUSTER = 0x001,
- IS_RTL_GLYPH = 0x002,
- IS_DIACRITIC = 0x004,
- IS_VERTICAL = 0x008,
- IS_SPACING = 0x010,
- ALLOW_KASHIDA = 0x020,
- IS_DROPPED = 0x040,
- IS_CLUSTER_START = 0x080
+ IS_IN_CLUSTER = 0x01,
+ IS_RTL_GLYPH = 0x02,
+ IS_DIACRITIC = 0x04,
+ IS_VERTICAL = 0x08,
+ IS_SPACING = 0x10,
+ ALLOW_KASHIDA = 0x20,
+ IS_DROPPED = 0x40,
+ IS_CLUSTER_START = 0x80
};
namespace o3tl
{
@@ -50,30 +50,30 @@ template <> struct typed_flags<GlyphItemFlags> : is_typed_flags<GlyphItemFlags,
class VCL_DLLPUBLIC GlyphItem
{
- sal_GlyphId m_aGlyphId;
- int m_nCharCount; // number of characters making up this glyph
- int m_nOrigWidth; // original glyph width
LogicalFontInstance* m_pFontInstance;
- int m_nCharPos; // index in string
+ sal_Int32 m_nOrigWidth; // original glyph width
+ sal_Int32 m_nCharPos; // index in string
+ sal_Int32 m_nXOffset;
+ sal_GlyphId m_aGlyphId;
+ sal_Int8 m_nCharCount; // number of characters making up this glyph
GlyphItemFlags m_nFlags;
- int m_nXOffset;
public:
- int m_nNewWidth; // width after adjustments
Point m_aLinearPos; // absolute position of non rotated string
+ sal_Int32 m_nNewWidth; // width after adjustments
GlyphItem(int nCharPos, int nCharCount, sal_GlyphId aGlyphId, const Point& rLinearPos,
GlyphItemFlags nFlags, int nOrigWidth, int nXOffset,
LogicalFontInstance* pFontInstance)
- : m_aGlyphId(aGlyphId)
- , m_nCharCount(nCharCount)
+ : m_pFontInstance(pFontInstance)
, m_nOrigWidth(nOrigWidth)
- , m_pFontInstance(pFontInstance)
, m_nCharPos(nCharPos)
- , m_nFlags(nFlags)
, m_nXOffset(nXOffset)
- , m_nNewWidth(nOrigWidth)
+ , m_aGlyphId(aGlyphId)
+ , m_nCharCount(nCharCount)
+ , m_nFlags(nFlags)
, m_aLinearPos(rLinearPos)
+ , m_nNewWidth(nOrigWidth)
{
assert(m_pFontInstance);
}
commit 95dea4ab712516e4cb51dc18be9031548460a81a
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Fri Sep 3 10:51:17 2021 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Fri Sep 3 20:24:22 2021 +0200
rename NeedFallback to AddFallbackRun
Change-Id: I5d91e7b28075026198444036fbfc220296deac77
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121579
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/vcl/inc/sallayout.hxx b/vcl/inc/sallayout.hxx
index 8b5f41062e62..2608044d592f 100644
--- a/vcl/inc/sallayout.hxx
+++ b/vcl/inc/sallayout.hxx
@@ -109,7 +109,7 @@ public:
bool GetNextPos( int* nCharPos, bool* bRTL )
{ return maRuns.GetNextPos( nCharPos, bRTL ); }
bool GetNextRun( int* nMinRunPos, int* nEndRunPos, bool* bRTL );
- void NeedFallback( int nMinRunPos, int nEndRunPos, bool bRTL )
+ void AddFallbackRun( int nMinRunPos, int nEndRunPos, bool bRTL )
{ maFallbackRuns.AddRun( nMinRunPos, nEndRunPos, bRTL ); }
// methods used by BiDi and glyph fallback
bool HasFallbackRun() const
diff --git a/vcl/source/gdi/CommonSalLayout.cxx b/vcl/source/gdi/CommonSalLayout.cxx
index f21c2f572d25..5f0c9637a7d2 100644
--- a/vcl/source/gdi/CommonSalLayout.cxx
+++ b/vcl/source/gdi/CommonSalLayout.cxx
@@ -187,7 +187,7 @@ void GenericSalLayout::SetNeedFallback(ImplLayoutArgs& rArgs, sal_Int32 nCharPos
mxBreak->previousCharacters(rArgs.mrStr, nCharPos, aLocale,
i18n::CharacterIteratorMode::SKIPCELL, 1, nDone);
- rArgs.NeedFallback(nGraphemeStartPos, nGraphemeEndPos, bRightToLeft);
+ rArgs.AddFallbackRun(nGraphemeStartPos, nGraphemeEndPos, bRightToLeft);
}
void GenericSalLayout::AdjustLayout(ImplLayoutArgs& rArgs)
More information about the Libreoffice-commits
mailing list