Click or drag to resize
DigitalRuneTerrainHelperCreateHeightTexture Method
Creates a height map which can be used for terrain rendering.

Namespace: DigitalRune.Graphics
Assembly: 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
)

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
ExceptionCondition
ArgumentNullExceptiongraphicsDevice or heights is .
ArgumentExceptionheightTexture does not match the specified parameters.
See Also