Home | History | Annotate | Download | only in graphics

Lines Matching refs:Choreographer

20 import android.view.Choreographer;
23 * Provider of timing pulse that uses SurfaceFlinger Vsync Choreographer for frame callbacks.
29 private final Choreographer mChoreographer;
32 mChoreographer = Choreographer.getSfInstance();
35 public SfVsyncFrameCallbackProvider(Choreographer choreographer) {
36 mChoreographer = choreographer;
40 public void postFrameCallback(Choreographer.FrameCallback callback) {
46 mChoreographer.postCallback(Choreographer.CALLBACK_COMMIT, runnable, null);
56 return Choreographer.getFrameDelay();
61 Choreographer.setFrameDelay(delay);