mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
22 lines
437 B
C
22 lines
437 B
C
|
// SDL interface layer
|
||
|
// for the Build Engine
|
||
|
// by Jonathon Fowler (jonof@edgenetwk.com)
|
||
|
|
||
|
#ifndef __build_interface_layer__
|
||
|
#define __build_interface_layer__ SDL
|
||
|
|
||
|
#include "baselayer.h"
|
||
|
|
||
|
struct sdlappicon {
|
||
|
int32_t width,height;
|
||
|
uint32_t *pixels;
|
||
|
uint8_t *mask;
|
||
|
};
|
||
|
|
||
|
#else
|
||
|
#if (__build_interface_layer__ != SDL)
|
||
|
#error "Already using the " __build_interface_layer__ ". Can't now use SDL."
|
||
|
#endif
|
||
|
#endif // __build_interface_layer__
|
||
|
|