summaryrefslogtreecommitdiffstats
path: root/src/video_core/vulkan_common/vulkan_memory_allocator.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* vulkan_memory_allocator: Allow textures to be allocated in host memoryReinUsesLisp2021-05-271-26/+41
| | | | | Allow Vulkan's allocator to use host memory when there's no more device local memory. This delays OOM, but it will eventually still happen.
* vulkan_common: enable OpenGL interop on other UnicesJan Beich2021-03-301-4/+4
|
* vulkan_common: Expose interop and headless devicesReinUsesLisp2021-02-131-10/+68
|
* vulkan_memory_allocator: Remove unnecesary 'device' memory from commitsReinUsesLisp2021-01-151-10/+10
|
* vulkan_memory_allocator: Add allocation support for download typesReinUsesLisp2021-01-151-51/+78
| | | | | Implements the allocator logic to handle download memory types. This will try to use HOST_CACHED_BIT when available.
* vulkan_memory_allocator: Add "download" memory usage hintReinUsesLisp2021-01-151-5/+19
| | | | | | | Allow users of the allocator to hint memory usage for downloads. This removes the non-descriptive boolean passed for "host visible" or not host visible memory commits, and uses an enum to hint device local, upload and download usages.
* vulkan_common: Move allocator to the common directoryReinUsesLisp2021-01-151-0/+227
Allow using the abstraction from the OpenGL backend.