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/drape_tests/static_texture_tests.cpp')
-rw-r--r--drape/drape_tests/static_texture_tests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/drape/drape_tests/static_texture_tests.cpp b/drape/drape_tests/static_texture_tests.cpp
index 8cece22e10..9022c00ad3 100644
--- a/drape/drape_tests/static_texture_tests.cpp
+++ b/drape/drape_tests/static_texture_tests.cpp
@@ -20,10 +20,10 @@ UNIT_TEST(CheckTrafficArrowTextures)
GetStyleReader().SetCurrentStyle(style);
for (size_t i = 0; i < skinPaths.size(); ++i)
{
- dp::StaticTexture texture("traffic-arrow", skinPaths[i], dp::RGBA8, nullptr);
+ dp::StaticTexture texture("traffic-arrow", skinPaths[i], dp::TextureFormat::RGBA8, nullptr);
TEST(texture.IsLoadingCorrect(), ());
- dp::StaticTexture texture2("area-hatching", skinPaths[i], dp::RGBA8, nullptr);
+ dp::StaticTexture texture2("area-hatching", skinPaths[i], dp::TextureFormat::RGBA8, nullptr);
TEST(texture2.IsLoadingCorrect(), ());
}
}