diff options
| author | quou <quou@disroot.org> | 2024-08-04 15:34:05 +1000 | 
|---|---|---|
| committer | quou <quou@disroot.org> | 2024-08-04 15:34:05 +1000 | 
| commit | b0a5f59fe3bea9aab8f52016a90b6cbbcaea4571 (patch) | |
| tree | 83b4e6f4b0d02646de888eeaff25d485e12ef73c /config.h | |
| parent | 9c2f9a59096b5ec449c7557afb3220ed2597c4ea (diff) | |
WIP lightmap baking
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| @@ -5,7 +5,8 @@  #define app_memory_size (1024 * 1024 * 32)  #define asset_preload_memory_size (1024 * 1024 * 8)  #define gui_memory_size (1024 * 8) -#define map_memory_size (1024 * 8) +/* 8 megs for the map is not good. todo compress */ +#define map_memory_size (1024 * 1024 * 8)  #define max_vp_w 2000  #define max_vp_h 2000 @@ -15,5 +16,6 @@  #define max_map_w 32  #define max_map_h 32 +#define map_light_tile_size 16  #endif |