Searched refs:tableA (Results 1 - 7 of 7) sorted by relevance

/external/skia/include/effects/
H A DSkTableColorFilter.h34 static sk_sp<SkColorFilter> MakeARGB(const uint8_t tableA[256],
/external/skia/src/effects/
H A DSkTableColorFilter.cpp56 SkTable_ColorFilter(const uint8_t tableA[], const uint8_t tableR[], argument
62 if (tableA) {
63 memcpy(dst, tableA, 256);
147 const uint8_t* tableA = gIdentityTable; local
152 tableA = table; table += 256;
183 dst[i] = SkPremultiplyARGBInline(tableA[a], tableR[r],
191 const uint8_t* tableA = gIdentityTable; local
196 tableA = table; table += 256;
212 i, tableR[i], tableG[i], tableB[i], tableA[i]);
330 const uint8_t* tableA local
612 MakeARGB(const uint8_t tableA[256], const uint8_t tableR[256], const uint8_t tableG[256], const uint8_t tableB[256]) argument
[all...]
/external/skia/gm/
H A Drecordopts.cpp26 uint8_t tableA[256] = { 0, }; local
30 tableA[255] = 255;
32 return SkTableColorFilter::MakeARGB(tableA, tableR, tableG, tableB);
/external/skia/third_party/etc1/
H A Detc1.cpp234 const int* tableA = kModifierTable + tableIndexA * 4; local
237 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped);
/external/skia/fuzz/
H A DFilterFuzz.cpp343 uint8_t tableA[256]; local
347 fuzz->nextN(tableA, 256);
351 return SkTableColorFilter::MakeARGB(tableA, tableR, tableG, tableB);
H A DFuzzCanvas.cpp289 uint8_t tableA[256]; local
293 fuzz->nextN(tableA, SK_ARRAY_COUNT(tableA));
297 return SkTableColorFilter::MakeARGB(tableA, tableR, tableG, tableB);
/external/skia/samplecode/
H A DSampleFilterFuzz.cpp363 uint8_t tableA[256]; local
367 rand_color_table(tableA);
371 return SkTableColorFilter::MakeARGB(tableA, tableR, tableG, tableB);

Completed in 195 milliseconds