OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:input_bitmap
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/thumbnails/
content_analysis.h
19
// Compute in-place gaussian gradient magnitude of |
input_bitmap
| with sigma
20
// |kernel_sigma|. |
input_bitmap
| is requried to be of SkBitmap::kA8_Config
24
void ApplyGaussianGradientMagnitudeFilter(SkBitmap*
input_bitmap
,
28
// |
input_bitmap
| defined by |image_area|. The image is required to be of
35
void ExtractImageProfileInformation(const SkBitmap&
input_bitmap
,
content_analysis.cc
228
void ApplyGaussianGradientMagnitudeFilter(SkBitmap*
input_bitmap
,
233
SkAutoLockPixels source_lock(*
input_bitmap
);
234
DCHECK(
input_bitmap
);
235
DCHECK(
input_bitmap
->getPixels());
236
DCHECK_EQ(SkBitmap::kA8_Config,
input_bitmap
->config());
240
const SkISize image_size = SkISize::Make(
input_bitmap
->width(),
241
input_bitmap
->height());
244
input_bitmap
->config(), image_size.width(), image_size.height());
249
input_bitmap
->config(), image_size.width(), image_size.height());
259
input_bitmap
->getAddr8(0, 0)
[
all
...]
/external/chromium_org/components/favicon_base/
favicon_util.cc
94
const SkBitmap&
input_bitmap
= input_bitmaps[i];
local
95
if (
input_bitmap
.width() == desired_size_in_pixel &&
96
input_bitmap
.height() == desired_size_in_pixel) {
97
return
input_bitmap
;
99
best_bitmap =
input_bitmap
;
100
} else if (
input_bitmap
.width() >= best_bitmap.width() &&
101
input_bitmap
.height() >= best_bitmap.height()) {
104
best_bitmap =
input_bitmap
;
107
if (
input_bitmap
.width() >= desired_size_in_pixel &&
108
input_bitmap
.height() >= desired_size_in_pixel)
[
all
...]
/external/chromium_org/ui/snapshot/
snapshot_async.cc
28
SkBitmap ScaleBitmap(const SkBitmap&
input_bitmap
,
30
return skia::ImageOperations::Resize(
input_bitmap
,
Completed in 513 milliseconds