Migrate image storage from PICT to BMP

This commit is contained in:
elasota
2020-01-18 21:15:07 -05:00
parent 69ef542969
commit 93b4554961
28 changed files with 438 additions and 344 deletions

View File

@@ -1,6 +1,6 @@
#pragma once
#include "PLLittleEndian.h"
#include "PLLittleEndian.h"
namespace PortabilityLayer
{
@@ -11,14 +11,14 @@ namespace PortabilityLayer
}
struct BitmapFileHeader
{
{
char m_id[2]; // Normally "BM"
LEUInt32_t m_fileSize;
LEUInt16_t m_reserved1;
LEUInt16_t m_reserved2;
LEUInt32_t m_imageDataStart;
LEUInt32_t m_imageDataStart;
};
struct BitmapInfoHeader
{
LEUInt32_t m_thisStructureSize;