OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bwebp1
(Results
1 - 1
of
1
) sorted by null
/cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java
206
Bitmap
bWebp1
= BitmapFactory.decodeStream(iStreamWebp1, null, options);
207
assertNotNull(
bWebp1
);
208
assertFalse(
bWebp1
.isPremultiplied());
209
assertFalse(
bWebp1
.hasAlpha());
210
compareBitmaps(bPng,
bWebp1
, COLOR_TOLS[k], true, bPng.isPremultiplied());
241
Bitmap
bWebP1
= BitmapFactory.decodeStream(iStreamWebP1, null, options);
242
assertNotNull(
bWebP1
);
243
assertEquals(
bWebP1
.getConfig(), COLOR_CONFIGS_RGBA[k]);
244
assertTrue(
bWebP1
.isPremultiplied());
245
assertTrue(
bWebP1
.hasAlpha())
[
all
...]
Completed in 717 milliseconds