Searched refs:SkPixelRef (Results 1 - 25 of 63) sorted by relevance

123

/external/chromium_org/skia/ext/
H A Dlazy_pixel_ref.cc9 LazyPixelRef::LazyPixelRef() : SkPixelRef(0) {
H A Dlazy_pixel_ref.h8 #include "third_party/skia/include/core/SkPixelRef.h"
13 // This class extends SkPixelRef to facilitate lazy image decoding on the impl
15 class SK_API LazyPixelRef : public SkPixelRef {
/external/chromium_org/third_party/skia/src/core/
H A DSkPixelRef.cpp8 #include "SkPixelRef.h"
12 SK_DEFINE_INST_COUNT(SkPixelRef)
78 void SkPixelRef::setMutex(SkBaseMutex* mutex) {
88 SkPixelRef::SkPixelRef(SkBaseMutex* mutex) : fPreLocked(false) { function in class:SkPixelRef
98 SkPixelRef::SkPixelRef(SkFlattenableReadBuffer& buffer, SkBaseMutex* mutex) function in class:SkPixelRef
109 void SkPixelRef::setPreLocked(void* pixels, SkColorTable* ctable) {
120 void SkPixelRef::flatten(SkFlattenableWriteBuffer& buffer) const {
135 void SkPixelRef
[all...]
/external/skia/src/core/
H A DSkPixelRef.cpp8 #include "SkPixelRef.h"
12 SK_DEFINE_INST_COUNT(SkPixelRef)
78 void SkPixelRef::setMutex(SkBaseMutex* mutex) {
88 SkPixelRef::SkPixelRef(SkBaseMutex* mutex) : fPreLocked(false) { function in class:SkPixelRef
98 SkPixelRef::SkPixelRef(SkFlattenableReadBuffer& buffer, SkBaseMutex* mutex) function in class:SkPixelRef
109 void SkPixelRef::setPreLocked(void* pixels, SkColorTable* ctable) {
120 void SkPixelRef::flatten(SkFlattenableWriteBuffer& buffer) const {
135 void SkPixelRef
[all...]
/external/chromium_org/third_party/skia/src/image/
H A DSkDataPixelRef.h11 #include "SkPixelRef.h"
15 class SkDataPixelRef : public SkPixelRef {
32 typedef SkPixelRef INHERITED;
H A DSkImagePriv.h24 extern SkImage* SkNewImageFromPixelRef(const SkImage::Info&, SkPixelRef*,
59 extern SkPixelRef* SkBitmapImageGetPixelRef(SkImage* rasterImage);
H A DSkImage_Raster.cpp62 SkImage_Raster(const SkImage::Info&, SkPixelRef*, size_t rowBytes);
64 SkPixelRef* getPixelRef() const { return fBitmap.pixelRef(); }
97 SkImage_Raster::SkImage_Raster(const Info& info, SkPixelRef* pr, size_t rowBytes)
164 SkImage* SkNewImageFromPixelRef(const SkImage::Info& info, SkPixelRef* pr,
169 SkPixelRef* SkBitmapImageGetPixelRef(SkImage* image) {
/external/skia/src/image/
H A DSkDataPixelRef.h11 #include "SkPixelRef.h"
15 class SkDataPixelRef : public SkPixelRef {
32 typedef SkPixelRef INHERITED;
H A DSkImagePriv.h24 extern SkImage* SkNewImageFromPixelRef(const SkImage::Info&, SkPixelRef*,
59 extern SkPixelRef* SkBitmapImageGetPixelRef(SkImage* rasterImage);
H A DSkImage_Raster.cpp62 SkImage_Raster(const SkImage::Info&, SkPixelRef*, size_t rowBytes);
64 SkPixelRef* getPixelRef() const { return fBitmap.pixelRef(); }
97 SkImage_Raster::SkImage_Raster(const Info& info, SkPixelRef* pr, size_t rowBytes)
164 SkImage* SkNewImageFromPixelRef(const SkImage::Info& info, SkPixelRef* pr,
169 SkPixelRef* SkBitmapImageGetPixelRef(SkImage* image) {
/external/chromium_org/third_party/skia/include/gpu/
H A DSkGrPixelRef.h15 #include "SkPixelRef.h"
24 class SK_API SkROLockPixelsPixelRef : public SkPixelRef {
30 // override from SkPixelRef
37 typedef SkPixelRef INHERITED;
53 // override from SkPixelRef
59 // overrides from SkPixelRef
61 virtual SkPixelRef* deepCopy(SkBitmap::Config dstConfig, const SkIRect* subset) SK_OVERRIDE;
/external/skia/include/gpu/
H A DSkGrPixelRef.h15 #include "SkPixelRef.h"
24 class SK_API SkROLockPixelsPixelRef : public SkPixelRef {
30 // override from SkPixelRef
37 typedef SkPixelRef INHERITED;
53 // override from SkPixelRef
59 // overrides from SkPixelRef
61 virtual SkPixelRef* deepCopy(SkBitmap::Config dstConfig, const SkIRect* subset) SK_OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
H A DDiscardablePixelRef.h30 #include "SkPixelRef.h"
47 class DiscardablePixelRef : public SkPixelRef {
52 static bool isDiscardable(SkPixelRef*);
58 // SkPixelRef implementation.
H A DDiscardablePixelRef.cpp36 // URI label for a discardable SkPixelRef.
68 : SkPixelRef(mutex.get())
104 bool DiscardablePixelRef::isDiscardable(SkPixelRef* pixelRef)
/external/chromium_org/third_party/skia/include/core/
H A DSkMallocPixelRef.h13 #include "SkPixelRef.h"
18 class SkMallocPixelRef : public SkPixelRef {
34 // overrides from SkPixelRef
47 typedef SkPixelRef INHERITED;
H A DSkPixelRef.h39 /** \class SkPixelRef
47 class SK_API SkPixelRef : public SkFlattenable { class in inherits:SkFlattenable
49 SK_DECLARE_INST_COUNT(SkPixelRef)
51 explicit SkPixelRef(SkBaseMutex* mutex = NULL);
155 * @return A new SkPixelRef, or NULL if either there is an error (e.g. the destination could
159 virtual SkPixelRef* deepCopy(SkBitmap::Config config, const SkIRect* subset = NULL) {
210 SkPixelRef(SkFlattenableReadBuffer&, SkBaseMutex*);
227 // SkBitmap is only a friend so that when copying, it can modify the new SkPixelRef to have the
/external/skia/include/core/
H A DSkMallocPixelRef.h13 #include "SkPixelRef.h"
18 class SkMallocPixelRef : public SkPixelRef {
34 // overrides from SkPixelRef
47 typedef SkPixelRef INHERITED;
H A DSkPixelRef.h39 /** \class SkPixelRef
47 class SK_API SkPixelRef : public SkFlattenable { class in inherits:SkFlattenable
49 SK_DECLARE_INST_COUNT(SkPixelRef)
51 explicit SkPixelRef(SkBaseMutex* mutex = NULL);
155 * @return A new SkPixelRef, or NULL if either there is an error (e.g. the destination could
159 virtual SkPixelRef* deepCopy(SkBitmap::Config config, const SkIRect* subset = NULL) {
210 SkPixelRef(SkFlattenableReadBuffer&, SkBaseMutex*);
227 // SkBitmap is only a friend so that when copying, it can modify the new SkPixelRef to have the
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/test/
H A DMockDiscardablePixelRef.h29 #include "SkPixelRef.h"
33 class MockDiscardablePixelRef : public SkPixelRef {
47 // SkPixelRef implementation.
/external/chromium_org/third_party/skia/src/lazy/
H A DSkLazyPixelRef.h13 #include "SkPixelRef.h"
29 class SkLazyPixelRef : public SkPixelRef {
78 typedef SkPixelRef INHERITED;
/external/skia/src/lazy/
H A DSkLazyPixelRef.h13 #include "SkPixelRef.h"
29 class SkLazyPixelRef : public SkPixelRef {
78 typedef SkPixelRef INHERITED;
/external/chromium_org/cc/test/
H A Dskia_common.h22 class TestPixelRef : public SkPixelRef {
30 virtual SkPixelRef* deepCopy(
47 virtual SkPixelRef* deepCopy(
/external/chromium_org/third_party/skia/include/images/
H A DSkImageRef.h13 #include "SkPixelRef.h"
24 class SkImageRef : public SkPixelRef {
46 not set its pixels or colortable. Use SkPixelRef::lockPixels() for that.
70 /* Overrides from SkPixelRef
101 typedef SkPixelRef INHERITED;
/external/skia/include/images/
H A DSkFlipPixelRef.h15 #include "SkPixelRef.h"
20 class SkFlipPixelRef : public SkPixelRef {
68 typedef SkPixelRef INHERITED;
H A DSkImageRef.h13 #include "SkPixelRef.h"
24 class SkImageRef : public SkPixelRef {
46 not set its pixels or colortable. Use SkPixelRef::lockPixels() for that.
70 /* Overrides from SkPixelRef
101 typedef SkPixelRef INHERITED;

Completed in 291 milliseconds

123