Click or drag to resize

TextureUpdate3D Method

Updates the data in a 3D texture.

Namespace:  Internal.SharpBgfx
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public void Update3D(
	int mipLevel,
	int x,
	int y,
	int z,
	int width,
	int height,
	int depth,
	MemoryBlock memory
)

Parameters

mipLevel
Type: SystemInt32
The mip level.
x
Type: SystemInt32
The X coordinate of the volume to update.
y
Type: SystemInt32
The Y coordinate of the volume to update.
z
Type: SystemInt32
The Z coordinate of the volume to update.
width
Type: SystemInt32
The width of the volume to update.
height
Type: SystemInt32
The height of the volume to update.
depth
Type: SystemInt32
The depth of the volume to update.
memory
Type: Internal.SharpBgfxMemoryBlock
The new image data.
See Also