OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:unpremul
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java
423
Bitmap
unpremul
= BitmapFactory.decodeResource(mRes, R.drawable.premul_data, options);
local
425
assertEquals(
unpremul
.getConfig(), Bitmap.Config.ARGB_8888);
426
assertTrue(premul.getHeight() == 1 &&
unpremul
.getHeight() == 1);
427
assertTrue(premul.getWidth() ==
unpremul
.getWidth() &&
431
// verify pixel data -
unpremul
should have raw values, premul will have rounding errors
434
assertEquals(
unpremul
.getPixel(i, 0), RAW_COLORS[i]);
/external/chromium_org/third_party/skia/src/gpu/
GrContext.cpp
1354
bool
unpremul
= SkToBool(kUnpremul_PixelOpsFlag & flags);
local
[
all
...]
/external/skia/src/gpu/
GrContext.cpp
1354
bool
unpremul
= SkToBool(kUnpremul_PixelOpsFlag & flags);
local
[
all
...]
Completed in 247 milliseconds