HomeSort by relevance Sort by last modified time
    Searched refs:tableA (Results 1 - 8 of 8) sorted by null

  /external/skia/include/effects/
SkTableColorFilter.h 34 static sk_sp<SkColorFilter> MakeARGB(const uint8_t tableA[256],
  /external/skia/src/effects/
SkTableColorFilter.cpp 56 SkTable_ColorFilter(const uint8_t tableA[], const uint8_t tableR[],
62 if (tableA) {
63 memcpy(dst, tableA, 256);
147 const uint8_t* tableA = gIdentityTable;
152 tableA = table; table += 256;
183 dst[i] = SkPremultiplyARGBInline(tableA[a], tableR[r],
191 const uint8_t* tableA = gIdentityTable;
196 tableA = table; table += 256;
212 i, tableR[i], tableG[i], tableB[i], tableA[i]);
330 const uint8_t* tableA = gIdentityTable
    [all...]
  /external/skia/gm/
recordopts.cpp 26 uint8_t tableA[256] = { 0, };
30 tableA[255] = 255;
32 return SkTableColorFilter::MakeARGB(tableA, tableR, tableG, tableB);
  /external/skia/third_party/etc1/
etc1.cpp 234 const int* tableA = kModifierTable + tableIndexA * 4;
237 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped);
  /frameworks/native/opengl/libs/ETC1/
etc1.cpp 226 const int* tableA = kModifierTable + tableIndexA * 4;
229 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped);
  /external/skia/fuzz/
FilterFuzz.cpp 343 uint8_t tableA[256];
347 fuzz->nextN(tableA, 256);
351 return SkTableColorFilter::MakeARGB(tableA, tableR, tableG, tableB);
FuzzCanvas.cpp 289 uint8_t tableA[256];
293 fuzz->nextN(tableA, SK_ARRAY_COUNT(tableA));
297 return SkTableColorFilter::MakeARGB(tableA, tableR, tableG, tableB);
    [all...]
  /external/skia/samplecode/
SampleFilterFuzz.cpp 363 uint8_t tableA[256];
367 rand_color_table(tableA);
371 return SkTableColorFilter::MakeARGB(tableA, tableR, tableG, tableB);

Completed in 263 milliseconds