mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
16 lines
249 B
C++
16 lines
249 B
C++
|
#ifndef __TABLES_HPP__
|
||
|
#define __TABLES_HPP__
|
||
|
|
||
|
#include "Types.hpp"
|
||
|
|
||
|
extern const int32 g_table[8][4];
|
||
|
extern const int64 g_table256[8][4];
|
||
|
|
||
|
extern const uint32 g_id[4][16];
|
||
|
|
||
|
extern const uint32 g_avg2[16];
|
||
|
|
||
|
extern const uint32 g_flags[64];
|
||
|
|
||
|
#endif
|