-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathanl.h
47 lines (36 loc) · 1.02 KB
/
anl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef ANL_H
#define ANL_H
// Define ANL_IMPLEMENTATION in exactly 1 source (.cpp) file before including this header.
#include "VM/coordinate.h"
#include "VM/instruction.h"
#include "VM/hashing.h"
#include "VM/utility.h"
#include "VM/noise_gen.h"
#include "VM/kernel.h"
#include "VM/vm.h"
#include "VM/random_gen.h"
#include "Expression/parsing.h"
#include "Expression/expressionbuilder.h"
#include "Imaging/imaging.h"
#include "Processing/erosion.h"
#ifdef ANL_IMPLEMENTATION
#include "VM/noise_lut.inl"
#include "VM/noise_gen.inl"
#include "VM/coordinate.inl"
#include "VM/hashing.inl"
#include "VM/kernel.inl"
#include "VM/vm.inl"
#include "Expression/parsing.inl"
#include "Expression/expressionbuilder.inl"
#include "Imaging/imaging.inl"
#ifdef IMPLEMENT_STB
#define STB_IMAGE_IMPLEMENTATION
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include "Imaging/stb_image.h"
#include "Imaging/stb_image_write.h"
#undef STB_IMAGE_IMPLEMENTATION
#undef STB_IMAGE_WRITE_IMPLEMENTATION
#endif
#include "Processing/erosion.inl"
#endif
#endif