hornetseye-xorg 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/ext/ximagepainter.cc +1 -1
- metadata +2 -2
data/Rakefile
CHANGED
data/ext/ximagepainter.cc
CHANGED
@@ -78,7 +78,7 @@ void XImagePainter::paint( bool ) throw (Error)
|
|
78
78
|
SwsContext *swsContext =
|
79
79
|
sws_getContext( frame->width(), frame->height(), PIX_FMT_RGB24,
|
80
80
|
m_window->width(), m_window->height(), PIX_FMT_BGRA,
|
81
|
-
|
81
|
+
SWS_POINT, 0, 0, 0 );
|
82
82
|
uint8_t *sourceData[4];
|
83
83
|
int sourceLineSize[4];
|
84
84
|
sourceData[0] = (uint8_t *)frame->data();
|