diff --git a/data/vulkan_shaders/Text.vert.spv b/data/vulkan_shaders/Text.vert.spv index ee9bcab201..707f8e7325 100644 Binary files a/data/vulkan_shaders/Text.vert.spv and b/data/vulkan_shaders/Text.vert.spv differ diff --git a/data/vulkan_shaders/TextBillboard.vert.spv b/data/vulkan_shaders/TextBillboard.vert.spv index 46100dfdc4..738b2a362c 100644 Binary files a/data/vulkan_shaders/TextBillboard.vert.spv and b/data/vulkan_shaders/TextBillboard.vert.spv differ diff --git a/data/vulkan_shaders/TextFixed.vert.spv b/data/vulkan_shaders/TextFixed.vert.spv index ee9bcab201..707f8e7325 100644 Binary files a/data/vulkan_shaders/TextFixed.vert.spv and b/data/vulkan_shaders/TextFixed.vert.spv differ diff --git a/data/vulkan_shaders/TextFixedBillboard.vert.spv b/data/vulkan_shaders/TextFixedBillboard.vert.spv index 46100dfdc4..738b2a362c 100644 Binary files a/data/vulkan_shaders/TextFixedBillboard.vert.spv and b/data/vulkan_shaders/TextFixedBillboard.vert.spv differ diff --git a/data/vulkan_shaders/TextOutlined.vert.spv b/data/vulkan_shaders/TextOutlined.vert.spv index 98e6d5dd3d..bfebc61870 100644 Binary files a/data/vulkan_shaders/TextOutlined.vert.spv and b/data/vulkan_shaders/TextOutlined.vert.spv differ diff --git a/data/vulkan_shaders/TextOutlinedBillboard.vert.spv b/data/vulkan_shaders/TextOutlinedBillboard.vert.spv index 01310f66d4..7a9f83ec8a 100644 Binary files a/data/vulkan_shaders/TextOutlinedBillboard.vert.spv and b/data/vulkan_shaders/TextOutlinedBillboard.vert.spv differ diff --git a/data/vulkan_shaders/TextOutlinedGui.vert.spv b/data/vulkan_shaders/TextOutlinedGui.vert.spv index 0c427d0e3b..e718115b3d 100644 Binary files a/data/vulkan_shaders/TextOutlinedGui.vert.spv and b/data/vulkan_shaders/TextOutlinedGui.vert.spv differ diff --git a/data/vulkan_shaders/TextStaticOutlinedGui.vert.spv b/data/vulkan_shaders/TextStaticOutlinedGui.vert.spv index 0c427d0e3b..e718115b3d 100644 Binary files a/data/vulkan_shaders/TextStaticOutlinedGui.vert.spv and b/data/vulkan_shaders/TextStaticOutlinedGui.vert.spv differ diff --git a/drape/utils/vertex_decl.cpp b/drape/utils/vertex_decl.cpp index d2700eca5b..0821250465 100644 --- a/drape/utils/vertex_decl.cpp +++ b/drape/utils/vertex_decl.cpp @@ -128,7 +128,7 @@ dp::BindingInfo TextDynamicBindingInit() sizeof(TextDynamicVertex::TNormal)), ""); dp::BindingFiller filler(2, TextDynamicVertex::GetDynamicStreamID()); - filler.FillDecl("a_position"); + filler.FillDecl("a_position"); filler.FillDecl("a_normal"); return filler.m_info; diff --git a/drape/vulkan/vulkan_memory_manager.cpp b/drape/vulkan/vulkan_memory_manager.cpp index 3fc797a61e..15f8e2a248 100644 --- a/drape/vulkan/vulkan_memory_manager.cpp +++ b/drape/vulkan/vulkan_memory_manager.cpp @@ -123,7 +123,8 @@ uint32_t VulkanMemoryManager::GetSizeAlignment(VkMemoryRequirements const & memR static_cast(m_deviceLimits.nonCoherentAtomSize)); } -uint32_t VulkanMemoryManager::GetAligned(uint32_t value, uint32_t alignment) const +// static +uint32_t VulkanMemoryManager::GetAligned(uint32_t value, uint32_t alignment) { if (alignment == 0) return value; diff --git a/drape/vulkan/vulkan_memory_manager.hpp b/drape/vulkan/vulkan_memory_manager.hpp index 3cc333c578..574663b44d 100644 --- a/drape/vulkan/vulkan_memory_manager.hpp +++ b/drape/vulkan/vulkan_memory_manager.hpp @@ -76,7 +76,7 @@ public: uint32_t GetOffsetAlignment(ResourceType resourceType) const; uint32_t GetSizeAlignment(VkMemoryRequirements const & memReqs) const; - uint32_t GetAligned(uint32_t value, uint32_t alignment) const; + static uint32_t GetAligned(uint32_t value, uint32_t alignment); private: boost::optional GetMemoryTypeIndex(uint32_t typeBits, diff --git a/drape/vulkan/vulkan_pipeline.cpp b/drape/vulkan/vulkan_pipeline.cpp index 05db6d34cc..f126dc2946 100644 --- a/drape/vulkan/vulkan_pipeline.cpp +++ b/drape/vulkan/vulkan_pipeline.cpp @@ -191,7 +191,7 @@ void VulkanPipeline::Dump(VkDevice device) if (!m_isChanged) return; - size_t constexpr kMaxCacheSizeInBytes = 100 * 1024; + size_t constexpr kMaxCacheSizeInBytes = 200 * 1024; size_t cacheSize; VkResult statusCode; diff --git a/drape/vulkan/vulkan_staging_buffer.cpp b/drape/vulkan/vulkan_staging_buffer.cpp index 17d9580f80..010c16fc79 100644 --- a/drape/vulkan/vulkan_staging_buffer.cpp +++ b/drape/vulkan/vulkan_staging_buffer.cpp @@ -13,7 +13,7 @@ namespace vulkan VulkanStagingBuffer::VulkanStagingBuffer(ref_ptr objectManager, uint32_t sizeInBytes) : m_objectManager(objectManager) - , m_sizeInBytes(sizeInBytes) + , m_sizeInBytes(VulkanMemoryManager::GetAligned(sizeInBytes, 64)) { auto constexpr kStagingBuffer = VulkanMemoryManager::ResourceType::Staging; VkDevice device = m_objectManager->GetDevice(); @@ -22,7 +22,11 @@ VulkanStagingBuffer::VulkanStagingBuffer(ref_ptr objectMana m_object = m_objectManager->CreateBuffer(kStagingBuffer, sizeInBytes, 0 /* batcherHash */); VkMemoryRequirements memReqs = {}; vkGetBufferMemoryRequirements(device, m_object.m_buffer, &memReqs); + + // We must be able to map the whole range. m_sizeAlignment = mm.GetSizeAlignment(memReqs); + CHECK(HasEnoughSpace(m_sizeInBytes), ()); + m_offsetAlignment = mm.GetOffsetAlignment(kStagingBuffer); m_pointer = m_objectManager->MapUnsafe(m_object); } diff --git a/shaders/GL/text.vsh.glsl b/shaders/GL/text.vsh.glsl index b37f42050a..0e8ced460b 100644 --- a/shaders/GL/text.vsh.glsl +++ b/shaders/GL/text.vsh.glsl @@ -1,7 +1,7 @@ -attribute vec4 a_position; -attribute vec2 a_normal; attribute vec2 a_colorTexCoord; attribute vec2 a_maskTexCoord; +attribute vec4 a_position; +attribute vec2 a_normal; uniform mat4 u_modelView; uniform mat4 u_projection; diff --git a/shaders/GL/text_billboard.vsh.glsl b/shaders/GL/text_billboard.vsh.glsl index 8415bc59d0..728b84979f 100755 --- a/shaders/GL/text_billboard.vsh.glsl +++ b/shaders/GL/text_billboard.vsh.glsl @@ -1,7 +1,7 @@ -attribute vec4 a_position; -attribute vec2 a_normal; attribute vec2 a_colorTexCoord; attribute vec2 a_maskTexCoord; +attribute vec4 a_position; +attribute vec2 a_normal; uniform mat4 u_modelView; uniform mat4 u_projection; diff --git a/shaders/GL/text_outlined.vsh.glsl b/shaders/GL/text_outlined.vsh.glsl index 3499b0355f..7e7b2d2d7c 100755 --- a/shaders/GL/text_outlined.vsh.glsl +++ b/shaders/GL/text_outlined.vsh.glsl @@ -1,8 +1,8 @@ -attribute vec4 a_position; -attribute vec2 a_normal; attribute vec2 a_colorTexCoord; attribute vec2 a_outlineColorTexCoord; attribute vec2 a_maskTexCoord; +attribute vec4 a_position; +attribute vec2 a_normal; uniform mat4 u_modelView; uniform mat4 u_projection; diff --git a/shaders/GL/text_outlined_billboard.vsh.glsl b/shaders/GL/text_outlined_billboard.vsh.glsl index 05ce9046d1..0f23286d06 100755 --- a/shaders/GL/text_outlined_billboard.vsh.glsl +++ b/shaders/GL/text_outlined_billboard.vsh.glsl @@ -1,8 +1,8 @@ -attribute vec4 a_position; -attribute vec2 a_normal; attribute vec2 a_colorTexCoord; attribute vec2 a_outlineColorTexCoord; attribute vec2 a_maskTexCoord; +attribute vec4 a_position; +attribute vec2 a_normal; uniform mat4 u_modelView; uniform mat4 u_projection; diff --git a/shaders/GL/text_outlined_gui.vsh.glsl b/shaders/GL/text_outlined_gui.vsh.glsl index b1732f8085..eaa576d846 100755 --- a/shaders/GL/text_outlined_gui.vsh.glsl +++ b/shaders/GL/text_outlined_gui.vsh.glsl @@ -1,7 +1,7 @@ attribute vec3 a_position; -attribute vec2 a_normal; attribute vec2 a_colorTexCoord; attribute vec2 a_outlineColorTexCoord; +attribute vec2 a_normal; attribute vec2 a_maskTexCoord; uniform mat4 u_modelView; diff --git a/shaders/vulkan_shaders_preprocessor.py b/shaders/vulkan_shaders_preprocessor.py index 121edb1712..0ac371d3f7 100644 --- a/shaders/vulkan_shaders_preprocessor.py +++ b/shaders/vulkan_shaders_preprocessor.py @@ -231,21 +231,21 @@ def get_subscript(offset, param): def write_uniform_block(output_file, program_params): - groups = dict() + groups = [] c = 0 group_index = 0 group_params = [] for p in program_params: sz = get_size_by_type(p[0]) if sz % 4 == 0: - groups[(p[0], p[1])] = [p] + groups.append((p[0], p[1], [p])) else: if c + sz < 4: group_params.append(p) c += sz elif c + sz == 4: group_params.append(p) - groups[('vec4', 'u_grouped{0}'.format(group_index))] = group_params + groups.append(('vec4', 'u_grouped{0}'.format(group_index), group_params)) group_index += 1 group_params = [] c = 0 @@ -253,16 +253,16 @@ def write_uniform_block(output_file, program_params): print('Must be possible to unite sequential variables to vec4') exit(1) if c != 0: - groups[('vec4', 'u_grouped{0}'.format(group_index))] = group_params + groups.append(('vec4', 'u_grouped{0}'.format(group_index), group_params)) output_file.write('layout (binding = 0) uniform UBO\n') output_file.write('{\n') - for g in groups.keys(): + for g in groups: output_file.write(' {0} {1};\n'.format(g[0], g[1])) output_file.write('} uniforms;\n') - for k in groups.keys(): + for k in groups: name = k[1] - params = groups[k] + params = k[2] offset = 0 if len(params) == 1 and get_size_by_type(params[0][0]) % 4 == 0: output_file.write('#define {0} uniforms.{1}\n'.format(params[0][1], name))