dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
nullg.h
Go to the documentation of this file.
1
2#ifndef NULLG_H
3#define NULLG_H
4
16typedef int GRAPHICS_COLOR;
17
27 uint16_t flags;
29 uint16_t ref_count;
30
36 uint32_t res1;
38 uint32_t res2;
40 uint8_t res3;
42 uint8_t res4;
43};
44
52};
53
65#define GRAPHICS_COLOR_BLACK 0
67#define GRAPHICS_COLOR_CYAN 1
69#define GRAPHICS_COLOR_MAGENTA 2
71#define GRAPHICS_COLOR_WHITE 3
72 /* unilayer_graphics_colors */
74
77#endif /* !NULLG_H */
78
int GRAPHICS_COLOR
Representation for specific colors on the current platform.
Definition: nullg.h:16
void * MEMORY_PTR
A C-style memory pointer that can be safely dereferenced.
Definition: fakem.h:42
uint32_t RESOURCE_ID
String or numerical identifier specifying an asset on disk.
Definition: nullr.h:16
Platform-overridden struct supporting graphics engine.
Definition: nullg.h:51
Struct representing a bitmap on the current platform.
Definition: nullg.h:24
uint8_t res3
Platform-specific byte, should be overridden.
Definition: nullg.h:40
RESOURCE_ID id
Identifier for asset this bitmap represents/should load.
Definition: nullg.h:26
MEMORY_PTR ptr1
Platform-specific graphics structure; should be overridden.
Definition: nullg.h:32
uint8_t res4
Platform-specific byte, should be overridden.
Definition: nullg.h:42
MEMORY_PTR ptr2
Platform-specific graphics structure; should be overridden.
Definition: nullg.h:34
uint32_t res1
Platform-specific uint32_t, should be overridden.
Definition: nullg.h:36
uint16_t ref_count
(UNUSED) Reference counter.
Definition: nullg.h:29
uint32_t res2
Platform-specific uint32_t, should be overridden.
Definition: nullg.h:38