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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/skia/src/utils/
SkDumpCanvas.cpp 425 void SkDumpCanvas::onDrawPicture(const SkPicture* picture) {
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());
  /external/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());
  /external/skia/src/utils/
SkDumpCanvas.cpp 425 void SkDumpCanvas::onDrawPicture(const SkPicture* picture) {
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());
  /external/chromium_org/cc/resources/
picture_pile_base.h 17 #include "cc/resources/picture.h"
71 void SetPicture(scoped_refptr<Picture> picture);
72 Picture* GetPicture() const;
83 scoped_refptr<Picture> picture_;
102 // A picture pile is a tiled set of pictures. The picture map is a map of tile
103 // indices to picture infos.
  /external/chromium_org/content/common/gpu/media/
android_video_decode_accelerator.h 64 // Sends the current picture on the surface to the client.
80 // Requests picture buffers from the client.
83 // Notifies the client about the availability of a picture.
84 void NotifyPictureReady(const media::Picture& picture);
115 // This map maintains the picture buffers passed to the client for decoding.
116 // The key is the picture buffer id.
120 // This keeps the free picture buffer ids which can be used for sending
124 // Picture buffer ids which have been dismissed and not yet re-assigned. Used
138 // Set to true after requesting picture buffers to the client
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContextRecorder.cpp 70 GraphicsContextSnapshot::GraphicsContextSnapshot(PassRefPtr<SkPicture> picture, bool isCertainlyOpaque)
71 : m_picture(picture)
80 explicit SnapshotPlayer(PassRefPtr<SkPicture> picture, SkCanvas* canvas)
81 : m_picture(picture)
100 FragmentSnapshotPlayer(PassRefPtr<SkPicture> picture, SkCanvas* canvas)
101 : SnapshotPlayer(picture, canvas)
131 ProfilingSnapshotPlayer(PassRefPtr<SkPicture> picture, SkCanvas* canvas)
132 : SnapshotPlayer(picture, canvas)
382 void onDrawPicture(const SkPicture* picture) OVERRIDE
384 addItemWithParams("drawPicture")->setObject("picture", objectForSkPicture(*picture))
991 RefPtr<SkPicture> picture = adoptRef(SkPicture::CreateFromStream(&stream, decodeBitmap)); local
    [all...]
  /external/chromium_org/third_party/skia/debugger/
SkDebugger.h 67 void loadPicture(SkPicture* picture);
  /external/chromium_org/third_party/skia/tools/lua/
scrape_dashing.lua 26 startcanvas() is called at the start of each picture file, passing the
34 when a given picture is done, we call endcanvas(canvas, fileName)
  /external/skia/debugger/
SkDebugger.h 67 void loadPicture(SkPicture* picture);
  /external/skia/tools/lua/
