Commit 20e631fe by Jamie Madill Committed by Commit Bot

Update VMA integration again.

This time using a simpler integration and no template. Bug: chromium:1074162 Change-Id: Ia770f2bf724ffb9b8120dbdbc707133fc61e16c6 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2182173Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 17545eae
...@@ -89,8 +89,8 @@ deps = { ...@@ -89,8 +89,8 @@ deps = {
'condition': 'not build_with_chromium', 'condition': 'not build_with_chromium',
}, },
'third_party/VulkanMemoryAllocator': { 'third_party/vulkan_memory_allocator': {
'url': '{chromium_git}/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator@7425dc136ffa08842ece43f71a57fe768046259b', 'url': '{chromium_git}/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator@dac952eb0a27736571bf10ac42fbfcc59192f310',
'condition': 'not build_with_chromium', 'condition': 'not build_with_chromium',
}, },
......
...@@ -17,4 +17,4 @@ angle_libpng_dir = "//third_party/libpng" ...@@ -17,4 +17,4 @@ angle_libpng_dir = "//third_party/libpng"
angle_spirv_cross_dir = "//third_party/spirv-cross/src" angle_spirv_cross_dir = "//third_party/spirv-cross/src"
angle_spirv_headers_dir = "//third_party/spirv-headers/src" angle_spirv_headers_dir = "//third_party/spirv-headers/src"
angle_spirv_tools_dir = "//third_party/spirv-tools/src" angle_spirv_tools_dir = "//third_party/spirv-tools/src"
angle_vulkan_memory_allocator_dir = "//third_party/VulkanMemoryAllocator" angle_vulkan_memory_allocator_dir = "//third_party/vulkan_memory_allocator"
...@@ -178,12 +178,6 @@ angle_source_set("angle_vulkan_headers") { ...@@ -178,12 +178,6 @@ angle_source_set("angle_vulkan_headers") {
public_configs = [ ":angle_vulkan_headers_config" ] public_configs = [ ":angle_vulkan_headers_config" ]
} }
import("$angle_vulkan_memory_allocator_dir/vulkan_memory_allocator.gni")
vulkan_memory_allocator("angle_vulkan_memory_allocator") {
deps = [ ":angle_vulkan_headers" ]
vulkan_memory_allocator_dir = "$angle_vulkan_memory_allocator_dir"
}
group("angle_vulkan_entry_points") { group("angle_vulkan_entry_points") {
public_configs = [ ":angle_vulkan_lib_android" ] public_configs = [ ":angle_vulkan_lib_android" ]
public_deps = [ ":angle_vulkan_headers" ] public_deps = [ ":angle_vulkan_headers" ]
...@@ -218,7 +212,7 @@ config("angle_vulkan_backend_config") { ...@@ -218,7 +212,7 @@ config("angle_vulkan_backend_config") {
angle_source_set("angle_vk_mem_alloc_wrapper") { angle_source_set("angle_vk_mem_alloc_wrapper") {
deps = [ deps = [
":angle_vulkan_headers", ":angle_vulkan_headers",
":angle_vulkan_memory_allocator", "$angle_vulkan_memory_allocator_dir",
] ]
sources = [ sources = [
"vk_mem_alloc_wrapper.cpp", "vk_mem_alloc_wrapper.cpp",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment