Home | History | Annotate | Download | only in effects

Lines Matching refs:table

16     Applies a table lookup on each of the alpha values in the mask.
23 /** Utility that sets the gamma table
25 static void MakeGammaTable(uint8_t table[256], SkScalar gamma);
27 /** Utility that creates a clipping table: clamps values below min to 0
30 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
32 static SkTableMaskFilter* Create(const uint8_t table[256]) {
33 return SkNEW_ARGS(SkTableMaskFilter, (table));
37 uint8_t table[256];
38 MakeGammaTable(table, gamma);
39 return SkNEW_ARGS(SkTableMaskFilter, (table));
43 uint8_t table[256];
44 MakeClipTable(table, min, max);
45 return SkNEW_ARGS(SkTableMaskFilter, (table));
57 explicit SkTableMaskFilter(const uint8_t table[256]);