Home
last modified time | relevance | path

Searched refs:vkAllocateMemory (Results 1 - 25 of 32) sorted by relevance

12

/third_party/vk-gl-cts/external/amber/src/src/vulkan/
H A Dvertex_buffer_test.cc43 dummyPtrs_.vkAllocateMemory = vkAllocateMemory; in DummyDevice()
82 static VkResult vkAllocateMemory(VkDevice, in vkAllocateMemory() function in amber::vulkan::__anon27554::DummyDevice
H A Dresource.cc147 if (device_->GetPtrs()->vkAllocateMemory(device_->GetVkDevice(), &alloc_info, in AllocateMemory()
149 return Result("Vulkan::Calling vkAllocateMemory Fail"); in AllocateMemory()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dvk_mem_alloc_wrapper.cpp26 funcs.vkAllocateMemory = vkAllocateMemory; in InitAllocator()
H A Dvk_wrapper.h1294 return vkAllocateMemory(device, &allocInfo, nullptr, &mHandle); in allocate()
/third_party/vk-gl-cts/build/include/
H A Dvk-wrappers-1-0.h3 PFN_vkAllocateMemory vkAllocateMemory; variable
/third_party/vk-gl-cts/build/
H A Dvk-wrappers-1-0.h3 PFN_vkAllocateMemory vkAllocateMemory; variable
/third_party/skia/third_party/externals/swiftshader/src/WSI/
H A DVkSurfaceKHR.cpp61 VkResult status = vkAllocateMemory(device, &allocateInfo, nullptr, &deviceMemory); in allocateAndBindImageMemory()
/third_party/skia/third_party/externals/swiftshader/tests/VulkanUnitTests/
H A DDevice.cpp363 return driver->vkAllocateMemory(device, &info, 0, out); in AllocateMemory()
/third_party/skia/third_party/externals/angle2/src/third_party/volk/
H A Dvolk.h118 PFN_vkAllocateMemory vkAllocateMemory; member
517 extern PFN_vkAllocateMemory vkAllocateMemory;
H A Dvolk.c328 vkAllocateMemory = (PFN_vkAllocateMemory)load(context, "vkAllocateMemory"); in volkGenLoadDevice()
729 table->vkAllocateMemory = (PFN_vkAllocateMemory)load(context, "vkAllocateMemory"); in volkGenLoadDeviceTable()
1132 PFN_vkAllocateMemory vkAllocateMemory; variable
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
H A DVulkanHelper.cpp583 result = vkAllocateMemory(mDevice, &memoryAllocateInfo, nullptr, &deviceMemory);
983 result = vkAllocateMemory(mDevice, &memoryAllocateInfo, nullptr, &deviceMemory);
/third_party/skia/third_party/externals/imgui/backends/
H A Dimgui_impl_vulkan.cpp134 IMGUI_VULKAN_FUNC_MAP_MACRO(vkAllocateMemory) \
366 err = vkAllocateMemory(v->Device, &alloc_info, v->Allocator, &buffer_memory); in CreateOrResizeBuffer()
579 err = vkAllocateMemory(v->Device, &alloc_info, v->Allocator, &bd->FontMemory); in ImGui_ImplVulkan_CreateFontsTexture()
630 err = vkAllocateMemory(v->Device, &alloc_info, v->Allocator, &bd->UploadBufferMemory); in ImGui_ImplVulkan_CreateFontsTexture()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkGetProcAddress.cpp176 MAKE_VULKAN_DEVICE_ENTRY(vkAllocateMemory),
H A DlibVulkan.cpp1089 VKAPI_ATTR VkResult VKAPI_CALL vkAllocateMemory(VkDevice device, const VkMemoryAllocateInfo *pAllocateInfo, const VkAllocationCallbacks *pAllocator, VkDeviceMemory *pMemory) in vkAllocateMemory() function
1818 result = vkAllocateMemory(device, &allocInfo, pAllocator, &devmem); in vkCreateImage()
/third_party/vulkan-loader/loader/
H A Dgpa_helper.c53 if (!strcmp(funcName, "vkAllocateMemory")) return vkAllocateMemory; in trampoline_get_proc_addr()
H A Dtrampoline.c1150 LOADER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkAllocateMemory(VkDevice device, const VkMemoryAllocateInfo *pAllocateInfo, in vkAllocateMemory() function
1155 "vkAllocateMemory: Invalid device [VUID-vkAllocateMemory-device-parameter]"); in vkAllocateMemory()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/third_party/
H A Dvulkan_command_buffer_utils.cpp1103 res = vkAllocateMemory(info.device, &mem_alloc, NULL, &info.depth.mem); in init_depth_buffer()
1152 res = vkAllocateMemory(info.device, &alloc_info, NULL, &(info.uniform_data.mem)); in init_uniform_buffer()
1355 res = vkAllocateMemory(info.device, &alloc_info, NULL, &(info.vertex_buffer.mem)); in init_vertex_buffer()
/third_party/glfw/tests/
H A Dtriangle-vulkan.c789 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &demo->depth.mem); in demo_prepare_depth()
857 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &tex_obj->mem); in demo_prepare_texture_image()
1071 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &demo->vertices.mem); in demo_prepare_vertices()
/third_party/skia/third_party/vulkanmemoryallocator/include/
H A Dvk_mem_alloc.h1605 m_VulkanFunctions.vkAllocateMemory = (PFN_vkAllocateMemory)vkAllocateMemory;
1632 The library makes calls to `vkAllocateMemory()` and `vkFreeMemory()` internally.
1873 should be made manually, using `vkCreateBuffer()` and `vkAllocateMemory()`.
1923 extern PFN_vkAllocateMemory vkAllocateMemory;
2077 /// Callback function called after successful vkAllocateMemory.
2092 /** \brief Set of callbacks that the library will call for `vkAllocateMemory` and `vkFreeMemory`.
2215 PFN_vkAllocateMemory VMA_NULLABLE vkAllocateMemory; member
2288 /// Informative callbacks for `vkAllocateMemory`, `vkFreeMemory`. Optional.
3912 vulkanFunctions.vkAllocateMemory
[all...]
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
H A Dvulkan.hpp1558 VkResult vkAllocateMemory( VkDevice device,
1563 return ::vkAllocateMemory( device, pAllocateInfo, pAllocator, pMemory );
10901 PFN_vkAllocateMemory vkAllocateMemory = 0; member in VULKAN_HPP_NAMESPACE::DispatchLoaderDynamic
11876 vkAllocateMemory = PFN_vkAllocateMemory( vkGetInstanceProcAddr( instance, "vkAllocateMemory" ) );
13080 vkAllocateMemory = PFN_vkAllocateMemory( vkGetDeviceProcAddr( device, "vkAllocateMemory" ) );
H A Dvulkan_raii.hpp696 vkAllocateMemory = PFN_vkAllocateMemory( vkGetDeviceProcAddr( device, "vkAllocateMemory" ) ); in init()
1586 PFN_vkAllocateMemory vkAllocateMemory = 0; member in VULKAN_HPP_NAMESPACE::VULKAN_HPP_RAII_NAMESPACE::DeviceDispatcher
5725 getDispatcher()->vkAllocateMemory( static_cast<VkDevice>( *device ), in DeviceMemory()
5731 throwResultException( result, "vkAllocateMemory" ); in DeviceMemory()
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan.hpp1151 VkResult vkAllocateMemory( VkDevice device,
1156 return ::vkAllocateMemory( device, pAllocateInfo, pAllocator, pMemory );
16421 PFN_vkAllocateMemory vkAllocateMemory = 0; member in VULKAN_HPP_NAMESPACE::DispatchLoaderDynamic
17617 vkAllocateMemory = PFN_vkAllocateMemory( vkGetInstanceProcAddr( instance, "vkAllocateMemory" ) );
18937 vkAllocateMemory = PFN_vkAllocateMemory( vkGetDeviceProcAddr( device, "vkAllocateMemory" ) );
/third_party/glfw/deps/glad/
H A Dvulkan.h5124 #define vkAllocateMemory glad_vkAllocateMemory macro
5866 glad_vkAllocateMemory = (PFN_vkAllocateMemory) load(userptr, "vkAllocateMemory"); in glad_vk_load_VK_VERSION_1_0()
/third_party/vk-gl-cts/external/vulkancts/scripts/src/
H A Dvulkan_sc_core.h2848 VKAPI_ATTR VkResult VKAPI_CALL vkAllocateMemory(
/third_party/skia/include/third_party/vulkan/vulkan/
H A Dvulkan_core.h3658 VKAPI_ATTR VkResult VKAPI_CALL vkAllocateMemory(

Completed in 209 milliseconds

12