Click or drag to resize
Ab4d.SharpEngine logo

TextureLoaderCreateTextureAsync(String, VulkanDevice, ActionGpuImage, IBitmapIO, Boolean, Boolean, ActionException) Method

CreateTexture loads the specified texture file in the background and calls the specified textureCreatedCallback when the GpuImage is created. Optionally the textureCreationFailedCallback can be called when an exception happens. See remarks for TextureLoader for more info.

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public static void CreateTextureAsync(
	string fileName,
	VulkanDevice gpuDevice,
	Action<GpuImage> textureCreatedCallback,
	IBitmapIO? bitmapIO = null,
	bool generateMipMaps = true,
	bool useGpuDeviceCache = false,
	Action<Exception>? textureCreationFailedCallback = null
)

Parameters

fileName  String
file name
gpuDevice  VulkanDevice
VulkanDevice
textureCreatedCallback  ActionGpuImage
Action with GpuImage as parameter that is called when the GpuImage is created
bitmapIO  IBitmapIO  (Optional)
Optional IBitmapIO that is used to load the texture. When null, then the DefaultBitmapIOis used
generateMipMaps  Boolean  (Optional)
when true (by default) then mip maps will be created for the GpuImage. This takes longer to create the GpuImage but improves the rendering performance and quality of shown texture.
useGpuDeviceCache  Boolean  (Optional)
when true (false by default) than before loading the image the GpuDevice's cache is checked if this file was already loaded. Also, the created GpuImage is cached by the GpuDevice's cache
textureCreationFailedCallback  ActionException  (Optional)
Optional Action with Exception as parameter that is called when an exception happens when loading the texture

Return Value

created GpuImage
See Also