VkSampleCountFlagBits | NVK Search
  1. No Results
Categories
VkSampleCountFlagBits Bitmask specifying sample counts supported for an image used for storage operations Stub
VkSampleCountFlagBits = {
  VK_SAMPLE_COUNT_1_BIT: 0x1,
  VK_SAMPLE_COUNT_2_BIT: 0x2,
  VK_SAMPLE_COUNT_4_BIT: 0x4,
  VK_SAMPLE_COUNT_8_BIT: 0x8,
  VK_SAMPLE_COUNT_16_BIT: 0x10,
  VK_SAMPLE_COUNT_32_BIT: 0x20,
  VK_SAMPLE_COUNT_64_BIT: 0x40
};
Properties VkSampleCountFlagBits.VK_SAMPLE_COUNT_1_BIT specifies an image with one sample per pixel. VkSampleCountFlagBits.VK_SAMPLE_COUNT_2_BIT specifies an image with 2 samples per pixel. VkSampleCountFlagBits.VK_SAMPLE_COUNT_4_BIT specifies an image with 4 samples per pixel. VkSampleCountFlagBits.VK_SAMPLE_COUNT_8_BIT specifies an image with 8 samples per pixel. VkSampleCountFlagBits.VK_SAMPLE_COUNT_16_BIT specifies an image with 16 samples per pixel. VkSampleCountFlagBits.VK_SAMPLE_COUNT_32_BIT specifies an image with 32 samples per pixel. VkSampleCountFlagBits.VK_SAMPLE_COUNT_64_BIT specifies an image with 64 samples per pixel.