1
0
Fork 0
mirror of https://github.com/systemed/tilemaker synced 2025-02-21 13:24:09 +01:00
tilemaker/include/tile_worker.h
2023-12-02 21:04:40 +00:00

18 lines
381 B
C++

/*! \file */
#ifndef _TILE_WORKER_H
#define _TILE_WORKER_H
#include "tile_data.h"
#include "shared_data.h"
/// Start function for worker threads
void outputProc(
SharedData& sharedData,
const SourceList& sources,
const AttributeStore& attributeStore,
const std::vector<std::vector<OutputObjectID>>& data,
TileCoordinates coordinates,
uint zoom
);
#endif //_TILE_WORKER_H