blob: cf7da969f5042983bb54fbe00712908f7bcc6439 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "Configuration/UnityConfigure.h"
#if ENABLE_TERRAIN
struct TerrainIndexGenerator
{
static unsigned int *GetIndexBuffer (int edgeMask, unsigned int &count, int stride);
static unsigned short *GetOptimizedIndexStrip (int edgeMask, unsigned int &count);
};
#endif // ENABLE_TERRAIN
|