Searched defs:lockCanvas (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/
H A DSurfaceHolder.java31 * {@link #lockCanvas} and {@link Callback#surfaceCreated Callback.surfaceCreated()}.
49 * Exception that is thrown from {@link #lockCanvas} when called on a Surface
204 * lockCanvas(), for this reason, every pixel within the Surface area
224 public Canvas lockCanvas(); method in interface:SurfaceHolder
228 * Just like {@link #lockCanvas()} but allows specification of a dirty rectangle.
231 * the dirty rectangle will be preserved by the next call to lockCanvas().
233 * @see android.view.SurfaceHolder#lockCanvas
238 public Canvas lockCanvas(Rect dirty); method in interface:SurfaceHolder
244 * will remain unchanged when lockCanvas() is called again.
246 * @see #lockCanvas()
[all...]
H A DGraphicBuffer.java132 * and lockCanvas().</p>
139 * @see #lockCanvas(android.graphics.Rect)
143 public Canvas lockCanvas() { method in class:GraphicBuffer
144 return lockCanvas(null);
148 * Just like {@link #lockCanvas()} but allows specification of a dirty
158 * @see #lockCanvas()
162 public Canvas lockCanvas(Rect dirty) { method in class:GraphicBuffer
185 * @param canvas The Canvas previously returned by lockCanvas()
187 * @see #lockCanvas()
188 * @see #lockCanvas(androi
[all...]
H A DSurface.java217 * @return True if it holds a physical surface, so lockCanvas() will succeed.
283 public Canvas lockCanvas(Rect inOutDirty) method in class:Surface
303 * @param canvas The canvas previously obtained from {@link #lockCanvas}.
320 + "was previously returned by lockCanvas");
344 * Unlike {@link #lockCanvas(Rect)} this will return a hardware-accelerated
362 return mHwuiContext.lockCanvas(
533 * Exception thrown when a Canvas couldn't be locked with {@link Surface#lockCanvas}, or
627 Canvas lockCanvas(int width, int height) { method in class:Surface.HwuiContext
638 + "was previously returned by lockCanvas");
H A DTextureView.java100 * cannot use {@link #lockCanvas()} to draw onto the TextureView at the same
630 * and lockCanvas(), for this reason, every pixel within the Surface area
641 * @see #lockCanvas(android.graphics.Rect)
644 public Canvas lockCanvas() { method in class:TextureView
645 return lockCanvas(null);
649 * Just like {@link #lockCanvas()} but allows specification of a dirty
652 * to lockCanvas().
663 * @see #lockCanvas()
667 public Canvas lockCanvas(Rect dirty) { method in class:TextureView
688 * will remain unchanged when lockCanvas() i
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DBaseSurfaceHolder.java156 public Canvas lockCanvas() { method in class:BaseSurfaceHolder
160 public Canvas lockCanvas(Rect dirty) { method in class:BaseSurfaceHolder
184 c = mSurface.lockCanvas(dirty);

Completed in 898 milliseconds