Click or drag to resize

TextureUpdateCube Method

Updates the data in a cube texture.

Namespace: Internal.SharpBgfx
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public void UpdateCube(
	CubeMapFace face,
	int arrayLayer,
	int mipLevel,
	int x,
	int y,
	int width,
	int height,
	MemoryBlock memory,
	int pitch
)

Parameters

face  CubeMapFace
The cube map face to update.
arrayLayer  Int32
The layer in a texture array to update.
mipLevel  Int32
The mip level.
x  Int32
The X coordinate of the rectangle to update.
y  Int32
The Y coordinate of the rectangle to update.
width  Int32
The width of the rectangle to update.
height  Int32
The height of the rectangle to update.
memory  MemoryBlock
The new image data.
pitch  Int32
The pitch of the image data.
See Also