Lines Matching refs:SINK
976 #define SINK(t, sink, ...) if (config->getBackend().equals(t)) return new sink(__VA_ARGS__)
979 SINK("g8", RasterSink, kGray_8_SkColorType);
980 SINK("565", RasterSink, kRGB_565_SkColorType);
981 SINK("4444", RasterSink, kARGB_4444_SkColorType);
982 SINK("8888", RasterSink, kN32_SkColorType);
983 SINK("rgba", RasterSink, kRGBA_8888_SkColorType);
984 SINK("bgra", RasterSink, kBGRA_8888_SkColorType);
985 SINK("rgbx", RasterSink, kRGB_888x_SkColorType);
986 SINK("1010102", RasterSink, kRGBA_1010102_SkColorType);
987 SINK("101010x", RasterSink, kRGB_101010x_SkColorType);
988 SINK("bgra1010102", RasterSink, kBGRA_1010102_SkColorType);
989 SINK("bgr101010x", RasterSink, kBGR_101010x_SkColorType);
990 SINK("f16", RasterSink, kRGBA_F16_SkColorType);
991 SINK("f16norm", RasterSink, kRGBA_F16Norm_SkColorType);
992 SINK("f32", RasterSink, kRGBA_F32_SkColorType);
993 SINK("srgba", RasterSink, kSRGBA_8888_SkColorType);
995 SINK("pdf", PDFSink, false, SK_ScalarDefaultRasterDPI);
996 SINK("skp", SKPSink);
997 SINK("svg", SVGSink);
998 SINK("null", NullSink);
999 SINK("xps", XPSSink);
1000 SINK("pdfa", PDFSink, true, SK_ScalarDefaultRasterDPI);
1001 SINK("pdf300", PDFSink, false, 300);
1002 SINK("jsdebug", DebugSink);
1004 #undef SINK