Searched defs:picture (Results 1 - 25 of 140) sorted by relevance

123456

/external/chromium_org/cc/trees/
H A Dlayer_tree_host_unittest_picture.cc16 // These tests deal with picture layers.
30 scoped_refptr<FakePictureLayer> picture = variable
32 layer_tree_host()->root_layer()->AddChild(picture); variable
43 // Drop the picture layer from the tree.
47 // Add a new picture layer.
48 scoped_refptr<FakePictureLayer> picture = variable
50 layer_tree_host()->root_layer()->AddChild(picture); variable
83 // and active layer. Then we recreate a picture layer in the 4th activate
/external/chromium_org/third_party/skia/include/effects/
H A DSkPictureImageFilter.h17 * Refs the passed-in picture.
19 static SkPictureImageFilter* Create(SkPicture* picture) { argument
20 return SkNEW_ARGS(SkPictureImageFilter, (picture));
24 * Refs the passed-in picture. cropRect can be used to crop or expand the destination rect when
25 * the picture is drawn. (No scaling is implied by the dest rect; only the CTM is applied.)
27 static SkPictureImageFilter* Create(SkPicture* picture, const SkRect& cropRect) { argument
28 return SkNEW_ARGS(SkPictureImageFilter, (picture, cropRect));
34 explicit SkPictureImageFilter(SkPicture* picture);
35 SkPictureImageFilter(SkPicture* picture, const SkRect& cropRect);
41 * @param SkReadBuffer Serialized picture dat
[all...]
/external/skia/include/effects/
H A DSkPictureImageFilter.h17 * Refs the passed-in picture.
19 static SkPictureImageFilter* Create(SkPicture* picture) { argument
20 return SkNEW_ARGS(SkPictureImageFilter, (picture));
24 * Refs the passed-in picture. cropRect can be used to crop or expand the destination rect when
25 * the picture is drawn. (No scaling is implied by the dest rect; only the CTM is applied.)
27 static SkPictureImageFilter* Create(SkPicture* picture, const SkRect& cropRect) { argument
28 return SkNEW_ARGS(SkPictureImageFilter, (picture, cropRect));
34 explicit SkPictureImageFilter(SkPicture* picture);
35 SkPictureImageFilter(SkPicture* picture, const SkRect& cropRect);
41 * @param SkReadBuffer Serialized picture dat
[all...]
/external/chromium_org/android_webview/native/
H A Daw_picture.cc14 AwPicture::AwPicture(skia::RefPtr<SkPicture> picture) argument
15 : picture_(picture) {
34 bool RenderPictureToCanvas(SkPicture* picture, SkCanvas* canvas) { argument
35 picture->draw(canvas);
48 LOG_IF(ERROR, !ok) << "Couldn't draw picture";
/external/chromium_org/cc/debug/
H A Dtraced_picture.cc14 TracedPicture::TracedPicture(scoped_refptr<const Picture> picture) argument
15 : picture_(picture), is_alias_(false) {}
21 TracedPicture::AsTraceablePicture(const Picture* picture) { argument
23 new TracedPicture(picture));
/external/chromium_org/cc/test/
H A Dskia_common.cc7 #include "cc/resources/picture.h"
17 scoped_refptr<Picture> picture) {
26 picture->Raster(&canvas, NULL, negated_content_region, 1.0f);
15 DrawPicture(unsigned char* buffer, const gfx::Rect& layer_rect, scoped_refptr<Picture> picture) argument
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DDisplayList.cpp55 SkPicture* DisplayList::picture() const function in class:WebCore::DisplayList
/external/chromium_org/third_party/skia/src/core/
H A DSkPictureRecorder.cpp69 SkPicture* picture = NULL; local
72 // TODO: picture = SkNEW_ARGS(SkPicture, (fWidth, fHeight, fRecord));
79 picture = SkNEW_ARGS(SkPicture, (fWidth, fHeight, *fPictureRecord, deepCopyOps));
83 return picture;
103 SkPicture picture(fWidth, fHeight, *fPictureRecord, deepCopyOps);
104 picture.draw(canvas);
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_file_image.cc72 const ViEPicture& picture,
74 int half_width = (picture.width + 1) / 2;
75 video_frame->CreateEmptyFrame(picture.width, picture.height,
76 picture.width, half_width, half_width);
77 return ConvertToI420(kI420, picture.data, 0, 0,
78 picture.width, picture.height,
71 ConvertPictureToI420VideoFrame(int engine_id, const ViEPicture& picture, I420VideoFrame* video_frame) argument
/external/skia/src/core/
H A DSkPictureRecorder.cpp69 SkPicture* picture = NULL; local
72 // TODO: picture = SkNEW_ARGS(SkPicture, (fWidth, fHeight, fRecord));
79 picture = SkNEW_ARGS(SkPicture, (fWidth, fHeight, *fPictureRecord, deepCopyOps));
83 return picture;
103 SkPicture picture(fWidth, fHeight, *fPictureRecord, deepCopyOps);
104 picture.draw(canvas);
/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/cpp/dev/
H A Dvideo_decoder_client_dev.cc47 const PP_Picture_Dev* picture) {
52 static_cast<VideoDecoderClient_Dev*>(object)->PictureReady(decoder, *picture);
45 PictureReady(PP_Instance instance, PP_Resource decoder, const PP_Picture_Dev* picture) argument
/external/chromium_org/ppapi/cpp/
H A Dvideo_decoder.cc73 void VideoDecoder::RecyclePicture(const PP_VideoPicture& picture) { argument
76 &picture); local
/external/chromium_org/third_party/skia/src/effects/
H A DSkPictureImageFilter.cpp15 SkPictureImageFilter::SkPictureImageFilter(SkPicture* picture) argument
17 fPicture(picture),
18 fCropRect(SkRect::MakeWH(picture ? SkIntToScalar(picture->width()) : 0,
19 picture ? SkIntToScalar(picture->height()) : 0)) {
23 SkPictureImageFilter::SkPictureImageFilter(SkPicture* picture, const SkRect& cropRect) argument
25 fPicture(picture),
/external/kernel-headers/original/uapi/linux/
H A Dmeye.h42 unsigned char picture; member in struct:meye_params
/external/skia/src/effects/
H A DSkPictureImageFilter.cpp15 SkPictureImageFilter::SkPictureImageFilter(SkPicture* picture) argument
17 fPicture(picture),
18 fCropRect(SkRect::MakeWH(picture ? SkIntToScalar(picture->width()) : 0,
19 picture ? SkIntToScalar(picture->height()) : 0)) {
23 SkPictureImageFilter::SkPictureImageFilter(SkPicture* picture, const SkRect& cropRect) argument
25 fPicture(picture),
/external/chromium_org/cc/resources/
H A Dpicture_unittest.cc5 #include "cc/resources/picture.h"
42 // Invalid picture (not a dict).
51 // Single full-size rect picture.
64 // Reconstruct the picture.
83 // Two rect picture.
97 // Reconstruct the picture.
151 scoped_refptr<Picture> picture = Picture::Create(layer_rect, local
166 picture.get());
180 picture.get());
194 picture
252 scoped_refptr<Picture> picture = Picture::Create(layer_rect, local
376 scoped_refptr<Picture> picture = Picture::Create(layer_rect, local
466 scoped_refptr<Picture> picture = Picture::Create(layer_rect, local
[all...]
/external/chromium_org/media/tools/player_x11/
H A Dx11_video_renderer.cc32 // 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/ppapi/thunk/
H A Dppb_video_decoder_thunk.cc65 struct PP_VideoPicture* picture,
71 return enter.SetResult(enter.object()->GetPicture(picture, enter.callback()));
75 const struct PP_VideoPicture* picture) {
80 enter.object()->RecyclePicture(picture);
64 GetPicture(PP_Resource video_decoder, struct PP_VideoPicture* picture, struct PP_CompletionCallback callback) argument
74 RecyclePicture(PP_Resource video_decoder, const struct PP_VideoPicture* picture) argument
/external/chromium_org/third_party/WebKit/Source/platform/image-encoders/skia/
H A DWEBPImageEncoder.cpp43 static int writeOutput(const uint8_t* data, size_t size, const WebPPicture* const picture) argument
45 static_cast<Vector<unsigned char>*>(picture->custom_ptr)->append(data, size);
49 static bool rgbPictureImport(const unsigned char* pixels, bool premultiplied, WebPImporter importRGBX, WebPImporter importRGB, WebPPicture* picture) argument
52 return importRGBX(picture, pixels, picture->width * 4);
57 size_t pixelCount = picture->height * picture->width;
73 return importRGB(picture, rgb.data(), picture->width * 3);
76 template <bool Premultiplied> inline bool importPictureBGRX(const unsigned char* pixels, WebPPicture* picture) argument
81 importPictureRGBX(const unsigned char* pixels, WebPPicture* picture) argument
[all...]
/external/chromium_org/third_party/skia/debugger/
H A DSkDebugger.cpp29 void SkDebugger::loadPicture(SkPicture* picture) { argument
30 fPictureWidth = picture->width();
31 fPictureHeight = picture->height();
35 fDebugCanvas->setPicture(picture);
36 picture->draw(fDebugCanvas);
39 SkRefCnt_SafeAssign(fPicture, picture);
/external/chromium_org/third_party/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
/external/chromium_org/third_party/skia/src/gpu/
H A DGrLayerCache.cpp13 * PictureLayerKey just wraps a saveLayer's id in the picture for GrTHashTable.
69 GrCachedLayer* GrLayerCache::createLayer(const SkPicture* picture, int layerID) { argument
72 SkASSERT(picture->uniqueID() != SK_InvalidGenID);
73 layer->init(picture->uniqueID(), layerID);
74 fLayerHash.insert(PictureLayerKey(picture->uniqueID(), layerID), layer);
79 GrCachedLayer* GrLayerCache::findLayerOrCreate(const SkPicture* picture, int layerID) { argument
80 SkASSERT(picture->uniqueID() != SK_InvalidGenID);
81 GrCachedLayer* layer = fLayerHash.find(PictureLayerKey(picture->uniqueID(), layerID));
83 layer = this->createLayer(picture, layerID);
H A DGrPictureUtils.cpp21 // a picture. The results are stored in a GPUAccelData.
32 GrGatherDevice(int width, int height, const SkPicture* picture, GPUAccelData* accelData, argument
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
[all...]
/external/skia/debugger/
H A DSkDebugger.cpp29 void SkDebugger::loadPicture(SkPicture* picture) { argument
30 fPictureWidth = picture->width();
31 fPictureHeight = picture->height();
35 fDebugCanvas->setPicture(picture);
36 picture->draw(fDebugCanvas);
39 SkRefCnt_SafeAssign(fPicture, picture);

Completed in 855 milliseconds

123456