File: tile_worker.h

package info (click to toggle)
tilemaker 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 83,488 kB
  • sloc: cpp: 29,461; ansic: 12,510; makefile: 229; ruby: 77; sh: 43
file content (18 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*! \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