Click or drag to resize
Ab4d.SharpEngine logo

GpuSamplerManagerGetSampler(CommonSamplerTypes) Method

Returns a VulkanSampler for the specified samplerType (used mips count is clamped by Vulkan to the value defined by texture size). The samples uses linear anisotropic filtering. To create a custom sampler use CreateSampler(Int32, SamplerAddressMode, Filter, SamplerMipmapMode, Single, BorderColor, String) method. The returned sample is owned by this VulkanSamplerFactory and is disposed when this object is disposed.

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public GpuSampler GetSampler(
	CommonSamplerTypes samplerType
)

Parameters

samplerType  CommonSamplerTypes
sampler type

Return Value

GpuSampler
VulkanSampler for the specified samplerType and mipsCount
See Also