Searched refs:picture (Results 1 - 25 of 45) sorted by relevance

12

/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DPicturePileLayerContent.cpp24 SkPicture picture;
25 draw(picture.beginRecording(width(), height(),
27 picture.endRecording();
28 picture.serialize(stream);
H A DPictureLayerContent.h35 PictureLayerContent(SkPicture* picture);
H A DPictureLayerContent.cpp9 PictureLayerContent::PictureLayerContent(SkPicture* picture) argument
10 : m_picture(picture)
77 // no content to draw, discard picture so UI / tile generation
H A DLayerAndroid.h413 LayerAndroid(SkPicture* picture) :
414 m_recordingPicture(picture), // does not assign ownership
417 SkPicture* picture() const { return m_recordingPicture; }
/external/webkit/Source/WebKit/android/jni/
H A DPicturePile.h60 SkPicture* picture; member in class:WebCore::PictureContainer
66 : picture(0)
72 : picture(other.picture)
77 SkSafeRef(picture);
82 SkSafeUnref(picture);
90 PicturePile(SkPicture* picture);
H A DPicturePile.cpp67 PicturePile::PicturePile(SkPicture* picture) argument
69 m_size = IntSize(picture->width(), picture->height());
71 pc.picture = picture;
105 if (pc.picture && !intersection.isEmpty()) {
111 canvas->drawPicture(*pc.picture);
173 SkPicture* picture = new SkPicture(); local
174 SkCanvas* canvas = picture->beginRecording(pc.area.width(), pc.area.height(),
198 ALOGV("painting picture
[all...]
H A DViewStateSerializer.cpp96 SkPicture* picture = new SkPicture(stream); local
97 PictureLayerContent* content = new PictureLayerContent(picture);
107 SkSafeUnref(picture);
449 SkPicture* picture = new SkPicture(stream); local
450 PictureLayerContent* content = new PictureLayerContent(picture);
453 SkSafeUnref(picture);
/external/webp/include/webp/
H A Dencode.h67 int show_compressed; // if true, export the compressed picture back.
76 // of source picture. These presets are used when calling WebPConfigPreset().
79 WEBP_PRESET_PICTURE, // digital picture, like portrait, inner shot
134 // data/data_size is the segment of data to write, and 'picture' is for
135 // reference (and so one can make use of picture->custom_ptr).
137 const WebPPicture* const picture);
161 VP8_ENC_ERROR_BAD_DIMENSION, // picture has invalid width/height
205 // 'picture' object.
206 static inline int WebPPictureInit(WebPPicture* const picture) { argument
207 return WebPPictureInitInternal(picture, WEBP_ENCODER_ABI_VERSIO
217 WEBP_EXTERN(int) WebPPictureAlloc(WebPPicture* const picture); variable
221 WEBP_EXTERN(void) WebPPictureFree(WebPPicture* const picture); variable
[all...]
/external/webp/src/enc/
H A Dpicture.c24 int WebPPictureAlloc(WebPPicture* const picture) { argument
25 if (picture) {
26 const WebPEncCSP uv_csp = picture->colorspace & WEBP_CSP_UV_MASK;
27 const int has_alpha = picture->colorspace & WEBP_CSP_ALPHA_BIT;
28 const int width = picture->width;
29 const int height = picture->height;
74 picture->y_stride = y_stride;
75 picture->uv_stride = uv_stride;
76 picture->a_stride = a_stride;
77 picture
115 WebPPictureFree(WebPPicture* const picture) argument
390 WebPMemoryWrite(const uint8_t* data, size_t data_size, const WebPPicture* const picture) argument
477 MakeGray(WebPPicture* const picture) argument
486 Import(WebPPicture* const picture, const uint8_t* const rgb, int rgb_stride, int step, int swap_rb, int import_alpha) argument
568 WebPPictureImportRGB(WebPPicture* const picture, const uint8_t* const rgb, int rgb_stride) argument
575 WebPPictureImportBGR(WebPPicture* const picture, const uint8_t* const rgb, int rgb_stride) argument
582 WebPPictureImportRGBA(WebPPicture* const picture, const uint8_t* const rgba, int rgba_stride) argument
589 WebPPictureImportBGRA(WebPPicture* const picture, const uint8_t* const rgba, int rgba_stride) argument
[all...]
H A Dwebpenc.c42 const WebPPicture* const picture) {
46 (void)picture;
50 int WebPPictureInitInternal(WebPPicture* const picture, int version) { argument
54 if (picture) {
55 memset(picture, 0, sizeof(*picture));
56 picture->writer = DummyWriter;
57 WebPEncodingSetError(picture, VP8_ENC_OK);
125 // Typical memory footprint (768x510 picture)
144 WebPPicture* const picture) {
41 DummyWriter(const uint8_t* data, size_t data_size, const WebPPicture* const picture) argument
143 InitEncoder(const WebPConfig* const config, WebPPicture* const picture) argument
[all...]
H A DAndroid.mk30 picture.c \
/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DGraphicsOperationCollection.h60 GraphicsOperationCollection* picture() { return m_graphicsOperationCollection; } function in class:WebCore::AutoGraphicsOperationCollection
H A DPlatformGraphicsContextRecording.h36 PlatformGraphicsContextRecording(GraphicsOperationCollection* picture);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DInspectorCanvas.h43 InspectorCanvas(SkBounder* bounder, SkPicture* picture) argument
44 : m_picture(picture)
/external/skia/bench/
H A DPicturePlaybackBench.cpp29 N = SkBENCHLOOP(1000), // number of times to playback the picture
41 SkPicture picture; local
43 SkCanvas* pCanvas = picture.beginRecording(PICTURE_WIDTH, PICTURE_HEIGHT);
45 picture.endRecording();
50 picture.draw(canvas);
/external/chromium/chrome/browser/resources/options/chromeos/
H A Daccounts_user_list.js42 user.picture = this.user_pictures_[user.email];
160 if (this.user.picture) {
161 icon.src = this.user.picture;
/external/flac/libFLAC/
H A Dmetadata_object.c489 object->data.picture.type = FLAC__STREAM_METADATA_PICTURE_TYPE_OTHER;
490 object->data.picture.mime_type = 0;
491 object->data.picture.description = 0;
493 object->data.picture.width = 0;
494 object->data.picture.height = 0;
495 object->data.picture.depth = 0;
496 object->data.picture.colors = 0;
497 object->data.picture.data_length = 0;
498 object->data.picture.data = 0;
501 if(!copy_cstring_(&object->data.picture
[all...]
H A Dstream_encoder_framing.c183 if(!FLAC__bitwriter_write_raw_uint32(bw, metadata->data.picture.type, FLAC__STREAM_METADATA_PICTURE_TYPE_LEN))
185 len = strlen(metadata->data.picture.mime_type);
188 if(!FLAC__bitwriter_write_byte_block(bw, (const FLAC__byte*)metadata->data.picture.mime_type, len))
190 len = strlen((const char *)metadata->data.picture.description);
193 if(!FLAC__bitwriter_write_byte_block(bw, metadata->data.picture.description, len))
195 if(!FLAC__bitwriter_write_raw_uint32(bw, metadata->data.picture.width, FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN))
197 if(!FLAC__bitwriter_write_raw_uint32(bw, metadata->data.picture.height, FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN))
199 if(!FLAC__bitwriter_write_raw_uint32(bw, metadata->data.picture.depth, FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN))
201 if(!FLAC__bitwriter_write_raw_uint32(bw, metadata->data.picture.colors, FLAC__STREAM_METADATA_PICTURE_COLORS_LEN))
203 if(!FLAC__bitwriter_write_raw_uint32(bw, metadata->data.picture
[all...]
H A Dformat.c495 FLAC_API FLAC__bool FLAC__format_picture_is_legal(const FLAC__StreamMetadata_Picture *picture, const char **violation) argument
500 for(p = picture->mime_type; *p; p++) {
507 for(b = picture->description; *b; ) {
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsLayerAndroid.cpp751 SkPicture* picture = new SkPicture(); local
752 SkCanvas* canvas = picture->beginRecording(layerBounds.width(),
767 picture->endRecording();
770 PictureLayerContent* layerContent = new PictureLayerContent(picture);
774 SkSafeUnref(picture);
791 // picture.
833 SkPicture* picture = new SkPicture(); local
834 SkCanvas* canvas = picture->beginRecording(rect.width(), rect.height(), 0);
836 picture->endRecording();
837 SkSafeUnref(picture);
[all...]
/external/skia/src/utils/
H A DSkDumpCanvas.cpp367 void SkDumpCanvas::drawPicture(SkPicture& picture) { argument
368 this->dump(kDrawPicture_Verb, NULL, "drawPicture(%p) %d:%d", &picture,
369 picture.width(), picture.height());
371 this->INHERITED::drawPicture(picture);
373 this->dump(kDrawPicture_Verb, NULL, "endPicture(%p) %d:%d", &picture,
374 picture.width(), picture.height());
H A DSkProxyCanvas.cpp132 void SkProxyCanvas::drawPicture(SkPicture& picture) { argument
133 fProxy->drawPicture(picture);
/external/flac/include/FLAC/
H A Dformat.h768 /**< The kind of picture stored. */
773 * use picture data of MIME type \c image/jpeg or \c image/png. A
774 * MIME type of '-->' is also allowed, in which case the picture
798 /**< For indexed palettes (like GIF), picture's number of colors (the
803 /**< Length of binary picture data in bytes. */
806 /**< Binary picture data. */
850 FLAC__StreamMetadata_Picture picture; member in union:__anon4892::__anon4893
986 /** Check picture data to see if it conforms to the FLAC specification.
990 * \param picture A pointer to existing picture dat
[all...]
/external/skia/src/core/
H A DSkPictureRecord.h61 virtual void drawPicture(SkPicture& picture) SK_OVERRIDE;
120 void addPicture(SkPicture& picture);
H A DSkPicturePlayback.h142 void dumpPicture(const SkPicture& picture) const;

Completed in 205 milliseconds

12