scrape_dashing.lua 26 startcanvas() is called at the start of each picture file, passing the
34 when a given picture is done, we call endcanvas(canvas, fileName)
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContentsClientCallbackHelper.java 7 import android.graphics.Picture;
128 Picture picture = null; local
130 if (msg.obj != null) picture = (Picture) ((Callable<?>) msg.obj).call();
132 throw new RuntimeException("Error getting picture", e);
134 mContentsClient.onNewPicture(picture);
182 public void postOnNewPicture(Callable<Picture> pictureProvider) {
  /external/chromium_org/content/renderer/pepper/
ppb_video_decoder_impl.cc 21 #include "media/video/picture.h"
249 void PPB_VideoDecoder_Impl::PictureReady(const media::Picture& picture) {
255 output.picture_buffer_id = picture.picture_buffer_id();
256 output.bitstream_buffer_id = picture.bitstream_buffer_id();
  /external/chromium_org/media/tools/player_x11/
x11_video_renderer.cc 32 // Returns the picture format for ARGB.
125 // creats a picture from the pixmap and composite the picture over
126 // the picture represending the window.
157 // Creates the picture representing the pixmap.
158 unsigned long picture = XRenderCreatePicture( local
161 // Composite the picture over the picture representing the window.
162 XRenderComposite(display_, PictOpSrc, picture, 0,
166 XRenderFreePicture(display_, picture);
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkDevice.h 177 * picture of the current clip. (i.e. if you regionize all of the geometry
345 * Construct an acceleration object and attach it to 'picture'
347 virtual void EXPERIMENTAL_optimize(const SkPicture* picture);
351 * Purge all discardable optimization information for 'picture'. If
352 * picture is NULL then purge discardable information for all pictures.
354 virtual void EXPERIMENTAL_purge(const SkPicture* picture);
359 * of 'picture'. If optimization data is available (due to an earlier
366 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture);
  /external/chromium_org/third_party/skia/include/gpu/
SkGpuDevice.h 144 virtual void EXPERIMENTAL_optimize(const SkPicture* picture) SK_OVERRIDE;
146 virtual void EXPERIMENTAL_purge(const SkPicture* picture) SK_OVERRIDE;
148 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture) SK_OVERRIDE;
  /external/chromium_org/third_party/skia/src/utils/debugger/
SkDebugCanvas.h 43 void setPicture(SkPicture* picture) { fPicture = picture; }
258 virtual void onDrawPicture(const SkPicture* picture) SK_OVERRIDE;
  /external/skia/include/core/
SkDevice.h 177 * picture of the current clip. (i.e. if you regionize all of the geometry
345 * Construct an acceleration object and attach it to 'picture'
347 virtual void EXPERIMENTAL_optimize(const SkPicture* picture);
351 * Purge all discardable optimization information for 'picture'. If
352 * picture is NULL then purge discardable information for all pictures.
354 virtual void EXPERIMENTAL_purge(const SkPicture* picture);
359 * of 'picture'. If optimization data is available (due to an earlier
366 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture);
  /external/skia/include/gpu/
SkGpuDevice.h 144 virtual void EXPERIMENTAL_optimize(const SkPicture* picture) SK_OVERRIDE;
146 virtual void EXPERIMENTAL_purge(const SkPicture* picture) SK_OVERRIDE;
148 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* picture) SK_OVERRIDE;
  /external/skia/src/utils/debugger/
SkDebugCanvas.h 43 void setPicture(SkPicture* picture) { fPicture = picture; }
258 virtual void onDrawPicture(const SkPicture* picture) SK_OVERRIDE;
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/pos/
AutoFocusStateMachine.java 200 * Lock the lens from moving. Typically used before taking a picture.
240 * Unlock the lens, allowing it to move again. Typically used after taking a picture.
325 * the lens before taking a picture. Once a picture is taken, use {@link #unlockAutoFocus}
332 * @param picture True for still capture AF, false for video AF.
334 public synchronized void setPassiveAutoFocus(boolean picture,
336 if (VERBOSE_LOGGING) Log.v(TAG, "setPassiveAutoFocus - picture " + picture);
338 if (picture) {
  /frameworks/base/graphics/java/android/graphics/
Canvas.java     [all...]
  /external/chromium_org/media/filters/
gpu_video_decoder.cc 377 NOTREACHED() << "Missing picture buffer: " << id;
421 void GpuVideoDecoder::PictureReady(const media::Picture& picture) {
426 assigned_picture_buffers_.find(picture.picture_buffer_id());
428 NOTREACHED() << "Missing picture buffer: " << picture.picture_buffer_id();
438 GetBufferData(picture.bitstream_buffer_id(), &timestamp, &visible_rect,
448 picture.picture_buffer_id(),
459 picture.picture_buffer_id(),
511 // This picture was dismissed while in display, so we postponed deletion
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
vp8enci.h 401 WebPPicture* pic_; // input / output picture
511 // Assign an error code to a picture. Return false for convenience.
559 void WebPPictureResetBuffers(WebPPicture* const picture);
564 int WebPPictureAllocARGB(WebPPicture* const picture, int width, int height);
567 // Uses picture->csp to determine whether an alpha buffer is needed.
570 int WebPPictureAllocYUVA(WebPPicture* const picture, int width, int height);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_mpeg12_decoder.c 508 struct pipe_picture_desc *picture)
511 struct pipe_mpeg12_picture_desc *desc = (struct pipe_mpeg12_picture_desc *)picture;
522 assert(dec && target && picture);
575 struct pipe_picture_desc *picture,
581 struct pipe_mpeg12_picture_desc *desc = (struct pipe_mpeg12_picture_desc *)picture;
586 assert(dec && target && picture);
645 struct pipe_picture_desc *picture,
651 struct pipe_mpeg12_picture_desc *desc = (struct pipe_mpeg12_picture_desc *)picture;
656 assert(dec && target && picture);
671 struct pipe_picture_desc *picture)
    [all...]

Completed in 1433 milliseconds

1 2 3 4 5 67 8 91011>>