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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/ppapi/cpp/dev/
video_decoder_client_dev.cc 47 const PP_Picture_Dev* picture) {
52 static_cast<VideoDecoderClient_Dev*>(object)->PictureReady(decoder, *picture);
  /external/chromium_org/third_party/skia/src/gpu/
GrLayerCache.h 80 // is the index of this layer in the picture (one of 0 .. #layers).
105 GrCachedLayer* findLayerOrCreate(const SkPicture* picture, int id);
116 GrCachedLayer* createLayer(const SkPicture* picture, int id);
GrPictureUtils.cpp 21 // a picture. The results are stored in a GPUAccelData.
32 GrGatherDevice(int width, int height, const SkPicture* picture, GPUAccelData* accelData,
34 fPicture = picture;
166 // The picture being processed
211 // GrGatherDevice dev(w, h, picture, accelData);
212 // GrGatherCanvas canvas(..., picture);
250 virtual void onDrawPicture(const SkPicture* picture) SK_OVERRIDE {
253 if (NULL != picture->fPlayback) {
254 picture->fPlayback->setUseBBH(false);
256 picture->draw(this)
    [all...]
  /external/skia/src/gpu/
GrLayerCache.h 80 // is the index of this layer in the picture (one of 0 .. #layers).
105 GrCachedLayer* findLayerOrCreate(const SkPicture* picture, int id);
116 GrCachedLayer* createLayer(const SkPicture* picture, int id);
GrPictureUtils.cpp 21 // a picture. The results are stored in a GPUAccelData.
32 GrGatherDevice(int width, int height, const SkPicture* picture, GPUAccelData* accelData,
34 fPicture = picture;
166 // The picture being processed
211 // GrGatherDevice dev(w, h, picture, accelData);
212 // GrGatherCanvas canvas(..., picture);
250 virtual void onDrawPicture(const SkPicture* picture) SK_OVERRIDE {
253 if (NULL != picture->fPlayback) {
254 picture->fPlayback->setUseBBH(false);
256 picture->draw(this)
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SamplePictFile.cpp 97 SkPicture** picture = fPictures + fBBox; variable
99 if (!*picture) {
100 *picture = LoadPicture(fFilename.c_str(), fBBox);
102 if (*picture) {
103 canvas->drawPicture(*picture);
138 SkDebugf("coun't load picture at \"path\"\n", path);
  /external/skia/samplecode/
SamplePictFile.cpp 97 SkPicture** picture = fPictures + fBBox; variable
99 if (!*picture) {
100 *picture = LoadPicture(fFilename.c_str(), fBBox);
102 if (*picture) {
103 canvas->drawPicture(*picture);
138 SkDebugf("coun't load picture at \"path\"\n", path);
  /external/chromium_org/cc/resources/
picture.cc 5 #include "cc/resources/picture.h"
86 scoped_refptr<Picture> Picture::Create(
93 scoped_refptr<Picture> picture = make_scoped_refptr(new Picture(layer_rect)); local
95 picture->Record(client, tile_grid_info, recording_mode);
97 picture->GatherPixelRefs(tile_grid_info);
98 picture->CloneForDrawing(num_raster_threads);
100 return picture;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
DeferredImageDecoderTest.cpp 65 SkPicture* picture; member in struct:WebCore::__anon15200::Rasterizer
162 RefPtr<SkPicture> picture = adoptRef(recorder.endRecording()); local
165 m_canvas->drawPicture(picture.get());
185 RefPtr<SkPicture> picture = adoptRef(recorder.endRecording()); local
186 m_canvas->drawPicture(picture.get());
193 picture = adoptRef(recorder.endRecording());
194 m_canvas->drawPicture(picture.get());
203 static void rasterizeMain(SkCanvas* canvas, SkPicture* picture)
205 canvas->drawPicture(picture);
220 RefPtr<SkPicture> picture = adoptRef(recorder.endRecording()) local
326 RefPtr<SkPicture> picture = adoptRef(recorder.endRecording()); local
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
alpha.c 54 WebPPicture picture; local
57 WebPPictureInit(&picture);
58 picture.width = width;
59 picture.height = height;
60 picture.use_argb = 1;
61 picture.stats = stats;
62 if (!WebPPictureAlloc(&picture)) return 0;
67 uint32_t* dst = picture.argb;
69 for (j = 0; j < picture.height; ++j) {
70 for (i = 0; i < picture.width; ++i)
    [all...]
vp8l.c     [all...]
  /external/webp/src/enc/
alpha.c 54 WebPPicture picture; local
57 WebPPictureInit(&picture);
58 picture.width = width;
59 picture.height = height;
60 picture.use_argb = 1;
61 picture.stats = stats;
62 if (!WebPPictureAlloc(&picture)) return 0;
67 uint32_t* dst = picture.argb;
69 for (j = 0; j < picture.height; ++j) {
70 for (i = 0; i < picture.width; ++i)
    [all...]
vp8l.c     [all...]
  /cts/tests/tests/text/src/android/text/cts/
EmojiTest.java 24 import android.graphics.Picture;
244 Picture picture = webViewOnUiThread.capturePicture(); local
245 if (picture == null || picture.getHeight() <= 0 || picture.getWidth() <= 0) {
248 bitmap = Bitmap.createBitmap(picture.getWidth(), picture.getHeight(),
251 picture.draw(canvas);
  /external/chromium_org/third_party/skia/experimental/nanomsg/
picture_demo.cpp 82 SkAutoTUnref<SkPicture> picture(SkPicture::CreateFromStream(&stream));
85 SkRandom rand(picture->width() * picture->height());
86 SkScalar r = rand.nextRangeScalar(0, picture->width()),
87 b = rand.nextRangeScalar(0, picture->height()),
101 // Send the picture and its header.
146 SkAutoTUnref<SkPicture> picture(recv_picture(data, &header));
155 picture->draw(canvas);
178 DEFINE_string(data, "ipc://nanomsg-picture-data", "Endpoint for sending pictures.");
179 DEFINE_string(control, "ipc://nanomsg-picture-control", "Endpoint for control channel.")
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPictureShader.cpp 21 SkPictureShader::SkPictureShader(SkPicture* picture, TileMode tmx, TileMode tmy,
24 , fPicture(SkRef(picture))
39 SkPictureShader* SkPictureShader::Create(SkPicture* picture, TileMode tmx, TileMode tmy,
41 if (!picture || 0 == picture->width() || 0 == picture->height()) {
44 return SkNEW_ARGS(SkPictureShader, (picture, tmx, tmy, localMatrix));
  /external/skia/experimental/nanomsg/
picture_demo.cpp 82 SkAutoTUnref<SkPicture> picture(SkPicture::CreateFromStream(&stream));
85 SkRandom rand(picture->width() * picture->height());
86 SkScalar r = rand.nextRangeScalar(0, picture->width()),
87 b = rand.nextRangeScalar(0, picture->height()),
101 // Send the picture and its header.
146 SkAutoTUnref<SkPicture> picture(recv_picture(data, &header));
155 picture->draw(canvas);
178 DEFINE_string(data, "ipc://nanomsg-picture-data", "Endpoint for sending pictures.");
179 DEFINE_string(control, "ipc://nanomsg-picture-control", "Endpoint for control channel.")
    [all...]
  /external/skia/src/core/
SkPictureShader.cpp 21 SkPictureShader::SkPictureShader(SkPicture* picture, TileMode tmx, TileMode tmy,
24 , fPicture(SkRef(picture))
39 SkPictureShader* SkPictureShader::Create(SkPicture* picture, TileMode tmx, TileMode tmy,
41 if (!picture || 0 == picture->width() || 0 == picture->height()) {
44 return SkNEW_ARGS(SkPictureShader, (picture, tmx, tmy, localMatrix));
  /external/chromium_org/third_party/skia/tools/
render_pictures_main.cpp 29 DEFINE_int32(clone, 0, "Clone the picture n times before rendering.");
48 "the picture rendered in simple mode. When used in conjunction with --bbh, results "
49 "are validated against the picture rendered in the same mode, but without the bbh.");
51 DEFINE_bool(bench_record, false, "If true, drop into an infinite loop of recording the picture.");
176 SkPicture* picture = SkPicture::CreateFromStream(&inputStream, proc); local
178 if (NULL == picture) {
185 picture->draw(recorder.beginRecording(picture->width(), picture->height(), NULL, 0));
190 SkPicture* clone = picture->clone()
    [all...]
  /external/skia/tools/
render_pictures_main.cpp 29 DEFINE_int32(clone, 0, "Clone the picture n times before rendering.");
48 "the picture rendered in simple mode. When used in conjunction with --bbh, results "
49 "are validated against the picture rendered in the same mode, but without the bbh.");
51 DEFINE_bool(bench_record, false, "If true, drop into an infinite loop of recording the picture.");
176 SkPicture* picture = SkPicture::CreateFromStream(&inputStream, proc); local
178 if (NULL == picture) {
185 picture->draw(recorder.beginRecording(picture->width(), picture->height(), NULL, 0));
190 SkPicture* clone = picture->clone()
    [all...]
  /external/chromium_org/ppapi/proxy/
video_decoder_resource_unittest.cc 182 PP_VideoPicture* picture,
186 picture,
193 const PP_VideoPicture& picture) {
194 decoder_iface()->RecyclePicture(pp_decoder, &picture);
433 // Now try to get a picture. No picture ready message has been received yet.
434 PP_VideoPicture picture; local
436 CallGetPicture(decoder.get(), &picture, &get_picture_cb));
440 CallGetPicture(decoder.get(), &picture, &uncalled_cb));
444 // Send a picture ready message for Decode call 1. The GetPicture callbac
483 PP_VideoPicture picture; local
522 PP_VideoPicture picture; local
    [all...]
ppp_video_decoder_proxy.cc 46 const PP_Picture_Dev* picture) {
52 API_ID_PPP_VIDEO_DECODER_DEV, decoder_resource, *picture));
147 const HostResource& decoder, const PP_Picture_Dev& picture) {
155 &picture);
  /external/chromium_org/media/video/
video_decode_accelerator.h 13 #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 calle
    [all...]
  /external/chromium_org/third_party/skia/platform_tools/nacl/src/
nacl_debugger.cpp 70 SkPicture* picture = SkPicture::CreateFromStream(&pictureStream); local
71 if (NULL == picture) {
75 fDebugger.loadPicture(picture);
76 picture->unref();
  /external/skia/platform_tools/nacl/src/
nacl_debugger.cpp 70 SkPicture* picture = SkPicture::CreateFromStream(&pictureStream); local
71 if (NULL == picture) {
75 fDebugger.loadPicture(picture);
76 picture->unref();

Completed in 790 milliseconds

1 2 34 5 6 7 8 91011>>