summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/comm/keypebble/krfbbuffer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/comm/keypebble/krfbbuffer.cpp b/noncore/comm/keypebble/krfbbuffer.cpp
index 92918d4..4cec0c2 100644
--- a/noncore/comm/keypebble/krfbbuffer.cpp
+++ b/noncore/comm/keypebble/krfbbuffer.cpp
@@ -168,33 +168,35 @@ void KRFBBuffer::drawRawRectChunk( void *data,
168 168
169 g = pixel; 169 g = pixel;
170 g = g >> decoder->format->greenShift; 170 g = g >> decoder->format->greenShift;
171 g = g & greenMax; 171 g = g & greenMax;
172 172
173 b = pixel; 173 b = pixel;
174 b = b >> decoder->format->blueShift; 174 b = b >> decoder->format->blueShift;
175 b = b & blueMax; 175 b = b & blueMax;
176 176
177 r = ( r * 255 ) / redMax; 177 r = ( r * 255 ) / redMax;
178 g = ( g * 255 ) / greenMax; 178 g = ( g * 255 ) / greenMax;
179 b = ( b * 255 ) / blueMax; 179 b = ( b * 255 ) / blueMax;
180 180
181 ulong *p = ( ulong * ) img.scanLine( j ) + i; 181 ulong *p = ( ulong * ) img.scanLine( j ) + i;
182 *p = qRgb( r,g,b ); 182 *p = qRgb( r,g,b );
183 } 183 }
184 } 184 }
185 } 185 }
186 else { 186 else {
187 p.setBrush( QBrush( Qt::black ) ); 187 p.setBrush( QBrush( Qt::black ) );
188 p.drawRect( x, y, w, h ); 188 p.drawRect( x, y, w, h );
189 } 189 }
190 190
191 if (scaleFactor > 1) { 191 if (scaleFactor > 1) {
192 p.drawImage( x/scaleFactor, y/scaleFactor, img.smoothScale(w/scaleFactor,h/scaleFactor) ); 192 /* FIXME: proper zero width/height handling */
193 if (w/scaleFactor != 0)
194 p.drawImage( x/scaleFactor, y/scaleFactor, img.smoothScale(w/scaleFactor,h/scaleFactor) );
193 emit updated( x/scaleFactor, y/scaleFactor, w/scaleFactor, h/scaleFactor ); 195 emit updated( x/scaleFactor, y/scaleFactor, w/scaleFactor, h/scaleFactor );
194 } 196 }
195 else { 197 else {
196 p.drawImage( x, y, img); 198 p.drawImage( x, y, img);
197 emit updated( x, y, w, h ); 199 emit updated( x, y, w, h );
198 } 200 }
199} 201}
200 202