mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
- BitmapFormat should handle BI_BITFIELDS compression type.
svn path=/trunk/; revision=12365
This commit is contained in:
parent
5848acdc90
commit
7d8d83ff01
1 changed files with 2 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: surface.c,v 1.47 2004/12/18 17:12:32 royce Exp $
|
/* $Id: surface.c,v 1.48 2004/12/27 16:45:19 navaraf Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -60,6 +60,7 @@ ULONG FASTCALL BitmapFormat(WORD Bits, DWORD Compression)
|
||||||
switch(Compression)
|
switch(Compression)
|
||||||
{
|
{
|
||||||
case BI_RGB:
|
case BI_RGB:
|
||||||
|
case BI_BITFIELDS:
|
||||||
switch(Bits)
|
switch(Bits)
|
||||||
{
|
{
|
||||||
case 1: return BMF_1BPP;
|
case 1: return BMF_1BPP;
|
||||||
|
|
Loading…
Reference in a new issue