Home
last modified time | relevance | path

Searched refs:GPUSink (Results 1 – 3 of 3) sorted by relevance

/external/skia/dm/
DDM.cpp334 SINK("gpunull", GPUSink, Gr::kNull_GLContextType, api, 0, false, FLAGS_gpu_threading); in create_sink()
335 SINK("gpudebug", GPUSink, Gr::kDebug_GLContextType, api, 0, false, FLAGS_gpu_threading); in create_sink()
336 SINK("gpu", GPUSink, Gr::kNative_GLContextType, api, 0, false, FLAGS_gpu_threading); in create_sink()
337 SINK("gpudft", GPUSink, Gr::kNative_GLContextType, api, 0, true, FLAGS_gpu_threading); in create_sink()
338 SINK("msaa4", GPUSink, Gr::kNative_GLContextType, api, 4, false, FLAGS_gpu_threading); in create_sink()
339 SINK("msaa16", GPUSink, Gr::kNative_GLContextType, api, 16, false, FLAGS_gpu_threading); in create_sink()
340 SINK("nvprmsaa4", GPUSink, Gr::kNVPR_GLContextType, api, 4, false, FLAGS_gpu_threading); in create_sink()
341 SINK("nvprmsaa16", GPUSink, Gr::kNVPR_GLContextType, api, 16, false, FLAGS_gpu_threading); in create_sink()
343 SINK("angle", GPUSink, Gr::kANGLE_GLContextType, api, 0, false, FLAGS_gpu_threading); in create_sink()
346 SINK("mesa", GPUSink, Gr::kMESA_GLContextType, api, 0, false, FLAGS_gpu_threading); in create_sink()
DDMSrcSink.h152 class GPUSink : public Sink {
154 GPUSink(GrContextFactory::GLContextType, GrGLStandard, int samples, bool dfText, bool threaded);
DDMSrcSink.cpp325 GPUSink::GPUSink(GrContextFactory::GLContextType ct, in GPUSink() function in DM::GPUSink
336 int GPUSink::enclave() const { in enclave()
342 Error GPUSink::draw(const Src& src, SkBitmap* dst, SkWStream*, SkString* log) const { in draw()