OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SkBmpCodec
(Results
1 - 2
of
2
) sorted by null
/external/skia/src/codec/
SkBmpCodec.h
21
class
SkBmpCodec
: public SkCodec {
40
SkBmpCodec
(const SkImageInfo& info, SkStream* stream, uint16_t bitsPerPixel,
46
* Read enough of the stream to initialize the
SkBmpCodec
. Returns a bool
48
* not nullptr, it will be set to a new
SkBmpCodec
.
SkBmpCodec.cpp
8
#include "
SkBmpCodec
.h"
59
bool
SkBmpCodec
::IsBmp(const void* buffer, size_t bytesRead) {
70
SkCodec*
SkBmpCodec
::NewFromStream(SkStream* stream) {
71
return
SkBmpCodec
::NewFromStream(stream, false);
78
SkCodec*
SkBmpCodec
::NewFromIco(SkStream* stream) {
79
return
SkBmpCodec
::NewFromStream(stream, true);
83
* Read enough of the stream to initialize the
SkBmpCodec
. Returns a bool
85
* not nullptr, it will be set to a new
SkBmpCodec
.
88
bool
SkBmpCodec
::ReadHeader(SkStream* stream, bool inIco, SkCodec** codecOut) {
537
SkCodec*
SkBmpCodec
::NewFromStream(SkStream* stream, bool inIco)
[
all
...]
Completed in 2658 milliseconds