| TerrainHelperCreateHeightTexture Method |
Creates a height map which can be used for terrain rendering.
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public static void CreateHeightTexture(
GraphicsDevice graphicsDevice,
float[] heights,
int textureWidth,
int textureHeight,
bool useNearestNeighborFilter,
ref Texture2D heightTexture
)
Public Shared Sub CreateHeightTexture (
graphicsDevice As GraphicsDevice,
heights As Single(),
textureWidth As Integer,
textureHeight As Integer,
useNearestNeighborFilter As Boolean,
ByRef heightTexture As Texture2D
)
public:
static void CreateHeightTexture(
GraphicsDevice^ graphicsDevice,
array<float>^ heights,
int textureWidth,
int textureHeight,
bool useNearestNeighborFilter,
Texture2D^% heightTexture
)
static member CreateHeightTexture :
graphicsDevice : GraphicsDevice *
heights : float32[] *
textureWidth : int *
textureHeight : int *
useNearestNeighborFilter : bool *
heightTexture : Texture2D byref -> unit
Parameters
- graphicsDevice
- Type: GraphicsDevice
The graphics device. - heights
- Type: SystemSingle
The heights (= texture content of the first mipmap level). - textureWidth
- Type: SystemInt32
The width of the texture. - textureHeight
- Type: SystemInt32
The height of the texture. - useNearestNeighborFilter
- Type: SystemBoolean
to use nearest-neighbor filtering (= every second pixel is dropped)
for creating mipmaps. to use a 3x3 filter (default).
- heightTexture
- Type: Texture2D
The created height texture. If this parameter is set to a matching texture, then the content
of this texture is updated and no new texture is created. (If this method is called with a
texture with wrong size or format, an exception is thrown.)
Exceptions See Also