VkSamplerAddressMode | NVK Search
  1. No Results
Categories
VkSamplerAddressMode Specify behavior of sampling with texture coordinates outside an image Stub
VkSamplerAddressMode = {
  VK_SAMPLER_ADDRESS_MODE_REPEAT: 0,
  VK_SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT: 1,
  VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE: 2,
  VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER: 3,
  VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE_KHR: 4
};
Properties VkSamplerAddressMode.VK_SAMPLER_ADDRESS_MODE_REPEAT specifies that the repeat wrap mode will be used. VkSamplerAddressMode.VK_SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT specifies that the mirrored repeat wrap mode will be used. VkSamplerAddressMode.VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE specifies that the clamp to edge wrap mode will be used. VkSamplerAddressMode.VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER specifies that the clamp to border wrap mode will be used. VkSamplerAddressMode.VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE_KHR