Searched refs:picture (Results 126 - 150 of 322) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DSourceGraphic.cpp76 return adoptRef(SkPictureImageFilter::Create(m_displayList->picture(), m_displayList->bounds()));
/external/chromium_org/third_party/skia/tests/
H A DRecordingXfermodeTest.cpp125 SkAutoTDelete<SkPicture> picture(recorder.endRecording());
130 picture->playback(&replayCanvas);
165 SkAutoTDelete<SkPicture> picture(recorder.endRecording());
170 picture->playback(&replayCanvas);
/external/chromium_org/third_party/skia/tools/
H A Dbbh_shootout.cpp58 * @param pic The picture to draw to the renderer.
96 SkPicture* picture = pic_from_path(path); local
97 if (NULL == picture) {
98 SkDebugf("Couldn't create picture. Ignoring path: %s\n", path);
115 picture, FLAGS_playback, &playbackTimer);
127 picture, FLAGS_record, &recordTimer);
/external/chromium_org/third_party/skia/tools/lua/
H A Dscrape.lua25 startcanvas() is called at the start of each picture file, passing the
33 when a given picture is done, we call endcanvas(canvas, fileName)
/external/skia/tools/
H A Dbbh_shootout.cpp59 * @param pic The picture to draw to the renderer.
97 SkPicture* picture = pic_from_path(path); local
98 if (NULL == picture) {
99 SkDebugf("Couldn't create picture. Ignoring path: %s\n", path);
111 picture, FLAGS_playback, &playbackTimer);
118 picture, FLAGS_record, &recordTimer);
H A Dbench_pictures_main.cpp53 " for each picture.");
171 // Since the old picture has been deleted, all pixels should be cleared.
184 SkAutoTUnref<SkPicture> picture(SkPicture::CreateFromStream(&inputStream, proc));
186 if (NULL == picture.get()) {
195 gWriter.bench(filename.c_str(), picture->width(), picture->height());
197 benchmark.run(picture);
/external/skia/tools/lua/
H A Dscrape.lua25 startcanvas() is called at the start of each picture file, passing the
33 when a given picture is done, we call endcanvas(canvas, fileName)
/external/chromium_org/third_party/libwebp/enc/
H A Dpicture_rescale.c91 int WebPPictureIsView(const WebPPicture* picture) { argument
92 if (picture == NULL) return 0;
93 if (picture->use_argb) {
94 return (picture->memory_argb_ == NULL);
96 return (picture->memory_ == NULL);
172 // Simple picture rescaler
H A Dwebpenc.c122 // Typical memory footprint (614x440 picture)
139 WebPPicture* const picture) {
142 const int mb_w = (picture->width + 15) >> 4;
143 const int mb_h = (picture->height + 15) >> 4;
191 WebPEncodingSetError(picture, VP8_ENC_ERROR_OUT_OF_MEMORY);
219 enc->pic_ = picture;
138 InitVP8Encoder(const WebPConfig* const config, WebPPicture* const picture) argument
/external/webp/src/enc/
H A Dpicture_rescale.c91 int WebPPictureIsView(const WebPPicture* picture) { argument
92 if (picture == NULL) return 0;
93 if (picture->use_argb) {
94 return (picture->memory_argb_ == NULL);
96 return (picture->memory_ == NULL);
172 // Simple picture rescaler
H A Dwebpenc.c122 // Typical memory footprint (614x440 picture)
139 WebPPicture* const picture) {
142 const int mb_w = (picture->width + 15) >> 4;
143 const int mb_h = (picture->height + 15) >> 4;
191 WebPEncodingSetError(picture, VP8_ENC_ERROR_OUT_OF_MEMORY);
219 enc->pic_ = picture;
138 InitVP8Encoder(const WebPConfig* const config, WebPPicture* const picture) argument
/external/chromium_org/content/renderer/media/
H A Drtc_video_decoder.cc338 NOTREACHED() << "Missing picture buffer: " << id;
354 void RTCVideoDecoder::PictureReady(const media::Picture& picture) { argument
359 assigned_picture_buffers_.find(picture.picture_buffer_id());
361 NOTREACHED() << "Missing picture buffer: " << picture.picture_buffer_id();
367 // Validate picture rectangle from GPU.
368 if (picture.visible_rect().IsEmpty() ||
369 !gfx::Rect(pb.size()).Contains(picture.visible_rect())) {
370 NOTREACHED() << "Invalid picture size from VDA: "
371 << picture
435 CreateVideoFrame( const media::Picture& picture, const media::PictureBuffer& pb, uint32_t timestamp) argument
[all...]
/external/chromium_org/media/filters/
H A Dgpu_video_decoder.cc368 NOTREACHED() << "Missing picture buffer: " << id;
412 void GpuVideoDecoder::PictureReady(const media::Picture& picture) { argument
417 assigned_picture_buffers_.find(picture.picture_buffer_id());
419 NOTREACHED() << "Missing picture buffer: " << picture.picture_buffer_id();
425 // Validate picture rectangle from GPU. This is for sanity/security check
427 if (picture.visible_rect().IsEmpty() ||
428 !gfx::Rect(pb.size()).Contains(picture.visible_rect())) {
429 NOTREACHED() << "Invalid picture size from VDA: "
430 << picture
[all...]
/external/chromium_org/skia/ext/
H A Dpixel_ref_utils.cc358 SkPicture* picture,
364 empty_bitmap.setInfo(SkImageInfo::MakeUnknown(picture->width(), picture->height()));
369 canvas.clipRect(SkRect::MakeWH(picture->width(), picture->height()),
372 canvas.drawPicture(picture);
357 GatherDiscardablePixelRefs( SkPicture* picture, std::vector<PositionPixelRef>* pixel_refs) argument
/external/skia/src/core/
H A DSkBBoxRecord.cpp283 void SkBBoxRecord::onDrawPicture(const SkPicture* picture) { argument
284 if (picture->width() > 0 && picture->height() > 0 &&
285 this->transformBounds(SkRect::MakeWH(picture->width(), picture->height()), NULL)) {
286 this->INHERITED::onDrawPicture(picture);
/external/chromium_org/cc/layers/
H A Dcontent_layer.cc155 skia::RefPtr<SkPicture> picture = skia::AdoptRef(recorder.endRecording()); local
156 return picture;
H A Dpicture_layer.cc115 // the full page content must always be provided in the picture layer.
179 // picture. For now we just paint a fresh one to get consistent results.
191 skia::RefPtr<SkPicture> picture = skia::AdoptRef(recorder.endRecording()); local
192 return picture;
/external/chromium_org/cc/test/
H A Dfake_picture_pile_impl.cc86 scoped_refptr<Picture> picture(Picture::Create(
88 picture_map_[std::pair<int, int>(x, y)].SetPicture(picture);
/external/chromium_org/third_party/skia/bench/
H A DPicturePlaybackBench.cpp44 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
49 picture->playback(canvas);
H A DPictureRecordBench.cpp62 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
128 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
/external/chromium_org/third_party/skia/dm/
H A DDMUtil.cpp60 void DrawPicture(const SkPicture& picture, SkBitmap* bitmap) { argument
63 canvas.drawPicture(&picture);
/external/chromium_org/third_party/skia/gm/
H A Dpictureshadertile.cpp66 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
78 fShaders[i].reset(SkShader::CreatePictureShader(picture,
/external/skia/bench/
H A DPicturePlaybackBench.cpp44 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
49 picture->draw(canvas);
H A DPictureRecordBench.cpp62 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
128 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
/external/skia/src/utils/
H A DSkDumpCanvas.cpp425 void SkDumpCanvas::onDrawPicture(const SkPicture* picture) { argument
426 this->dump(kDrawPicture_Verb, NULL, "drawPicture(%p) %d:%d", picture,
427 picture->width(), picture->height());
429 this->INHERITED::onDrawPicture(picture);
431 this->dump(kDrawPicture_Verb, NULL, "endPicture(%p) %d:%d", &picture,
432 picture->width(), picture->height());

Completed in 8897 milliseconds

1234567891011>>