Searched refs:picture (Results 226 - 250 of 322) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/src/utils/debugger/
H A DSkDrawCommand.cpp508 SkDrawPictureCommand::SkDrawPictureCommand(const SkPicture* picture, argument
512 , fPicture(SkRef(picture))
527 picture->cullRect().fLeft, picture->cullRect().fTop,
528 picture->cullRect().fRight, picture->cullRect().fBottom);
/external/chromium_org/content/common/gpu/media/
H A Dandroid_video_decode_accelerator.cc15 #include "media/video/picture.h"
58 // buffer, or waiting for a picture when it knows enough complete input
219 // Don't have any picture buffer to send. Need to wait more.
279 // PictureBuffer's texture. This means that each picture's data is written
290 // So, we live with these two extra copies per picture :(
353 // Here, we copy |surface_texture_id_| to the picture buffer instead of
412 "Invalid picture buffer size was passed.",
424 "Invalid picture buffers were passed.",
540 const media::Picture& picture) {
541 client_->PictureReady(picture);
539 NotifyPictureReady( const media::Picture& picture) argument
[all...]
/external/chromium_org/skia/ext/
H A Danalysis_canvas_unittest.cc293 // Create a picture with 3 commands, last of which is non-solid.
309 skia::RefPtr<SkPicture> picture = skia::AdoptRef(recorder.endRecording()); local
311 // Draw the picture into the analysis canvas, using the canvas as a callback
314 picture->draw(&canvas, &canvas);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineFrameModel.js465 if (event.name === eventNames.Paint && event.args["data"]["layerId"] && event.picture)
656 this._event.picture.requestObject(onGotObject);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrLayerCache.cpp271 // In aggressive cleanup mode a picture info should only exist if
277 // If there is no picture info for this layer then all of its
317 // We need to find all the layers associated with 'picture' and remove them.
380 // Aggressively remove layers and, if now totally uncached, picture info
412 void GrLayerCache::trackPicture(const SkPicture* picture) { argument
417 picture->addDeletionListener(fDeletionListener);
H A DGrLayerCache.h20 // The layer cache listens for these messages to purge picture-related resources.
25 // GrPictureInfo stores the atlas plots used by a single picture. A single
83 // ID of the picture of which this layer is a part
85 // The range of commands in the picture this layer represents
90 // The CTM applied to this layer in the picture
206 // Setup to be notified when 'picture' is deleted
207 void trackPicture(const SkPicture* picture);
227 // We cache this information here (rather then, say, on the owning picture)
228 // because we want to be able to clean it up as needed (e.g., if a picture
H A DSkGpuDevice.cpp1822 void SkGpuDevice::EXPERIMENTAL_optimize(const SkPicture* picture) {
1825 if (picture->fData.get() && !picture->fData->suitableForLayerOptimization()) {
1831 const SkPicture::AccelData* existing = picture->EXPERIMENTAL_getAccelData(key);
1836 GPUOptimize(picture);
1838 fContext->getLayerCache()->trackPicture(picture);
1866 // Render the entire picture using new layers
/external/chromium_org/third_party/skia/src/utils/
H A DSkNWayCanvas.cpp276 void SkNWayCanvas::onDrawPicture(const SkPicture* picture, const SkMatrix* matrix, argument
280 iter->drawPicture(picture, matrix, paint);
/external/skia/src/core/
H A DSkCanvas.cpp2468 void SkCanvas::EXPERIMENTAL_optimize(const SkPicture* picture) { argument
2471 device->EXPERIMENTAL_optimize(picture);
2475 void SkCanvas::EXPERIMENTAL_purge(const SkPicture* picture) { argument
2478 device->EXPERIMENTAL_purge(picture);
2482 void SkCanvas::drawPicture(const SkPicture* picture) { argument
2483 if (NULL != picture) {
2484 this->onDrawPicture(picture);
2488 void SkCanvas::onDrawPicture(const SkPicture* picture) { argument
2489 SkASSERT(NULL != picture);
2494 // the picture itsel
[all...]
H A DSkPictureRecord.cpp195 clip starts out the size of the picture, which is often much larger
1413 void SkPictureRecord::onDrawPicture(const SkPicture* picture) { argument
1419 // op + picture index
1422 this->addPicture(picture);
1627 void SkPictureRecord::addPicture(const SkPicture* picture) { argument
1628 int index = fPictureRefs.find(picture);
1631 *fPictureRefs.append() = picture;
1632 picture->ref();
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
H A DNullContentsClient.java150 public void onNewPicture(Picture picture) { argument
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFEImage.cpp221 RefPtr<SkImageFilter> result = adoptRef(SkPictureImageFilter::Create(displayList->picture(), dstRect));
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_video.c419 struct pipe_picture_desc *picture)
426 struct pipe_picture_desc *picture,
431 struct pipe_mpeg12_picture_desc *desc = (struct pipe_mpeg12_picture_desc*)picture;
468 struct pipe_picture_desc *picture)
417 nouveau_decoder_begin_frame(struct pipe_video_decoder *decoder, struct pipe_video_buffer *target, struct pipe_picture_desc *picture) argument
424 nouveau_decoder_decode_macroblock(struct pipe_video_decoder *decoder, struct pipe_video_buffer *target, struct pipe_picture_desc *picture, const struct pipe_macroblock *pipe_mb, unsigned num_macroblocks) argument
466 nouveau_decoder_end_frame(struct pipe_video_decoder *decoder, struct pipe_video_buffer *target, struct pipe_picture_desc *picture) argument
/external/chromium_org/third_party/skia/include/core/
H A DSkDevice.h152 * picture of the current clip. (i.e. if you regionize all of the geometry
330 * Construct an acceleration object and attach it to 'picture'
332 virtual void EXPERIMENTAL_optimize(const SkPicture* picture);
337 * of 'picture'. If optimization data is available (due to an earlier
/external/chromium_org/third_party/skia/src/core/
H A DSkDevice.cpp203 void SkBaseDevice::EXPERIMENTAL_optimize(const SkPicture* picture) { argument
209 // The base class doesn't perform any accelerated picture rendering
H A DSkPictureRecord.cpp181 clip starts out the size of the picture, which is often much larger
1228 void SkPictureRecord::onDrawPicture(const SkPicture* picture, const SkMatrix* matrix, argument
1230 // op + picture index
1236 this->addPicture(picture);
1245 this->addPicture(picture);
1486 void SkPictureRecord::addPicture(const SkPicture* picture) { argument
1487 int index = fPictureRefs.find(picture);
1490 *fPictureRefs.append() = picture;
1491 picture->ref();
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_video.c419 struct pipe_picture_desc *picture)
426 struct pipe_picture_desc *picture,
431 struct pipe_mpeg12_picture_desc *desc = (struct pipe_mpeg12_picture_desc*)picture;
468 struct pipe_picture_desc *picture)
417 nouveau_decoder_begin_frame(struct pipe_video_decoder *decoder, struct pipe_video_buffer *target, struct pipe_picture_desc *picture) argument
424 nouveau_decoder_decode_macroblock(struct pipe_video_decoder *decoder, struct pipe_video_buffer *target, struct pipe_picture_desc *picture, const struct pipe_macroblock *pipe_mb, unsigned num_macroblocks) argument
466 nouveau_decoder_end_frame(struct pipe_video_decoder *decoder, struct pipe_video_buffer *target, struct pipe_picture_desc *picture) argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DWebViewTest.java87 public void onNewPicture(WebView view, Picture picture) {
/external/skia/src/utils/debugger/
H A DSkDrawCommand.cpp505 SkDrawPictureCommand::SkDrawPictureCommand(const SkPicture* picture) argument
507 , fPicture(SkRef(picture)) {
509 temp->appendf("SkPicture: W: %d H: %d", picture->width(), picture->height());
/external/chromium_org/third_party/libwebp/
H A Dlibwebp_enc.target.darwin-arm.mk34 third_party/libwebp/enc/picture.c \
H A Dlibwebp_enc.target.darwin-arm64.mk34 third_party/libwebp/enc/picture.c \
H A Dlibwebp_enc.target.darwin-mips.mk34 third_party/libwebp/enc/picture.c \
H A Dlibwebp_enc.target.darwin-mips64.mk34 third_party/libwebp/enc/picture.c \
H A Dlibwebp_enc.target.darwin-x86.mk34 third_party/libwebp/enc/picture.c \
H A Dlibwebp_enc.target.darwin-x86_64.mk34 third_party/libwebp/enc/picture.c \

Completed in 788 milliseconds

1234567891011>>