HomeSort by relevance Sort by last modified time
    Searched refs:picture (Results 126 - 150 of 355) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/skia/src/core/
SkDevice.cpp 133 void SkBaseDevice::EXPERIMENTAL_optimize(const SkPicture* picture) {
137 void SkBaseDevice::EXPERIMENTAL_purge(const SkPicture* picture) {
141 bool SkBaseDevice::EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture) {
142 // The base class doesn't perform any accelerated picture rendering
SkBBoxRecord.cpp 283 void SkBBoxRecord::onDrawPicture(const SkPicture* picture) {
284 if (picture->width() > 0 && picture->height() > 0 &&
285 this->transformBounds(SkRect::MakeWH(picture->width(), picture->height()), NULL)) {
286 this->INHERITED::onDrawPicture(picture);
  /external/skia/tools/
bench_playback.cpp 25 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());
bbh_shootout.cpp 59 * @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);
bench_pictures_main.cpp 53 " 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/chromium_org/cc/layers/
content_layer.cc 153 skia::RefPtr<SkPicture> picture = skia::AdoptRef(recorder.endRecording()); local
154 return picture;
picture_layer.cc 121 // the full page content must always be provided in the picture layer.
157 Picture::RecordingMode PictureLayer::RecordingMode() const {
160 return Picture::RECORD_NORMALLY;
162 return Picture::RECORD_WITH_SKRECORD;
165 return Picture::RECORD_NORMALLY;
184 // picture. For now we just paint a fresh one to get consistent results.
198 skia::RefPtr<SkPicture> picture = skia::AdoptRef(recorder.endRecording()); local
199 return picture;
  /hardware/ti/omap4xxx/camera/
AppCallbackNotifier.cpp 73 camera_memory_t* picture = NULL; local
103 picture = mRequestMemory(-1, jpeg_size + exif_section->Size, 1, NULL);
104 if (picture && picture->data) {
105 exif->saveJpeg((unsigned char*) picture->data, jpeg_size + exif_section->Size);
111 picture = mRequestMemory(-1, jpeg_size, 1, NULL);
112 if (picture && picture->data) {
113 memcpy(picture->data, encoded_mem->data, jpeg_size);
126 if(picture && (mNotifierState==AppCallbackNotifier::NOTIFIER_STARTED) &
692 camera_memory_t* picture = NULL; local
728 camera_memory_t* picture = NULL; local
    [all...]
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
TestAwContentsClient.java 7 import android.graphics.Picture;
284 private Picture mPicture;
286 public Picture getPicture() {
291 void notifyCalled(Picture picture) {
292 mPicture = picture;
298 public void onNewPicture(Picture picture) {
299 mPictureListenerHelper.notifyCalled(picture);
  /external/chromium_org/content/common/gpu/media/
android_video_decode_accelerator_unittest.cc 15 #include "media/video/picture.h"
44 virtual void PictureReady(const media::Picture& picture) OVERRIDE {};
gpu_video_decode_accelerator.cc 189 // 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()))) {
484 const media::Picture& picture) {
    [all...]
  /external/chromium_org/content/renderer/pepper/
ppb_video_decoder_impl.h 53 virtual void PictureReady(const media::Picture& picture) OVERRIDE;
  /external/chromium_org/third_party/skia/tools/
bbh_shootout.cpp 59 * @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);
bench_pictures_main.cpp 53 " 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/chromium_org/third_party/skia/tools/lua/
scrape.lua 25 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/lua/
scrape.lua 25 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/
picture_rescale.c 33 // Picture copying
91 int WebPPictureIsView(const WebPPicture* picture) {
92 if (picture == NULL) return 0;
93 if (picture->use_argb) {
94 return (picture->memory_argb_ == NULL);
96 return (picture->memory_ == NULL);
130 // Picture cropping
172 // Simple picture rescaler
webpenc.c 122 // Typical memory footprint (614x440 picture)
136 // Picture size (yuv): 419328
139 WebPPicture* const picture) {
142 const int mb_w = (picture->width + 15) >> 4;
143 const int mb_h = (picture->height + 15) >> 4;
185 printf("Picture size (yuv): %ld\n",
191 WebPEncodingSetError(picture, VP8_ENC_ERROR_OUT_OF_MEMORY);
219 enc->pic_ = picture;
  /external/webp/src/enc/
picture_rescale.c 33 // Picture copying
91 int WebPPictureIsView(const WebPPicture* picture) {
92 if (picture == NULL) return 0;
93 if (picture->use_argb) {
94 return (picture->memory_argb_ == NULL);
96 return (picture->memory_ == NULL);
130 // Picture cropping
172 // Simple picture rescaler
webpenc.c 122 // Typical memory footprint (614x440 picture)
136 // Picture size (yuv): 419328
139 WebPPicture* const picture) {
142 const int mb_w = (picture->width + 15) >> 4;
143 const int mb_h = (picture->height + 15) >> 4;
185 printf("Picture size (yuv): %ld\n",
191 WebPEncodingSetError(picture, VP8_ENC_ERROR_OUT_OF_MEMORY);
219 enc->pic_ = picture;
  /external/chromium_org/skia/ext/
pixel_ref_utils.cc 358 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);
  /external/chromium_org/third_party/skia/src/core/
SkBBoxRecord.cpp 283 void SkBBoxRecord::onDrawPicture(const SkPicture* picture) {
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/test/
fake_picture_pile_impl.cc 87 scoped_refptr<Picture> picture(Picture::Create(
88 bounds, &client_, tile_grid_info_, true, 0, Picture::RECORD_NORMALLY));
89 picture_map_[std::pair<int, int>(x, y)].SetPicture(picture);
  /external/chromium_org/third_party/skia/bench/
PicturePlaybackBench.cpp 44 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
49 picture->draw(canvas);
PictureRecordBench.cpp 62 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
128 SkAutoTUnref<SkPicture> picture(recorder.endRecording());

Completed in 605 milliseconds

1 2 3 4 56 7 8 91011>>