diff options
author | John Reck <jreck@google.com> | 2014-05-07 21:48:19 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-07 21:48:20 +0000 |
commit | ef27453cf71e331e4076df5e5c665b06d5c3e050 (patch) | |
tree | aebb0a1e9f798f064ed92bedb7865cd10dfbe118 /core/java/android/view/HardwareRenderer.java | |
parent | 4f0128fb8fc1e56ead8ba7bccd9fab2ff9c3b29a (diff) | |
parent | 832b151465ed81c43e59891d5eebe62128b21fbb (diff) | |
download | frameworks_base-ef27453cf71e331e4076df5e5c665b06d5c3e050.zip frameworks_base-ef27453cf71e331e4076df5e5c665b06d5c3e050.tar.gz frameworks_base-ef27453cf71e331e4076df5e5c665b06d5c3e050.tar.bz2 |
Merge "Cleanup attachFunctor"
Diffstat (limited to 'core/java/android/view/HardwareRenderer.java')
-rw-r--r-- | core/java/android/view/HardwareRenderer.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/core/java/android/view/HardwareRenderer.java b/core/java/android/view/HardwareRenderer.java index 15cd14d..e366697 100644 --- a/core/java/android/view/HardwareRenderer.java +++ b/core/java/android/view/HardwareRenderer.java @@ -423,28 +423,6 @@ public abstract class HardwareRenderer { abstract boolean copyLayerInto(HardwareLayer layer, Bitmap bitmap); /** - * Detaches the specified functor from the current functor execution queue. - * - * @param functor The native functor to remove from the execution queue. - * - * @see HardwareCanvas#callDrawGLFunction(int) - * @see #attachFunctor(android.view.View.AttachInfo, long) - */ - abstract void detachFunctor(long functor); - - /** - * Schedules the specified functor in the functors execution queue. - * - * @param attachInfo AttachInfo tied to this renderer. - * @param functor The native functor to insert in the execution queue. - * - * @see HardwareCanvas#callDrawGLFunction(int) - * @see #detachFunctor(long) - * - */ - abstract void attachFunctor(View.AttachInfo attachInfo, long functor); - - /** * Schedules the functor for execution in either kModeProcess or * kModeProcessNoContext, depending on whether or not there is an EGLContext. * |