mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
22 lines
443 B
C
22 lines
443 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 {
|
||
|
int width,height;
|
||
|
unsigned int *pixels;
|
||
|
unsigned char *mask;
|
||
|
};
|
||
|
|
||
|
#else
|
||
|
#if (__build_interface_layer__ != SDL)
|
||
|
#error "Already using the " __build_interface_layer__ ". Can't now use SDL."
|
||
|
#endif
|
||
|
#endif // __build_interface_layer__
|
||
|
|