mirror of
https://github.com/libretro/RetroArch
synced 2025-01-18 04:12:07 +00:00
13 lines
227 B
C
13 lines
227 B
C
|
#ifndef _PLATFORM_H
|
||
|
#define _PLATFORM_H
|
||
|
|
||
|
#include "../export/RGL/rgl.h"
|
||
|
|
||
|
#define RGL_LITTLE_ENDIAN 0x1234
|
||
|
#define RGL_BIG_ENDIAN 0x4321
|
||
|
|
||
|
#define RGL_ENDIAN RGL_BIG_ENDIAN
|
||
|
#define RGL_ALIGN_FAST_TRANSFER 128
|
||
|
|
||
|
#endif
|