Home | History | Annotate | Download | only in graphics

Lines Matching defs:Picture

18 #include "Picture.h"
24 Picture::Picture(const Picture* src) {
39 Canvas* Picture::beginRecording(int width, int height) {
47 // Canvas.java and our picture can both be owners
52 void Picture::endRecording() {
59 int Picture::width() const {
68 int Picture::height() const {
77 Picture* Picture::CreateFromStream(SkStream* stream) {
78 Picture* newPict = new Picture;
89 void Picture::serialize(SkWStream* stream) const {
101 void Picture::draw(Canvas* canvas) {
112 SkPicture* Picture::makePartialCopy() const {