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
41 Canvas* Picture::beginRecording(int width, int height) {
50 void Picture::endRecording() {
58 int Picture::width() const {
63 int Picture::height() const {
68 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
42 public Picture() { method in class:Picture
51 public Picture(Picture src) { method in class:Picture
55 private Picture(long nativePicture) { method in class:Picture
89 * be used anymore. This is automatically called if {@link Picture#draw}
90 * or {@link Canvas#drawPicture(Picture)} i
[all...]

Completed in 761 milliseconds