From 0196e79dc5ded496a5a33caae876d7910dee9e3e Mon Sep 17 00:00:00 2001 From: "r.kuznetsov" Date: Thu, 10 Jan 2019 14:30:56 +0300 Subject: [Vulkan] Added checking max textures and lines width --- drape/render_state.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'drape/render_state.cpp') diff --git a/drape/render_state.cpp b/drape/render_state.cpp index 749ee03729..93ab82baa8 100644 --- a/drape/render_state.cpp +++ b/drape/render_state.cpp @@ -283,7 +283,9 @@ void ApplyState(ref_ptr context, ref_ptr program, R ASSERT_GREATER_OR_EQUAL(state.GetLineWidth(), 0, ()); GLFunctions::glLineWidth(static_cast(state.GetLineWidth())); } - - //TODO(@rokuz, @darina): Check if Vulkan support line width. + else if (apiVersion == dp::ApiVersion::Vulkan) + { + //TODO(@rokuz, @darina): Implement. + } } } // namespace dp -- cgit v1.2.3