mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 13:01:21 +00:00
a90185bea9
This file now only gets included by code that really needs it.
29 lines
695 B
C++
29 lines
695 B
C++
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <float.h>
|
|
#include <math.h>
|
|
#include <limits.h>
|
|
#include <stdarg.h>
|
|
#include <errno.h>
|
|
#include <ctype.h>
|
|
#include <stdint.h>
|
|
#include <new>
|
|
#include <algorithm>
|
|
#include <forward_list>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <cassert>
|
|
#include <limits>
|
|
#include <memory>
|
|
#include <tuple>
|
|
#include <vector>
|
|
#include <utility>
|
|
#include <functional>
|
|
#include <algorithm>
|
|
|
|
// These two headers get included nearly everywhere so it doesn't matter if changing them forces a few more recompiles.
|
|
// The overall savings from PCHing them are more significant.
|
|
#include "tarray.h"
|
|
#include "zstring.h"
|