Searched refs:picture (Results 101 - 125 of 322) sorted by relevance

1234567891011>>

/external/skia/dm/
H A DDMPDFTask.cpp35 SkPicture* picture,
39 , fPicture(SkRef(picture))
33 PDFTask(Reporter* reporter, TaskRunner* taskRunner, SkPicture* picture, SkString filename, RasterizePdfProc rasterizePdfProc) argument
H A DDMUtil.cpp42 void DrawPicture(SkPicture* picture, SkBitmap* bitmap) { argument
43 SkASSERT(picture != NULL);
46 canvas.drawPicture(picture);
/external/chromium_org/third_party/skia/tests/
H A DPictureTest.cpp309 // Return a picture with the bitmaps drawn at the specified positions.
594 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
595 REPORTER_ASSERT(reporter, !picture->willPlayBackBitmaps());
614 picture.reset(recorder.endRecording());
615 REPORTER_ASSERT(reporter, picture->willPlayBackBitmaps());
711 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
716 // Ensure that serializing an empty picture does not assert. Likewise only runs in debug mode.
720 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
722 picture->serialize(&stream);
768 SkAutoTUnref<SkPicture> picture(recorde
1191 check_save_state(skiatest::Reporter* reporter, SkPicture* picture, unsigned int numSaves, unsigned int numSaveLayers, unsigned int numRestores) argument
1235 check_balance(skiatest::Reporter* reporter, SkPicture* picture) argument
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dbrowser_options.css26 #account-picture-wrapper {
31 html[dir=rtl] #account-picture-wrapper {
35 #account-picture-control {
43 #account-picture {
49 #account-picture:disabled {
53 #change-picture-caption {
63 /* Width of #account-picture. */
67 #account-picture:not(:disabled):hover + #change-picture-caption,
68 #account-picture
[all...]
/external/chromium_org/skia/ext/
H A Dpixel_ref_utils_unittest.cc114 skia::RefPtr<SkPicture> picture = skia::AdoptRef(StopRecording(&recorder, canvas)); local
117 skia::PixelRefUtils::GatherDiscardablePixelRefs(picture.get(), &pixel_refs);
167 skia::RefPtr<SkPicture> picture = skia::AdoptRef(StopRecording(&recorder, canvas)); local
170 skia::PixelRefUtils::GatherDiscardablePixelRefs(picture.get(), &pixel_refs);
215 skia::RefPtr<SkPicture> picture = skia::AdoptRef(StopRecording(&recorder, canvas)); local
218 skia::PixelRefUtils::GatherDiscardablePixelRefs(picture.get(), &pixel_refs);
268 skia::RefPtr<SkPicture> picture = skia::AdoptRef(StopRecording(&recorder, canvas)); local
271 skia::PixelRefUtils::GatherDiscardablePixelRefs(picture.get(), &pixel_refs);
320 skia::RefPtr<SkPicture> picture = skia::AdoptRef(StopRecording(&recorder, canvas)); local
323 skia::PixelRefUtils::GatherDiscardablePixelRefs(picture
364 skia::RefPtr<SkPicture> picture = skia::AdoptRef(StopRecording(&recorder, canvas)); local
418 skia::RefPtr<SkPicture> picture = skia::AdoptRef(StopRecording(&recorder, canvas)); local
472 skia::RefPtr<SkPicture> picture = skia::AdoptRef(StopRecording(&recorder, canvas)); local
535 skia::RefPtr<SkPicture> picture = skia::AdoptRef(StopRecording(&recorder, canvas)); local
582 skia::RefPtr<SkPicture> picture = skia::AdoptRef(StopRecording(&recorder, canvas)); local
655 skia::RefPtr<SkPicture> picture = skia::AdoptRef(StopRecording(&recorder, canvas)); local
[all...]
/external/chromium_org/third_party/skia/tools/
H A Dbench_pictures_main.cpp52 " for each picture.");
183 // Since the old picture has been deleted, all pixels should be cleared.
196 SkAutoTUnref<SkPicture> picture(SkPicture::CreateFromStream(&inputStream, proc));
198 if (NULL == picture.get()) {
206 // Because the GPU preprocessing step relies on the in-memory picture
207 // statistics we need to rerecord the picture here
209 picture->playback(recorder.beginRecording(picture->cullRect().width(),
210 picture->cullRect().height(),
212 picture
[all...]
/external/skia/tools/
H A Drender_pdfs_main.cpp161 SkAutoTUnref<SkPicture> picture(SkPicture::CreateFromStream(&inputStream));
163 if (NULL == picture.get()) {
168 SkDebugf("exporting... [%i %i] %s\n", picture->width(), picture->height(),
177 renderer.init(picture, stream);
H A Dbench_playback.cpp25 DEFINE_int32(samples, 10, "Gather this many samples of each picture playback.");
67 SkAutoTUnref<SkPicture> picture(rerecord_with_tilegrid(src));
77 draw(*record, *picture, canvas.get());
86 draw(*record, *picture, canvas.get());
/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...]
/external/skia/tests/
H A DPictureTest.cpp311 // Return a picture with the bitmaps drawn at the specified positions.
676 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
681 // Ensure that serializing an empty picture does not assert. Likewise only runs in debug mode.
685 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
687 picture->serialize(&stream);
731 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
735 REPORTER_ASSERT(reporter, !picture->suitableForGpuRasterization(NULL, &reason));
756 picture.reset(recorder.endRecording());
758 REPORTER_ASSERT(reporter, !picture->suitableForGpuRasterization(NULL));
780 picture
962 check_save_state(skiatest::Reporter* reporter, SkPicture* picture, unsigned int numSaves, unsigned int numSaveLayers, unsigned int numRestores) argument
1003 check_balance(skiatest::Reporter* reporter, SkPicture* picture) argument
[all...]
/external/chromium_org/cc/resources/
H A Dpicture_pile.cc19 // picture that intersects the visible layer rect expanded by this distance
245 // In the picture below, the delta edge rect would be the bounding box of
273 // delta edge rect. In the picture below, |left_rect| would cover the
287 // and |bottom_rect|. In the picture below, neither the |top_rect| nor
305 // pixels. In the picture below the tiles in the delta edge rect have
355 // pile. This would be tiles {o,r,u,x,a,d,g,j} in the above picture.
437 // Invalidate drops the picture so the whole tile better be invalidated
495 scoped_refptr<Picture> picture; local
507 picture = Picture::Create(record_rect,
513 // This means that once a picture
568 const Picture* picture = it->second.GetPicture(); local
[all...]
/external/chromium_org/content/browser/compositor/
H A Dsoftware_output_device_x11.cc93 Picture picture = XRenderCreatePicture( local
101 picture, // src
112 XRenderFreePicture(display_, picture);
/external/chromium_org/ppapi/proxy/
H A Dvideo_decoder_resource.h59 virtual int32_t GetPicture(PP_VideoPicture* picture,
61 virtual void RecyclePicture(const PP_VideoPicture* picture) OVERRIDE;
97 // Struct to hold a picture received from the decoder.
135 void WriteNextPicture(PP_VideoPicture* picture);
161 // The maximum delay (in Decode calls) before we receive a picture. If we
162 // haven't received a picture from a Decode call after this many successive
163 // calls to Decode, then we will never receive a picture from the call.
/external/chromium_org/third_party/skia/bench/
H A DPictureNestingBench.cpp78 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
79 canvas->drawPicture(picture);
114 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
/external/chromium_org/third_party/skia/src/utils/
H A DSkDumpCanvas.cpp435 void SkDumpCanvas::onDrawPicture(const SkPicture* picture, const SkMatrix* matrix, argument
437 this->dump(kDrawPicture_Verb, NULL, "drawPicture(%p) %f:%f:%f:%f", picture,
438 picture->cullRect().fLeft, picture->cullRect().fTop,
439 picture->cullRect().fRight, picture->cullRect().fBottom);
441 this->INHERITED::onDrawPicture(picture, matrix, paint);
443 this->dump(kDrawPicture_Verb, NULL, "endPicture(%p) %f:%f:%f:%f", &picture,
444 picture->cullRect().fLeft, picture
[all...]
/external/skia/src/core/
H A DSkDevice.cpp133 void SkBaseDevice::EXPERIMENTAL_optimize(const SkPicture* picture) { argument
137 void SkBaseDevice::EXPERIMENTAL_purge(const SkPicture* picture) { argument
141 bool SkBaseDevice::EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture) { argument
142 // The base class doesn't perform any accelerated picture rendering
/external/chromium_org/content/common/gpu/media/
H A Dgpu_video_decode_accelerator.cc189 // Notify client that picture buffer is now unused.
200 const media::Picture& picture) {
203 // thread when a picture buffer is delivered the first time.
205 SetTextureCleared(picture);
209 DCHECK_EQ(0u, uncleared_textures_.count(picture.picture_buffer_id()));
214 picture.picture_buffer_id(),
215 picture.bitstream_buffer_id(),
216 picture.visible_rect()))) {
486 const media::Picture& picture) {
490 it = uncleared_textures_.find(picture
199 PictureReady( const media::Picture& picture) argument
485 SetTextureCleared( const media::Picture& picture) argument
[all...]
H A Dgpu_video_decode_accelerator.h50 virtual void PictureReady(const media::Picture& picture) OVERRIDE;
86 void SetTextureCleared(const media::Picture& picture);
133 // A map from picture buffer ID to TextureRef that have not been cleared.
H A Dandroid_video_decode_accelerator_unittest.cc15 #include "media/video/picture.h"
44 virtual void PictureReady(const media::Picture& picture) OVERRIDE {};
/external/chromium_org/third_party/skia/dm/
H A DDMPDFTask.cpp35 const SkPicture* picture,
39 , fPicture(SkRef(picture))
33 PDFTask(Reporter* reporter, TaskRunner* taskRunner, const SkPicture* picture, SkString filename, RasterizePdfProc rasterizePdfProc) argument
H A DDMQuiltTask.cpp10 DEFINE_bool(quilt, true, "If true, draw GM via a picture into a quilt of small tiles and compare.");
37 Tile(int x, int y, const SkPicture& picture, SkBitmap* quilt) argument
40 , fPicture(picture)
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DTestAwContentsClient.java317 void notifyCalled(Picture picture) { argument
318 mPicture = picture;
324 public void onNewPicture(Picture picture) { argument
325 mPictureListenerHelper.notifyCalled(picture);
/external/chromium_org/content/renderer/pepper/
H A Dppb_video_decoder_impl.h53 virtual void PictureReady(const media::Picture& picture) OVERRIDE;
/external/chromium_org/media/video/
H A Dvideo_decode_accelerator.h13 #include "media/video/picture.h"
42 // Interface for collaborating with picture interface to provide memory for
43 // output picture and blitting them. These callbacks will not be made unless
55 // Callback to dismiss picture buffer that was assigned earlier.
59 virtual void PictureReady(const Picture& picture) = 0;
98 // Assigns a set of texture-backed picture buffers to the video decoder.
100 // Ownership of each picture buffer remains with the client, but the client
105 // |buffers| contains the allocated picture buffers for the output.
109 // Sends picture buffers to be reused by the decoder. This needs to be called
111 // picture buffer
[all...]

Completed in 611 milliseconds

1234567891011>>