Removed unused qStorePixel[] array.

Change-Id: I9c9df19fcf06b127aaebb7ab093221e1b254ab9e
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
bb10
Kim Motoyoshi Kalland 2012-02-13 16:01:11 +01:00 committed by Qt by Nokia
parent c954bf8b91
commit 28f02bcd51
1 changed files with 0 additions and 12 deletions

View File

@ -294,7 +294,6 @@ StorePixelsFunc qStorePixels[QPixelLayout::BPPCount] = {
};
typedef uint (QT_FASTCALL *FetchPixelFunc)(const uchar *src, int index);
typedef void (QT_FASTCALL *StorePixelFunc)(uchar *dest, int index, uint pixel);
FetchPixelFunc qFetchPixel[QPixelLayout::BPPCount] = {
0, // BPPNone
@ -306,17 +305,6 @@ FetchPixelFunc qFetchPixel[QPixelLayout::BPPCount] = {
fetchPixel<QPixelLayout::BPP32> // BPP32
};
StorePixelFunc qStorePixel[QPixelLayout::BPPCount] = {
0, // BPPNone
storePixel<QPixelLayout::BPP1MSB>, // BPP1MSB
storePixel<QPixelLayout::BPP1LSB>, // BPP1LSB
storePixel<QPixelLayout::BPP8>, // BPP8
storePixel<QPixelLayout::BPP16>, // BPP16
storePixel<QPixelLayout::BPP24>, // BPP24
storePixel<QPixelLayout::BPP32> // BPP32
};
/*
Destination fetch. This is simple as we don't have to do bounds checks or
transformations