Searched defs:Picture (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DPicture.h37 class Picture { class in namespace:android
39 explicit Picture(const Picture* src = NULL);
49 static Picture* CreateFromStream(SkStream* stream);
H A DPicture.cpp17 #include "Picture.h"
25 Picture::Picture(const Picture* src) { function in class:android::Picture
40 Canvas* Picture::beginRecording(int width, int height) {
49 void Picture::endRecording() {
56 int Picture::width() const {
60 int Picture::height() const {
64 Picture* Picture
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPicture.java23 * A Picture records drawing calls (via the canvas returned by beginRecording)
24 * and can then play them back into Canvas (via {@link Picture#draw(Canvas)} or
25 * {@link Canvas#drawPicture(Picture)}).For most content (e.g. text, lines, rectangles),
33 public class Picture { class
43 public Picture() { method in class:Picture
52 public Picture(Picture src) { method in class:Picture
56 private Picture(long nativePicture) { method in class:Picture
83 throw new IllegalStateException("Picture already recording, must call #endRecording()");
94 * be used anymore. This is automatically called if {@link Picture#dra
[all...]

Completed in 71 milliseconds