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: 2026.1.1.0 (2026.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  Int32
The mip level.
x  Int32
The X coordinate of the volume to update.
y  Int32
The Y coordinate of the volume to update.
z  Int32
The Z coordinate of the volume to update.
width  Int32
The width of the volume to update.
height  Int32
The height of the volume to update.
depth  Int32
The depth of the volume to update.
memory  MemoryBlock
The new image data.
See Also