diff options
author | 2015-08-21 23:08:39 +0000 | |
---|---|---|
committer | 2015-08-21 23:08:39 +0000 | |
commit | 71c10ee8be20be968b19a88f771077933f7cc155 (patch) | |
tree | 8ac555739ab17383aa881e313c561f778ff357b8 /libs/hwui/Layer.cpp | |
parent | d7ba5795bed76d2b56be2ac2f1d548b90df162d7 (diff) | |
parent | b9ce116dac378b4cf4490f265dcbd5704a1dd43c (diff) |
Merge "Switch several enums to enum classes"
Diffstat (limited to 'libs/hwui/Layer.cpp')
-rw-r--r-- | libs/hwui/Layer.cpp | 2 |
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) |