/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | vk_mem_alloc_wrapper.cpp | 30 funcs.vkFlushMappedMemoryRanges = vkFlushMappedMemoryRanges; in InitAllocator()
|
H A D | vk_utils.cpp | 697 ANGLE_VK_TRY(context, vkFlushMappedMemoryRanges(device, 1, &mappedRange)); in InitMappableDeviceMemory()
|
H A D | vk_wrapper.h | 1316 vkFlushMappedMemoryRanges(device, 1, &memRange); in flush()
|
/third_party/skia/third_party/externals/angle2/src/third_party/volk/ |
H A D | volk.h | 206 PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges; member 613 extern PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges;
|
H A D | volk.c | 416 vkFlushMappedMemoryRanges = (PFN_vkFlushMappedMemoryRanges)load(context, "vkFlushMappedMemoryRanges"); in volkGenLoadDevice() 817 table->vkFlushMappedMemoryRanges = (PFN_vkFlushMappedMemoryRanges)load(context, "vkFlushMappedMemoryRanges"); in volkGenLoadDeviceTable() 1228 PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges; variable
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkGetProcAddress.cpp | 180 MAKE_VULKAN_DEVICE_ENTRY(vkFlushMappedMemoryRanges),
|
H A D | libVulkan.cpp | 1246 VKAPI_ATTR VkResult VKAPI_CALL vkFlushMappedMemoryRanges(VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange *pMemoryRanges) in vkFlushMappedMemoryRanges() function
|
/third_party/vulkan-loader/loader/ |
H A D | gpa_helper.c | 57 if (!strcmp(funcName, "vkFlushMappedMemoryRanges")) return vkFlushMappedMemoryRanges; in trampoline_get_proc_addr()
|
H A D | trampoline.c | 1197 LOADER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkFlushMappedMemoryRanges(VkDevice device, uint32_t memoryRangeCount, in vkFlushMappedMemoryRanges() function 1202 "vkFlushMappedMemoryRanges: Invalid device [VUID-vkFlushMappedMemoryRanges-device-parameter]"); in vkFlushMappedMemoryRanges()
|
/third_party/skia/third_party/externals/imgui/backends/ |
H A D | imgui_impl_vulkan.cpp | 177 IMGUI_VULKAN_FUNC_MAP_MACRO(vkFlushMappedMemoryRanges) \ 479 err = vkFlushMappedMemoryRanges(v->Device, 2, range); in ImGui_ImplVulkan_RenderDrawData() 646 err = vkFlushMappedMemoryRanges(v->Device, 1, range); in ImGui_ImplVulkan_CreateFontsTexture()
|
/third_party/skia/third_party/vulkanmemoryallocator/include/ |
H A D | vk_mem_alloc.h | 435 Vulkan provides following functions for this purpose `vkFlushMappedMemoryRanges()`, 1927 extern PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges; 2219 PFN_vkFlushMappedMemoryRanges VMA_NULLABLE vkFlushMappedMemoryRanges; member 3381 Calls `vkFlushMappedMemoryRanges()` for memory associated with given range of given allocation. 3397 This function returns the `VkResult` from `vkFlushMappedMemoryRanges` if it is 3435 Calls `vkFlushMappedMemoryRanges()` for memory associated with given ranges of given allocations. 3444 This function returns the `VkResult` from `vkFlushMappedMemoryRanges` if it is 13455 (*m_hAllocator->GetVulkanFunctions().vkFlushMappedMemoryRanges)(m_hAllocator->m_hDevice, 1, &memRange); in ApplyDefragmentationMovesCpu() 15934 m_VulkanFunctions.vkFlushMappedMemoryRanges = (PFN_vkFlushMappedMemoryRanges)vkFlushMappedMemoryRanges; [all...] |
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
H A D | vulkan.hpp | 1588 VkResult vkFlushMappedMemoryRanges( VkDevice device, 1592 return ::vkFlushMappedMemoryRanges( device, memoryRangeCount, pMemoryRanges ); 10905 PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges = 0; member in VULKAN_HPP_NAMESPACE::DispatchLoaderDynamic 11880 vkFlushMappedMemoryRanges = 11881 PFN_vkFlushMappedMemoryRanges( vkGetInstanceProcAddr( instance, "vkFlushMappedMemoryRanges" ) ); 13084 vkFlushMappedMemoryRanges = 13085 PFN_vkFlushMappedMemoryRanges( vkGetDeviceProcAddr( device, "vkFlushMappedMemoryRanges" ) );
|
H A D | vulkan_raii.hpp | 700 vkFlushMappedMemoryRanges = in init() 701 PFN_vkFlushMappedMemoryRanges( vkGetDeviceProcAddr( device, "vkFlushMappedMemoryRanges" ) ); in init() 1590 PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges = 0; member in VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher 9441 static_cast<VULKAN_HPP_NAMESPACE::Result>( getDispatcher()->vkFlushMappedMemoryRanges( in flushMappedMemoryRanges()
|
H A D | vulkan_core.h | 3774 VKAPI_ATTR VkResult VKAPI_CALL vkFlushMappedMemoryRanges(
|
H A D | vulkan_funcs.hpp | 1013 return static_cast<Result>( d.vkFlushMappedMemoryRanges( 1024 Result result = static_cast<Result>( d.vkFlushMappedMemoryRanges( in flushMappedMemoryRanges() [all...] |
/third_party/vulkan-headers/include/vulkan/ |
H A D | vulkan.hpp | 1175 VkResult vkFlushMappedMemoryRanges( VkDevice device, uint32_t memoryRangeCount, const VkMappedMemoryRange * pMemoryRanges ) const VULKAN_HPP_NOEXCEPT 1177 return ::vkFlushMappedMemoryRanges( device, memoryRangeCount, pMemoryRanges ); 16425 PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges = 0; member in VULKAN_HPP_NAMESPACE::DispatchLoaderDynamic 17621 vkFlushMappedMemoryRanges = PFN_vkFlushMappedMemoryRanges( vkGetInstanceProcAddr( instance, "vkFlushMappedMemoryRanges" ) ); 18941 vkFlushMappedMemoryRanges = PFN_vkFlushMappedMemoryRanges( vkGetDeviceProcAddr( device, "vkFlushMappedMemoryRanges" ) );
|
H A D | vulkan_raii.hpp | 697 vkFlushMappedMemoryRanges = PFN_vkFlushMappedMemoryRanges( vkGetDeviceProcAddr( device, "vkFlushMappedMemoryRanges" ) ); in DeviceDispatcher() 1740 PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges = 0; member in VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher 12043 VULKAN_HPP_ASSERT( getDispatcher()->vkFlushMappedMemoryRanges && "Function <vkFlushMappedMemoryRanges> requires <VK_VERSION_1_0>" ); in flushMappedMemoryRanges() 12045 VULKAN_HPP_NAMESPACE::Result result = static_cast<VULKAN_HPP_NAMESPACE::Result>( getDispatcher()->vkFlushMappedMemoryRanges( in flushMappedMemoryRanges() [all...] |
H A D | vulkan_funcs.hpp | 991 return static_cast<Result>( d.vkFlushMappedMemoryRanges( m_device, memoryRangeCount, reinterpret_cast<const VkMappedMemoryRange *>( pMemoryRanges ) ) ); 1003 d.vkFlushMappedMemoryRanges( m_device, memoryRanges.size(), reinterpret_cast<const VkMappedMemoryRange *>( memoryRanges.data() ) ) ); in flushMappedMemoryRanges() [all...] |
H A D | vulkan_core.h | 4188 VKAPI_ATTR VkResult VKAPI_CALL vkFlushMappedMemoryRanges(
|
/third_party/glfw/deps/glad/ |
H A D | vulkan.h | 5420 #define vkFlushMappedMemoryRanges glad_vkFlushMappedMemoryRanges macro 5962 glad_vkFlushMappedMemoryRanges = (PFN_vkFlushMappedMemoryRanges) load(userptr, "vkFlushMappedMemoryRanges"); in glad_vk_load_VK_VERSION_1_0()
|
/third_party/vk-gl-cts/external/vulkancts/scripts/src/ |
H A D | vulkan_sc_core.h | 2866 VKAPI_ATTR VkResult VKAPI_CALL vkFlushMappedMemoryRanges(
|
/third_party/skia/include/third_party/vulkan/vulkan/ |
H A D | vulkan_core.h | 3681 VKAPI_ATTR VkResult VKAPI_CALL vkFlushMappedMemoryRanges(
|
/third_party/mesa3d/include/vulkan/ |
H A D | vulkan_core.h | 4038 VKAPI_ATTR VkResult VKAPI_CALL vkFlushMappedMemoryRanges(
|
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/ |
H A D | vulkan_core.h | 3823 VKAPI_ATTR VkResult VKAPI_CALL vkFlushMappedMemoryRanges(
|