OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SkImage_Base
(Results
1 - 2
of
2
) sorted by null
/external/skia/src/image/
SkImage_Base.h
24
class
SkImage_Base
: public SkImage {
26
SkImage_Base
(int width, int height, uint32_t uniqueID);
27
virtual ~
SkImage_Base
();
77
static inline
SkImage_Base
* as_IB(SkImage* image) {
78
return static_cast<
SkImage_Base
*>(image);
81
static inline const
SkImage_Base
* as_IB(const SkImage* image) {
82
return static_cast<const
SkImage_Base
*>(image);
SkImage.cpp
16
#include "
SkImage_Base
.h"
214
SkImage_Base
::
SkImage_Base
(int width, int height, uint32_t uniqueID)
219
SkImage_Base
::~
SkImage_Base
() {
225
bool
SkImage_Base
::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
311
bool
SkImage_Base
::onAsLegacyBitmap(SkBitmap* bitmap, LegacyBitmapMode mode) const {
Completed in 57 milliseconds