Remove unused code

This commit is contained in:
Kovid Goyal 2016-07-10 12:28:15 +05:30
parent ae1f4dc3bd
commit 0fe2fc8db5

View File

@ -870,11 +870,6 @@ static inline uint BYTE_MUL_RGB16(uint x, uint a) {
return t; return t;
} }
static inline uint BYTE_MUL_RGB16_32(uint x, uint a) {
uint t = (((x & 0xf81f07e0) >> 5)*a) & 0xf81f07e0;
t |= (((x & 0x07e0f81f)*a) >> 5) & 0x07e0f81f;
return t;
}
QRect PictureFlowPrivate::renderCenterSlide(const SlideInfo &slide) { QRect PictureFlowPrivate::renderCenterSlide(const SlideInfo &slide) {
QImage* src = surface(slide.slideIndex); QImage* src = surface(slide.slideIndex);