HomeSort by relevance Sort by last modified time
    Searched refs:SkScaledBitmapSampler (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/skia/src/images/
SkScaledBitmapSampler.h 17 class SkScaledBitmapSampler {
19 SkScaledBitmapSampler(int origWidth, int origHeight, int cellSize);
49 // be called for one SkScaledBitmapSampler.
SkScaledBitmapSampler.cpp 9 #include "SkScaledBitmapSampler.h"
28 static SkScaledBitmapSampler::RowProc get_gray_to_8888_proc(const SkImageDecoder& decoder) {
44 static SkScaledBitmapSampler::RowProc get_RGBx_to_8888_proc(const SkImageDecoder& decoder) {
95 static SkScaledBitmapSampler::RowProc get_RGBA_to_8888_proc(const SkImageDecoder& decoder) {
134 static SkScaledBitmapSampler::RowProc get_gray_to_565_proc(const SkImageDecoder& decoder) {
166 static SkScaledBitmapSampler::RowProc get_RGBx_to_565_proc(const SkImageDecoder& decoder) {
187 static SkScaledBitmapSampler::RowProc get_565_to_565_proc(const SkImageDecoder& decoder) {
219 static SkScaledBitmapSampler::RowProc get_gray_to_4444_proc(const SkImageDecoder& decoder) {
252 static SkScaledBitmapSampler::RowProc get_RGBx_to_4444_proc(const SkImageDecoder& decoder) {
334 static SkScaledBitmapSampler::RowProc get_RGBA_to_4444_proc(const SkImageDecoder& decoder)
    [all...]
SkImageDecoder_libbmp.cpp 13 #include "SkScaledBitmapSampler.h"
134 SkScaledBitmapSampler sampler(width, height, getSampleSize());
149 if (!sampler.begin(bm, SkScaledBitmapSampler::kRGB, *this)) {
SkImageDecoder_libpng.cpp 17 #include "SkScaledBitmapSampler.h"
333 SkScaledBitmapSampler sampler(origWidth, origHeight, sampleSize);
391 SkScaledBitmapSampler::SrcConfig sc;
395 sc = SkScaledBitmapSampler::kIndex;
400 sc = SkScaledBitmapSampler::kGray;
403 sc = SkScaledBitmapSampler::kRGBA;
405 sc = SkScaledBitmapSampler::kRGBX;
803 SkScaledBitmapSampler sampler(origWidth, rect.height(), sampleSize);
888 SkScaledBitmapSampler::SrcConfig sc;
892 sc = SkScaledBitmapSampler::kIndex
    [all...]
SkImageDecoder_libjpeg.cpp 14 #include "SkScaledBitmapSampler.h"
503 SkScaledBitmapSampler::SrcConfig* sc,
508 *sc = SkScaledBitmapSampler::kRGBX;
512 *sc = SkScaledBitmapSampler::kRGB;
516 *sc = SkScaledBitmapSampler::kRGBX;
519 *sc = SkScaledBitmapSampler::kRGB_565;
524 *sc = SkScaledBitmapSampler::kGray;
603 SkScaledBitmapSampler smpl(cinfo.output_width, cinfo.output_height,
623 SkScaledBitmapSampler sampler(cinfo.output_width, cinfo.output_height, sampleSize);
640 /* short-circuit the SkScaledBitmapSampler when possible, as this give
    [all...]
SkImageDecoder_libgif.cpp 13 #include "SkScaledBitmapSampler.h"
274 SkScaledBitmapSampler sampler(width, height, this->getSampleSize());
357 sampler = SkScaledBitmapSampler(innerWidth, innerHeight, this->getSampleSize());
367 if (!sampler.begin(workingBitmap, SkScaledBitmapSampler::kIndex, *this)) {
SkImageDecoder_libwebp.cpp 20 #include "SkScaledBitmapSampler.h"
340 SkScaledBitmapSampler sampler(rect.width(), rect.height(), sampleSize);
413 SkScaledBitmapSampler sampler(origWidth, origHeight, sampleSize);
  /external/skia/src/images/
SkScaledBitmapSampler.h 17 class SkScaledBitmapSampler {
19 SkScaledBitmapSampler(int origWidth, int origHeight, int cellSize);
49 // be called for one SkScaledBitmapSampler.
SkScaledBitmapSampler.cpp 9 #include "SkScaledBitmapSampler.h"
28 static SkScaledBitmapSampler::RowProc get_gray_to_8888_proc(const SkImageDecoder& decoder) {
44 static SkScaledBitmapSampler::RowProc get_RGBx_to_8888_proc(const SkImageDecoder& decoder) {
95 static SkScaledBitmapSampler::RowProc get_RGBA_to_8888_proc(const SkImageDecoder& decoder) {
134 static SkScaledBitmapSampler::RowProc get_gray_to_565_proc(const SkImageDecoder& decoder) {
166 static SkScaledBitmapSampler::RowProc get_RGBx_to_565_proc(const SkImageDecoder& decoder) {
187 static SkScaledBitmapSampler::RowProc get_565_to_565_proc(const SkImageDecoder& decoder) {
219 static SkScaledBitmapSampler::RowProc get_gray_to_4444_proc(const SkImageDecoder& decoder) {
252 static SkScaledBitmapSampler::RowProc get_RGBx_to_4444_proc(const SkImageDecoder& decoder) {
334 static SkScaledBitmapSampler::RowProc get_RGBA_to_4444_proc(const SkImageDecoder& decoder)
    [all...]
SkImageDecoder_libbmp.cpp 13 #include "SkScaledBitmapSampler.h"
134 SkScaledBitmapSampler sampler(width, height, getSampleSize());
149 if (!sampler.begin(bm, SkScaledBitmapSampler::kRGB, *this)) {
SkImageDecoder_libpng.cpp 17 #include "SkScaledBitmapSampler.h"
333 SkScaledBitmapSampler sampler(origWidth, origHeight, sampleSize);
396 SkScaledBitmapSampler::SrcConfig sc;
400 sc = SkScaledBitmapSampler::kIndex;
405 sc = SkScaledBitmapSampler::kGray;
408 sc = SkScaledBitmapSampler::kRGBA;
410 sc = SkScaledBitmapSampler::kRGBX;
802 SkScaledBitmapSampler sampler(origWidth, rect.height(), sampleSize);
887 SkScaledBitmapSampler::SrcConfig sc;
891 sc = SkScaledBitmapSampler::kIndex
    [all...]
SkImageDecoder_libjpeg.cpp 14 #include "SkScaledBitmapSampler.h"
503 SkScaledBitmapSampler::SrcConfig* sc,
508 *sc = SkScaledBitmapSampler::kRGBX;
512 *sc = SkScaledBitmapSampler::kRGB;
516 *sc = SkScaledBitmapSampler::kRGBX;
519 *sc = SkScaledBitmapSampler::kRGB_565;
524 *sc = SkScaledBitmapSampler::kGray;
603 SkScaledBitmapSampler smpl(cinfo.output_width, cinfo.output_height,
623 SkScaledBitmapSampler sampler(cinfo.output_width, cinfo.output_height, sampleSize);
640 /* short-circuit the SkScaledBitmapSampler when possible, as this give
    [all...]
SkImageDecoder_libgif.cpp 13 #include "SkScaledBitmapSampler.h"
274 SkScaledBitmapSampler sampler(width, height, this->getSampleSize());
357 sampler = SkScaledBitmapSampler(innerWidth, innerHeight, this->getSampleSize());
367 if (!sampler.begin(workingBitmap, SkScaledBitmapSampler::kIndex, *this)) {
SkImageDecoder_libwebp.cpp 20 #include "SkScaledBitmapSampler.h"
340 SkScaledBitmapSampler sampler(rect.width(), rect.height(), sampleSize);
413 SkScaledBitmapSampler sampler(origWidth, origHeight, sampleSize);
  /external/skia/
Android.mk 307 src/images/SkScaledBitmapSampler.cpp \

Completed in 2154 milliseconds