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

/frameworks/base/core/jni/android/graphics/
H A DPicture.h36 class Picture { class in namespace:android
38 explicit Picture(const Picture* src = NULL);
48 static Picture* CreateFromStream(SkStream* stream);
H A DPicture.cpp18 #include "Picture.h"
24 Picture::Picture(const Picture* src) { function in class:android::Picture
39 Canvas* Picture::beginRecording(int width, int height) {
52 void Picture::endRecording() {
59 int Picture::width() const {
68 int Picture::height() const {
77 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),
30 public class Picture { class
39 public Picture() { method in class:Picture
48 public Picture(Picture src) { method in class:Picture
52 private Picture(long nativePicture) { method in class:Picture
85 * be used anymore. This is automatically called if {@link Picture#draw}
86 * or {@link Canvas#drawPicture(Picture)} i
[all...]

Completed in 203 milliseconds