Give up on caching the computed animation state as it keeps causing bugs
where we don't correctly re-initialize it when starting in various states.

Change-Id: Id648c7bba5d8b55a32b5b33363ddf6e74701df87
diff --git a/res/raw/allapps.rs b/res/raw/allapps.rs
index 4f6e284..312800f 100644
--- a/res/raw/allapps.rs
+++ b/res/raw/allapps.rs
@@ -370,9 +370,9 @@
         } else {
             g_Zoom += dz;
         }
-        g_Animation = powf(1-g_Zoom, 3);
         updateReadback();
     }
+    g_Animation = powf(1-g_Zoom, 3);
 
     // Set clear value to dim the background based on the zoom position.
     if ((g_Zoom < 0.001f) && (state->zoomTarget < 0.001f) && !g_SpecialHWWar) {