mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-05-07 03:18:09 +00:00
17 lines
329 B
C++
17 lines
329 B
C++
struct index {
|
|
long long start;
|
|
long long end;
|
|
unsigned long long index;
|
|
short segment;
|
|
short t : 2;
|
|
unsigned long long seq : (64 - 18); // pack with segment and t to stay in 32 bytes
|
|
};
|
|
|
|
void checkdisk(struct reader *r, int nreader);
|
|
|
|
extern int geometry_scale;
|
|
extern int quiet;
|
|
|
|
extern int CPUS;
|
|
extern int TEMP_FILES;
|