1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2025-12-13 06:30:59 +01:00

gdrv, render v1.

This commit is contained in:
oz 2020-11-08 18:37:59 +03:00
parent a925b6137f
commit 989ba6cdb2
25 changed files with 598 additions and 135 deletions

22
SpaceCadetPinball/zdrv.h Normal file
View file

@ -0,0 +1,22 @@
#pragma once
#pragma pack(push, 1)
struct __declspec(align(1)) zmap_header_type
{
__int16 Width;
__int16 Height;
__int16 Stride;
char* BmpBufPtr1;
char* bmpBufPtr2;
char BmpBuffer[1];
};
#pragma pack(pop)
static_assert(sizeof(zmap_header_type) == 15, "Wrong size of zmap_header_type");
class zdrv
{
public:
};