Lines Matching full:opts
29 get_gray_to_8888_proc(const SkScaledBitmapSampler::Options& opts) {
46 get_RGBx_to_8888_proc(const SkScaledBitmapSampler::Options& opts) {
98 get_RGBA_to_8888_proc(const SkScaledBitmapSampler::Options& opts) {
100 if (!opts.fPremultiplyAlpha) {
106 if (opts.fSkipZeros) {
138 get_gray_to_565_proc(const SkScaledBitmapSampler::Options& opts) {
140 if (opts.fDither) {
171 get_RGBx_to_565_proc(const SkScaledBitmapSampler::Options& opts) {
173 if (opts.fDither) {
193 get_565_to_565_proc(const SkScaledBitmapSampler::Options& opts) {
226 get_gray_to_4444_proc(const SkScaledBitmapSampler::Options& opts) {
228 if (opts.fDither) {
260 get_RGBx_to_4444_proc(const SkScaledBitmapSampler::Options& opts) {
262 if (opts.fDither) {
343 get_RGBA_to_4444_proc(const SkScaledBitmapSampler::Options& opts) {
344 if (!opts.fPremultiplyAlpha) {
348 if (opts.fSkipZeros) {
349 if (opts.fDither) {
354 if (opts.fDither) {
398 get_index_to_8888_proc(const SkScaledBitmapSampler::Options& opts) {
400 // properly with respect to opts.fPremultiplyAlpha, so premul makes
403 if (opts.fSkipZeros) {
438 get_index_to_565_proc(const SkScaledBitmapSampler::Options& opts) {
440 if (opts.fDither) {
515 get_index_to_4444_proc(const SkScaledBitmapSampler::Options& opts) {
517 if (!opts.fPremultiplyAlpha) {
520 if (opts.fSkipZeros) {
521 if (opts.fDither) {
526 if (opts.fDither) {
548 get_index_to_index_proc(const SkScaledBitmapSampler::Options& opts) {
550 if (!opts.fPremultiplyAlpha) {
571 get_gray_to_A8_proc(const SkScaledBitmapSampler::Options& opts) {
572 if (!opts.fPremultiplyAlpha) {
627 const Options& opts,
722 fRowProc = chooser(opts);