diff --git a/docs/html/functions.html b/docs/html/functions.html index 1ee5475..24ff073 100644 --- a/docs/html/functions.html +++ b/docs/html/functions.html @@ -279,15 +279,9 @@ $(function() {
  • vkGetBufferMemoryRequirements : VmaVulkanFunctions
  • -
  • vkGetBufferMemoryRequirements2KHR -: VmaVulkanFunctions -
  • vkGetImageMemoryRequirements : VmaVulkanFunctions
  • -
  • vkGetImageMemoryRequirements2KHR -: VmaVulkanFunctions -
  • vkGetPhysicalDeviceMemoryProperties : VmaVulkanFunctions
  • diff --git a/docs/html/functions_vars.html b/docs/html/functions_vars.html index 9a0ee19..c7b0790 100644 --- a/docs/html/functions_vars.html +++ b/docs/html/functions_vars.html @@ -279,15 +279,9 @@ $(function() {
  • vkGetBufferMemoryRequirements : VmaVulkanFunctions
  • -
  • vkGetBufferMemoryRequirements2KHR -: VmaVulkanFunctions -
  • vkGetImageMemoryRequirements : VmaVulkanFunctions
  • -
  • vkGetImageMemoryRequirements2KHR -: VmaVulkanFunctions -
  • vkGetPhysicalDeviceMemoryProperties : VmaVulkanFunctions
  • diff --git a/docs/html/general_considerations.html b/docs/html/general_considerations.html index 139d6e6..5d4362d 100644 --- a/docs/html/general_considerations.html +++ b/docs/html/general_considerations.html @@ -91,6 +91,7 @@ Features not supported

    Features deliberately excluded from the scope of this library:

    diff --git a/docs/html/globals.html b/docs/html/globals.html index e94b352..d583338 100644 --- a/docs/html/globals.html +++ b/docs/html/globals.html @@ -101,6 +101,9 @@ $(function() {
  • VMA_ALLOCATOR_CREATE_KHR_DEDICATED_ALLOCATION_BIT : vk_mem_alloc.h
  • +
  • VMA_DEDICATED_ALLOCATION +: vk_mem_alloc.h +
  • VMA_MEMORY_USAGE_CPU_ONLY : vk_mem_alloc.h
  • diff --git a/docs/html/globals_defs.html b/docs/html/globals_defs.html index 95a5846..aa8115b 100644 --- a/docs/html/globals_defs.html +++ b/docs/html/globals_defs.html @@ -59,6 +59,9 @@ $(function() {
     
    - -

    ◆ vkGetBufferMemoryRequirements2KHR

    - -
    -
    - - - - -
    PFN_vkGetBufferMemoryRequirements2KHR VmaVulkanFunctions::vkGetBufferMemoryRequirements2KHR
    -
    -
    @@ -262,20 +244,6 @@ Public Attributes
    -
    - - -

    ◆ vkGetImageMemoryRequirements2KHR

    - -
    -
    - - - - -
    PFN_vkGetImageMemoryRequirements2KHR VmaVulkanFunctions::vkGetImageMemoryRequirements2KHR
    -
    -
    diff --git a/docs/html/usage_patterns.html b/docs/html/usage_patterns.html index 314a272..0495f56 100644 --- a/docs/html/usage_patterns.html +++ b/docs/html/usage_patterns.html @@ -115,7 +115,7 @@ Direct access versus transfer
  • Create just single copy using VMA_MEMORY_USAGE_GPU_TO_CPU, write to it directly on GPU, map it and read it on CPU.
  • You should take some measurements to decide which option is faster in case of your specific resource.

    -

    If you don't want to specialize your code for specific types of GPUs, yon can still make an simple optimization for cases when your resource ends up in mappable memory to use it directly in this case instead of creating CPU-side staging copy. For details see Finding out if memory is mappable.

    +

    If you don't want to specialize your code for specific types of GPUs, you can still make an simple optimization for cases when your resource ends up in mappable memory to use it directly in this case instead of creating CPU-side staging copy. For details see Finding out if memory is mappable.