summaryrefslogtreecommitdiff
path: root/libs/hwui/Layer.cpp
diff options
context:
space:
mode:
authorChris Craik <ccraik@google.com>2015-08-20 15:14:06 -0700
committerChris Craik <ccraik@google.com>2015-08-21 23:05:44 +0000
commitb9ce116dac378b4cf4490f265dcbd5704a1dd43c (patch)
tree359fda22ac4f3c659c1afe2542a8266b9278318b /libs/hwui/Layer.cpp
parente4a6f925621e9360238869ae28f7df1b4c2d97de (diff)
Switch several enums to enum classes
Change-Id: I00ecd0b61657196b51704f70ca31a9d1c1ac254e
Diffstat (limited to 'libs/hwui/Layer.cpp')
-rw-r--r--libs/hwui/Layer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Layer.cpp b/libs/hwui/Layer.cpp
index 928f91bdd4d9..e7482211b399 100644
--- a/libs/hwui/Layer.cpp
+++ b/libs/hwui/Layer.cpp
@@ -36,7 +36,7 @@ namespace android {
namespace uirenderer {
Layer::Layer(Type layerType, RenderState& renderState, uint32_t layerWidth, uint32_t layerHeight)
- : state(kState_Uncached)
+ : state(State::Uncached)
, caches(Caches::getInstance())
, renderState(renderState)
, texture(caches)