<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - Text clipping issue with row-numbers when scrolling in LibreOffice-Calc [SNA]"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=71191#c2">Comment # 2</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - Text clipping issue with row-numbers when scrolling in LibreOffice-Calc [SNA]"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=71191">bug 71191</a>
              from <span class="vcard"><a class="email" href="mailto:chris@chris-wilson.co.uk" title="Chris Wilson <chris@chris-wilson.co.uk>"> <span class="fn">Chris Wilson</span></a>
</span></b>
        <pre>Not seeing the issue or the problem in the code yet. Can you try tweaking the
various defines at the top of src/sna/sna_glyphs.c:

#define FALLBACK 0
#define NO_GLYPH_CACHE 0
#define NO_GLYPHS_TO_DST 0
#define NO_GLYPHS_VIA_MASK 0
#define NO_SMALL_MASK 0
#define NO_GLYPHS_SLOW 0
#define NO_DISCARD_MASK 0

to see which path is affected, and perhaps try

diff --git a/src/sna/sna_glyphs.c b/src/sna/sna_glyphs.c
index 5830d9b..53a87fc 100644
--- a/src/sna/sna_glyphs.c
+++ b/src/sna/sna_glyphs.c
@@ -522,6 +522,8 @@ static inline bool clipped_glyphs(PicturePtr dst, int
nlist, GlyphListPtr list,
        PixmapPtr pixmap;
        BoxRec box;

+       return true;
+
        if (dst->pCompositeClip->data) {
                DBG(("%s: yes, has complex region\n", __FUNCTION__));
                return true;</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the QA Contact for the bug.</li>
      </ul>
    </body>
</html>