]> source.dussan.org Git - tigervnc.git/commitdiff
We can get 0x0 cursor sometimes when the server wants to hide it.
authorPierre Ossman <ossman@cendio.se>
Thu, 9 Jun 2011 08:42:04 +0000 (08:42 +0000)
committerPierre Ossman <ossman@cendio.se>
Thu, 9 Jun 2011 08:42:04 +0000 (08:42 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4481 3789f03b-4d11-0410-bbf8-ca57d06f2519

vncviewer/Viewport.cxx

index f673dd84e5be5b85c126d95291be375f760066ca..d3c21edb7e4b400324c93c625293d4b37edf18b8 100644 (file)
@@ -214,33 +214,40 @@ void Viewport::setCursor(int width, int height, const Point& hotspot,
     cursor = new Fl_RGB_Image(&pxm);
     cursorHotspot.x = cursorHotspot.y = 2;
   } else {
-    U8 *buffer = new U8[width*height*4];
-    U8 *i, *o, *m;
-    int m_width;
-
-    const PixelFormat &pf = frameBuffer->getPF();
-
-    i = (U8*)data;
-    o = buffer;
-    m = (U8*)mask;
-    m_width = (width+7)/8;
-    for (int y = 0;y < height;y++) {
-      for (int x = 0;x < width;x++) {
-        pf.rgbFromBuffer(o, i, 1, &colourMap);
-
-        if (m[(m_width*y)+(x/8)] & 0x80>>(x%8))
-          o[3] = 255;
-        else
-          o[3] = 0;
-
-        o += 4;
-        i += pf.bpp/8;
+    if ((width == 0) || (height == 0)) {
+      U8 *buffer = new U8[4];
+      memset(buffer, 0, 4);
+      cursor = new Fl_RGB_Image(buffer, 1, 1, 4);
+      cursorHotspot.x = cursorHotspot.y = 0;
+    } else {
+      U8 *buffer = new U8[width*height*4];
+      U8 *i, *o, *m;
+      int m_width;
+
+      const PixelFormat &pf = frameBuffer->getPF();
+
+      i = (U8*)data;
+      o = buffer;
+      m = (U8*)mask;
+      m_width = (width+7)/8;
+      for (int y = 0;y < height;y++) {
+        for (int x = 0;x < width;x++) {
+          pf.rgbFromBuffer(o, i, 1, &colourMap);
+
+          if (m[(m_width*y)+(x/8)] & 0x80>>(x%8))
+            o[3] = 255;
+          else
+            o[3] = 0;
+
+          o += 4;
+          i += pf.bpp/8;
+        }
       }
-    }
 
-    cursor = new Fl_RGB_Image(buffer, width, height, 4);
+      cursor = new Fl_RGB_Image(buffer, width, height, 4);
 
-    cursorHotspot = hotspot;
+      cursorHotspot = hotspot;
+    }
   }
 
   if (Fl::belowmouse() == this)