<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [946GZ] Random black glitches blinking"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=90966#c9">Comment # 9</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [946GZ] Random black glitches blinking"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=90966">bug 90966</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>Actually, I remember thinking it is probably the HWCursor playing up when it
changes size - part of the reason why I want to investigate a new kernel (or
you can try 3.19).

Unfortunately there is no simple option to disable the HWCursor in xorg.conf
for Intel, probably should add one, but if you want to experiment you can try

diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
index 965c35c..d1102fe 100644
--- a/src/sna/sna_display.c
+++ b/src/sna/sna_display.c
@@ -5698,6 +5698,8 @@ sna_cursor_pre_init(struct sna *sna)
        if (sna->mode.num_real_crtc == 0)
                return;

+       return;
+
 #define LOCAL_IOCTL_GET_CAP    DRM_IOWR(0x0c, struct local_get_cap)
 #define DRM_CAP_CURSOR_WIDTH   8
 #define DRM_CAP_CURSOR_HEIGHT  9

or

diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
index 965c35c..3c373bc 100644
--- a/src/sna/sna_display.c
+++ b/src/sna/sna_display.c
@@ -5705,6 +5705,7 @@ sna_cursor_pre_init(struct sna *sna)
 #define I915_PARAM_HAS_COHERENT_PHYS_GTT 29

        sna->cursor.max_size = 64;
+       return;

        cap.value = 0;
        cap.name = DRM_CAP_CURSOR_WIDTH;

the first disables the HW cursor entirely, the second disables cursor resizing.</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>