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:
parent
a925b6137f
commit
989ba6cdb2
25 changed files with 598 additions and 135 deletions
22
SpaceCadetPinball/zdrv.h
Normal file
22
SpaceCadetPinball/zdrv.h
Normal 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:
|
||||
|
||||
};
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue