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:
authorExMix <rahuba.youri@mapswithme.com>2013-09-13 23:17:00 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:01:34 +0300
commit33755b7e99207bef9a449a68a33717017fd06cff (patch)
treed5e572227cd6af086f78cf38cc8d15dd9610bebb /graphics/color.cpp
parent95b69568294623aadbc6bb22211fe5479d22e2ff (diff)
review fix
Diffstat (limited to 'graphics/color.cpp')
-rw-r--r--graphics/color.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/graphics/color.cpp b/graphics/color.cpp
index b5c543f379..1bd4f583e0 100644
--- a/graphics/color.cpp
+++ b/graphics/color.cpp
@@ -85,4 +85,14 @@ namespace graphics
{
return !(l != r);
}
+
+ Color Color::Black()
+ {
+ return Color(0, 0, 0, 255);
+ }
+
+ Color Color::White()
+ {
+ return Color(255, 255, 255, 255);
+ }
}