blob: 078bb754db4709445d532bafabe54eba517785c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef PLATFORM_CONFIG_H
#define PLATFORM_CONFIG_H
#include <stdlib.h>
//#define alloca __builtin_alloca
#define _FORCE_INLINE_ __attribute__((always_inline)) inline
#define _glClearDepthf glClearDepthf
#endif
|