• Home
  • Raw
  • Download

Lines Matching refs:exitf

135 static void exitf(ExitErr, const char* format, ...);
269 exitf(ExitErr::kUnavailable, "DDL: conversion of skp failed"); in run_ddl_benchmark()
416 exitf(ExitErr::kUnavailable, "GPU timer failed"); in run_gpu_time_benchmark()
419 exitf(ExitErr::kUnavailable, "timer query still not ready after fence sync"); in run_gpu_time_benchmark()
447 exitf(ExitErr::kSoftware, "attempted to gather stats on even number of samples"); in print_result()
503 exitf(ExitErr::kUsage, "invalid config '%s': must specify one (and only one) GPU config", in main()
509 exitf(ExitErr::kUsage, in main()
526 exitf(ExitErr::kIO, "failed to open file %s", srcfile.c_str()); in main()
538 exitf(ExitErr::kData, "failed to parse file %s", srcfile.c_str()); in main()
560 exitf(ExitErr::kUnavailable, "This tool only supports the default surface type. (%s)", in main()
572 exitf(ExitErr::kUnavailable, "failed to create context for config %s", in main()
576 exitf(ExitErr::kUnavailable, "render target size %ix%i not supported by platform (max: %i)", in main()
581 exitf(ExitErr::kUnavailable, "failed to get GrBackendFormat from SkColorType: %d", in main()
587 exitf(ExitErr::kUnavailable, "sample count %i not supported by platform", in main()
592 exitf(ExitErr::kSoftware, "testContext is null"); in main()
595 exitf(ExitErr::kUnavailable, "GPU does not support fence sync"); in main()
605 exitf(ExitErr::kUnavailable, "failed to create %ix%i render target for config %s", in main()
633 exitf(ExitErr::kUnavailable, "DDL: GPU-only timing not supported"); in main()
636 exitf(ExitErr::kUnavailable, "GPU does not support timing"); in main()
647 exitf(ExitErr::kUnavailable, "failed to read canvas pixels for png"); in main()
650 exitf(ExitErr::kIO, "failed to create directory for png \"%s\"", FLAGS_png[0]); in main()
653 exitf(ExitErr::kIO, "failed to save png to \"%s\"", FLAGS_png[0]); in main()
706 exitf(ExitErr::kData, "failed to build svg dom from file %s", filename); in create_skp_from_svg()
718 exitf(ExitErr::kData, "SK_ENABLE_SVG is disabled; cannot open svg file %s", filename); in create_skp_from_svg()
737 static void exitf(ExitErr err, const char* format, ...) { in exitf() function