blob: 18b138c468e744178dc3148ca713a56d2fcbbf4e [file] [log] [blame]
kkinnunen3e980c32015-12-23 01:33:00 -08001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SK_COMMON_FLAGS_CONFIG_H
9#define SK_COMMON_FLAGS_CONFIG_H
10
11#include "SkCommandLineFlags.h"
12
13#if SK_SUPPORT_GPU
14#include "GrContextFactory.h"
15#endif
16
17DECLARE_string(config);
18
19#if SK_SUPPORT_GPU
20class SkCommandLineConfigGpu;
21#endif
22
23// SkCommandLineConfig represents a Skia rendering configuration string.
24// The string has following form:
25// tag:
26// [via-]*backend
bsalomon11abd8d2016-10-14 08:13:48 -070027// where 'backend' consists of chars excluding hyphen
kkinnunen3e980c32015-12-23 01:33:00 -080028// and each 'via' consists of chars excluding hyphen.
29class SkCommandLineConfig {
30 public:
31 SkCommandLineConfig(const SkString& tag, const SkString& backend,
32 const SkTArray<SkString>& viaParts);
33 virtual ~SkCommandLineConfig();
34#if SK_SUPPORT_GPU
35 virtual const SkCommandLineConfigGpu* asConfigGpu() const { return nullptr; }
36#endif
37 const SkString& getTag() const { return fTag; }
38 const SkString& getBackend() const { return fBackend; }
39 const SkTArray<SkString>& getViaParts() const { return fViaParts; }
40 private:
41 SkString fTag;
42 SkString fBackend;
43 SkTArray<SkString> fViaParts;
44};
45
46#if SK_SUPPORT_GPU
47// SkCommandLineConfigGpu is a SkCommandLineConfig that extracts information out of the backend
48// part of the tag. It is constructed tags that have:
Brian Salomon6405e712017-03-20 08:54:16 -040049// * backends of form "gpu[option=value,option2=value,...]"
Brian Salomon50f66d82017-03-17 14:32:05 -040050// * backends that represent a shorthand of above (such as "glmsaa16" representing
Brian Salomon6405e712017-03-20 08:54:16 -040051// "gpu(api=gl,samples=16)")
kkinnunen3e980c32015-12-23 01:33:00 -080052class SkCommandLineConfigGpu : public SkCommandLineConfig {
53 public:
bsalomon85b4b532016-04-05 11:06:27 -070054 typedef sk_gpu_test::GrContextFactory::ContextType ContextType;
csmartdaltone812d492017-02-21 12:36:05 -070055 typedef sk_gpu_test::GrContextFactory::ContextOverrides ContextOverrides;
kkinnunen3e980c32015-12-23 01:33:00 -080056 SkCommandLineConfigGpu(const SkString& tag, const SkTArray<SkString>& viaParts,
csmartdaltone0d36292016-07-29 08:14:20 -070057 ContextType contextType, bool useNVPR, bool useInstanced, bool useDIText,
Brian Salomonce5ee602017-07-17 11:31:31 -040058 int samples, SkColorType colorType, SkAlphaType alphaType,
Brian Osmanf9810662017-08-30 10:02:10 -040059 sk_sp<SkColorSpace> colorSpace, bool useStencilBuffers,
60 bool testThreading);
kkinnunen3e980c32015-12-23 01:33:00 -080061 const SkCommandLineConfigGpu* asConfigGpu() const override { return this; }
62 ContextType getContextType() const { return fContextType; }
csmartdaltone812d492017-02-21 12:36:05 -070063 ContextOverrides getContextOverrides() const { return fContextOverrides; }
64 bool getUseNVPR() const {
65 SkASSERT(!(fContextOverrides & ContextOverrides::kRequireNVPRSupport) ||
66 !(fContextOverrides & ContextOverrides::kDisableNVPR));
67 return fContextOverrides & ContextOverrides::kRequireNVPRSupport;
68 }
69 bool getUseInstanced() const { return fContextOverrides & ContextOverrides::kUseInstanced; }
kkinnunen3e980c32015-12-23 01:33:00 -080070 bool getUseDIText() const { return fUseDIText; }
71 int getSamples() const { return fSamples; }
brianosmand93c1202016-03-10 07:49:08 -080072 SkColorType getColorType() const { return fColorType; }
Brian Salomonce5ee602017-07-17 11:31:31 -040073 SkAlphaType getAlphaType() const { return fAlphaType; }
brianosmanb109b8c2016-06-16 13:03:24 -070074 SkColorSpace* getColorSpace() const { return fColorSpace.get(); }
Brian Osmanf9810662017-08-30 10:02:10 -040075 bool getTestThreading() const { return fTestThreading; }
kkinnunen3e980c32015-12-23 01:33:00 -080076
77 private:
78 ContextType fContextType;
csmartdaltone812d492017-02-21 12:36:05 -070079 ContextOverrides fContextOverrides;
kkinnunen3e980c32015-12-23 01:33:00 -080080 bool fUseDIText;
81 int fSamples;
brianosmand93c1202016-03-10 07:49:08 -080082 SkColorType fColorType;
Brian Salomonce5ee602017-07-17 11:31:31 -040083 SkAlphaType fAlphaType;
brianosmanb109b8c2016-06-16 13:03:24 -070084 sk_sp<SkColorSpace> fColorSpace;
Brian Osmanf9810662017-08-30 10:02:10 -040085 bool fTestThreading;
kkinnunen3e980c32015-12-23 01:33:00 -080086};
87#endif
88
Ben Wagner145dbcd2016-11-03 14:40:50 -040089typedef SkTArray<std::unique_ptr<SkCommandLineConfig>, true> SkCommandLineConfigArray;
kkinnunen3e980c32015-12-23 01:33:00 -080090void ParseConfigs(const SkCommandLineFlags::StringArray& configList,
91 SkCommandLineConfigArray* outResult);
92
93#endif