OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SrcDepth
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/skia/include/core/
SkImageDecoder.h
401
enum
SrcDepth
{
410
the returned bitmap.
SrcDepth
and hasAlpha reflect the raw data of the
412
srcDepth
and hasAlpha, or kUnknown_SkColorType if there is no preference.
414
SkColorType getPrefColorType(
SrcDepth
, bool hasAlpha) const;
/external/chromium_org/third_party/skia/src/images/
SkImageDecoder.cpp
141
SkColorType SkImageDecoder::getPrefColorType(
SrcDepth
srcDepth
, bool srcHasAlpha) const {
144
switch (
srcDepth
) {
SkImageDecoder_libjpeg.cpp
406
SrcDepth
srcDepth
= k32Bit_SrcDepth;
408
srcDepth
= k8BitGray_SrcDepth;
411
SkColorType colorType = this->getPrefColorType(
srcDepth
, /*hasAlpha*/ false);
[
all
...]
SkImageDecoder_libpng.cpp
575
SrcDepth
srcDepth
= k32Bit_SrcDepth;
577
srcDepth
= k8BitGray_SrcDepth;
582
*colorTypep = this->getPrefColorType(
srcDepth
, *hasAlphap);
590
if (k8BitGray_SrcDepth !=
srcDepth
) {
[
all
...]
Completed in 288 milliseconds