First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 int BitmapUtils::ByteWidth(int aPixelWidth,int aBitsPerPixel)
23 switch (aBitsPerPixel)
26 wordWidth = (aPixelWidth + 31) / 32;
29 wordWidth = (aPixelWidth + 15) / 16;
32 wordWidth = (aPixelWidth + 7) / 8;
35 wordWidth = (aPixelWidth + 3) / 4;
39 wordWidth = (aPixelWidth + 1) / 2;
42 wordWidth = (((aPixelWidth * 3) + 11) / 12) * 3;
45 wordWidth = aPixelWidth;