Files
kaizen/parallel-rdp/shaders/fb_formats.h
SimoneN64 d94eccab99 Squashed 'external/parallel-rdp/parallel-rdp-standalone/' content from commit 3f59f61f2c
git-subtree-dir: external/parallel-rdp/parallel-rdp-standalone
git-subtree-split: 3f59f61f2c1c56424356003041df5e4a10612049
2024-09-14 16:23:58 +02:00

10 lines
191 B
C

#ifndef FB_FORMATS_H_
#define FB_FORMATS_H_
const int FB_FMT_I4 = 0;
const int FB_FMT_I8 = 1;
const int FB_FMT_RGBA5551 = 2;
const int FB_FMT_IA88 = 3;
const int FB_FMT_RGBA8888 = 4;
#endif