Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xcode
diff options
context:
space:
mode:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2019-01-28 12:56:20 +0300
committerDaria Volvenkova <d.volvenkova@corp.mail.ru>2019-03-01 10:45:24 +0300
commit60d9cfe6abb91201c3c547fdbd34ea534a316a9e (patch)
treec5e90da61344c0e975cf0ebe95487a4d929e20fe /xcode
parent68c2eab4fc8a8c1ce0de94b02b75c394b5310940 (diff)
[vulkan] Refactored staging buffer
Diffstat (limited to 'xcode')
-rw-r--r--xcode/drape/drape.xcodeproj/project.pbxproj12
1 files changed, 8 insertions, 4 deletions
diff --git a/xcode/drape/drape.xcodeproj/project.pbxproj b/xcode/drape/drape.xcodeproj/project.pbxproj
index bdfb82234c..ad18f1bdb4 100644
--- a/xcode/drape/drape.xcodeproj/project.pbxproj
+++ b/xcode/drape/drape.xcodeproj/project.pbxproj
@@ -17,6 +17,8 @@
45201E951CE605B1008A4842 /* constants.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45201E941CE605B1008A4842 /* constants.hpp */; };
452D373421F7415F00CD3A94 /* vulkan_object_manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 452D373221F7415E00CD3A94 /* vulkan_object_manager.cpp */; };
452D373521F7415F00CD3A94 /* vulkan_object_manager.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 452D373321F7415F00CD3A94 /* vulkan_object_manager.hpp */; };
+ 452D373921FF081C00CD3A94 /* vulkan_staging_buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 452D373721FF081B00CD3A94 /* vulkan_staging_buffer.cpp */; };
+ 452D373A21FF081C00CD3A94 /* vulkan_staging_buffer.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 452D373821FF081C00CD3A94 /* vulkan_staging_buffer.hpp */; };
45447109211462A300D28C28 /* texture_types.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45447108211462A300D28C28 /* texture_types.hpp */; };
4560F591213EC93400CC736C /* render_state_metal.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4560F590213EC93300CC736C /* render_state_metal.mm */; };
4560F59E213F986E00CC736C /* metal_states.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 4560F59C213F986D00CC736C /* metal_states.hpp */; };
@@ -39,7 +41,6 @@
4577B26021F2035D00864FAC /* vulkan_mesh_object_impl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4577B25021F2035D00864FAC /* vulkan_mesh_object_impl.cpp */; };
4577B26121F2035D00864FAC /* vulkan_base_context.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4577B25121F2035D00864FAC /* vulkan_base_context.cpp */; };
4577B26221F2035D00864FAC /* vulkan_memory_manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4577B25221F2035D00864FAC /* vulkan_memory_manager.cpp */; };
- 4577B26321F2035D00864FAC /* vulkan_device_holder.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 4577B25321F2035D00864FAC /* vulkan_device_holder.hpp */; };
45789ED72133DFC2009955CC /* metal_base_context.mm in Sources */ = {isa = PBXBuildFile; fileRef = 45789ED52133DFC2009955CC /* metal_base_context.mm */; };
45789EDA2133E14F009955CC /* metal_base_context.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45789ED92133E14F009955CC /* metal_base_context.hpp */; };
45789EF2213557F7009955CC /* gl_constants.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45789EE9213557F4009955CC /* gl_constants.hpp */; };
@@ -159,6 +160,8 @@
45201E941CE605B1008A4842 /* constants.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = constants.hpp; sourceTree = "<group>"; };
452D373221F7415E00CD3A94 /* vulkan_object_manager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vulkan_object_manager.cpp; sourceTree = "<group>"; };
452D373321F7415F00CD3A94 /* vulkan_object_manager.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = vulkan_object_manager.hpp; sourceTree = "<group>"; };
+ 452D373721FF081B00CD3A94 /* vulkan_staging_buffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vulkan_staging_buffer.cpp; sourceTree = "<group>"; };
+ 452D373821FF081C00CD3A94 /* vulkan_staging_buffer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = vulkan_staging_buffer.hpp; sourceTree = "<group>"; };
45447108211462A300D28C28 /* texture_types.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = texture_types.hpp; sourceTree = "<group>"; };
4560F590213EC93300CC736C /* render_state_metal.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = render_state_metal.mm; sourceTree = "<group>"; };
4560F59C213F986D00CC736C /* metal_states.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = metal_states.hpp; sourceTree = "<group>"; };
@@ -181,7 +184,6 @@
4577B25021F2035D00864FAC /* vulkan_mesh_object_impl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vulkan_mesh_object_impl.cpp; path = ../vulkan/vulkan_mesh_object_impl.cpp; sourceTree = "<group>"; };
4577B25121F2035D00864FAC /* vulkan_base_context.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vulkan_base_context.cpp; path = ../vulkan/vulkan_base_context.cpp; sourceTree = "<group>"; };
4577B25221F2035D00864FAC /* vulkan_memory_manager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vulkan_memory_manager.cpp; path = ../vulkan/vulkan_memory_manager.cpp; sourceTree = "<group>"; };
- 4577B25321F2035D00864FAC /* vulkan_device_holder.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = vulkan_device_holder.hpp; path = ../vulkan/vulkan_device_holder.hpp; sourceTree = "<group>"; };
45789ED52133DFC2009955CC /* metal_base_context.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = metal_base_context.mm; sourceTree = "<group>"; };
45789ED92133E14F009955CC /* metal_base_context.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = metal_base_context.hpp; sourceTree = "<group>"; };
45789EE9213557F4009955CC /* gl_constants.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = gl_constants.hpp; sourceTree = "<group>"; };
@@ -305,7 +307,6 @@
children = (
4577B25121F2035D00864FAC /* vulkan_base_context.cpp */,
4577B24E21F2035C00864FAC /* vulkan_base_context.hpp */,
- 4577B25321F2035D00864FAC /* vulkan_device_holder.hpp */,
4577B24421F2035C00864FAC /* vulkan_gpu_buffer_impl.cpp */,
4577B24C21F2035C00864FAC /* vulkan_gpu_buffer_impl.hpp */,
4577B24921F2035C00864FAC /* vulkan_gpu_program.hpp */,
@@ -316,6 +317,8 @@
4577B25021F2035D00864FAC /* vulkan_mesh_object_impl.cpp */,
452D373221F7415E00CD3A94 /* vulkan_object_manager.cpp */,
452D373321F7415F00CD3A94 /* vulkan_object_manager.hpp */,
+ 452D373721FF081B00CD3A94 /* vulkan_staging_buffer.cpp */,
+ 452D373821FF081C00CD3A94 /* vulkan_staging_buffer.hpp */,
4577B24A21F2035C00864FAC /* vulkan_texture.cpp */,
4577B24521F2035C00864FAC /* vulkan_texture.hpp */,
4577B24621F2035C00864FAC /* vulkan_utils.cpp */,
@@ -540,6 +543,7 @@
6729A5AD1A69213A007D5872 /* uniform_value.hpp in Headers */,
6729A5951A69213A007D5872 /* overlay_handle.hpp in Headers */,
45201E951CE605B1008A4842 /* constants.hpp in Headers */,
+ 452D373A21FF081C00CD3A94 /* vulkan_staging_buffer.hpp in Headers */,
4577B25E21F2035D00864FAC /* vulkan_base_context.hpp in Headers */,
6709472E1BDF9A4F005014C0 /* index_storage.hpp in Headers */,
6729A5B51A69213A007D5872 /* vertex_array_buffer.hpp in Headers */,
@@ -566,7 +570,6 @@
BB035F6C1E3A2A5C00519962 /* drape_diagnostics.hpp in Headers */,
45789EF7213557F7009955CC /* gl_gpu_program.hpp in Headers */,
6729A56E1A69213A007D5872 /* buffer_base.hpp in Headers */,
- 4577B26321F2035D00864FAC /* vulkan_device_holder.hpp in Headers */,
6729A58F1A69213A007D5872 /* index_buffer.hpp in Headers */,
4577B25821F2035D00864FAC /* vulkan_layers.hpp in Headers */,
);
@@ -680,6 +683,7 @@
4577B26121F2035D00864FAC /* vulkan_base_context.cpp in Sources */,
670947271BDF9A4F005014C0 /* glyph_manager.cpp in Sources */,
6729A56F1A69213A007D5872 /* color.cpp in Sources */,
+ 452D373921FF081C00CD3A94 /* vulkan_staging_buffer.cpp in Sources */,
4577B25421F2035D00864FAC /* vulkan_gpu_buffer_impl.cpp in Sources */,
6729A5671A69213A007D5872 /* batcher_helpers.cpp in Sources */,
6729A5B41A69213A007D5872 /* vertex_array_buffer.cpp in Sources */,