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
diff options
context:
space:
mode:
Diffstat (limited to 'drape/render_state.cpp')
-rw-r--r--drape/render_state.cpp6
1 files changed, 4 insertions, 2 deletions
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<GraphicsContext> context, ref_ptr<GpuProgram> program, R
ASSERT_GREATER_OR_EQUAL(state.GetLineWidth(), 0, ());
GLFunctions::glLineWidth(static_cast<uint32_t>(state.GetLineWidth()));
}
-
- //TODO(@rokuz, @darina): Check if Vulkan support line width.
+ else if (apiVersion == dp::ApiVersion::Vulkan)
+ {
+ //TODO(@rokuz, @darina): Implement.
+ }
}
} // namespace dp