blob: 3f1056d113b3c86750d6d7d4f4f47d2cc985c288 [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
Bryce Thomas95a7b762018-03-02 13:54:21 -080022class SkCommandLineConfigSvg;
kkinnunen3e980c32015-12-23 01:33:00 -080023
24// SkCommandLineConfig represents a Skia rendering configuration string.
25// The string has following form:
26// tag:
27// [via-]*backend
bsalomon11abd8d2016-10-14 08:13:48 -070028// where 'backend' consists of chars excluding hyphen
kkinnunen3e980c32015-12-23 01:33:00 -080029// and each 'via' consists of chars excluding hyphen.
30class SkCommandLineConfig {
31 public:
32 SkCommandLineConfig(const SkString& tag, const SkString& backend,
33 const SkTArray<SkString>& viaParts);
34 virtual ~SkCommandLineConfig();
35#if SK_SUPPORT_GPU
36 virtual const SkCommandLineConfigGpu* asConfigGpu() const { return nullptr; }
37#endif
Bryce Thomas95a7b762018-03-02 13:54:21 -080038 virtual const SkCommandLineConfigSvg* asConfigSvg() const { return nullptr; }
kkinnunen3e980c32015-12-23 01:33:00 -080039 const SkString& getTag() const { return fTag; }
40 const SkString& getBackend() const { return fBackend; }
41 const SkTArray<SkString>& getViaParts() const { return fViaParts; }
42 private:
43 SkString fTag;
44 SkString fBackend;
45 SkTArray<SkString> fViaParts;
46};
47
48#if SK_SUPPORT_GPU
49// SkCommandLineConfigGpu is a SkCommandLineConfig that extracts information out of the backend
50// part of the tag. It is constructed tags that have:
Brian Salomon6405e712017-03-20 08:54:16 -040051// * backends of form "gpu[option=value,option2=value,...]"
Brian Salomon50f66d82017-03-17 14:32:05 -040052// * backends that represent a shorthand of above (such as "glmsaa16" representing
Brian Salomon6405e712017-03-20 08:54:16 -040053// "gpu(api=gl,samples=16)")
kkinnunen3e980c32015-12-23 01:33:00 -080054class SkCommandLineConfigGpu : public SkCommandLineConfig {
Brian Salomonf865b052018-03-09 09:01:53 -050055public:
56 enum class SurfType {
57 kDefault,
58 kBackendTexture,
59 kBackendRenderTarget
60 };
bsalomon85b4b532016-04-05 11:06:27 -070061 typedef sk_gpu_test::GrContextFactory::ContextType ContextType;
csmartdaltone812d492017-02-21 12:36:05 -070062 typedef sk_gpu_test::GrContextFactory::ContextOverrides ContextOverrides;
Brian Salomonf865b052018-03-09 09:01:53 -050063
kkinnunen3e980c32015-12-23 01:33:00 -080064 SkCommandLineConfigGpu(const SkString& tag, const SkTArray<SkString>& viaParts,
Brian Salomonf865b052018-03-09 09:01:53 -050065 ContextType contextType, bool useNVPR, bool useDIText, int samples,
66 SkColorType colorType, SkAlphaType alphaType,
Brian Osmanf9810662017-08-30 10:02:10 -040067 sk_sp<SkColorSpace> colorSpace, bool useStencilBuffers,
Brian Salomonf865b052018-03-09 09:01:53 -050068 bool testThreading, SurfType);
69
kkinnunen3e980c32015-12-23 01:33:00 -080070 const SkCommandLineConfigGpu* asConfigGpu() const override { return this; }
71 ContextType getContextType() const { return fContextType; }
csmartdaltone812d492017-02-21 12:36:05 -070072 ContextOverrides getContextOverrides() const { return fContextOverrides; }
73 bool getUseNVPR() const {
74 SkASSERT(!(fContextOverrides & ContextOverrides::kRequireNVPRSupport) ||
75 !(fContextOverrides & ContextOverrides::kDisableNVPR));
76 return fContextOverrides & ContextOverrides::kRequireNVPRSupport;
77 }
kkinnunen3e980c32015-12-23 01:33:00 -080078 bool getUseDIText() const { return fUseDIText; }
79 int getSamples() const { return fSamples; }
brianosmand93c1202016-03-10 07:49:08 -080080 SkColorType getColorType() const { return fColorType; }
Brian Salomonce5ee602017-07-17 11:31:31 -040081 SkAlphaType getAlphaType() const { return fAlphaType; }
brianosmanb109b8c2016-06-16 13:03:24 -070082 SkColorSpace* getColorSpace() const { return fColorSpace.get(); }
Brian Osmanf9810662017-08-30 10:02:10 -040083 bool getTestThreading() const { return fTestThreading; }
Brian Salomonf865b052018-03-09 09:01:53 -050084 SurfType getSurfType() const { return fSurfType; }
kkinnunen3e980c32015-12-23 01:33:00 -080085
Brian Salomonf865b052018-03-09 09:01:53 -050086private:
kkinnunen3e980c32015-12-23 01:33:00 -080087 ContextType fContextType;
csmartdaltone812d492017-02-21 12:36:05 -070088 ContextOverrides fContextOverrides;
kkinnunen3e980c32015-12-23 01:33:00 -080089 bool fUseDIText;
90 int fSamples;
brianosmand93c1202016-03-10 07:49:08 -080091 SkColorType fColorType;
Brian Salomonce5ee602017-07-17 11:31:31 -040092 SkAlphaType fAlphaType;
brianosmanb109b8c2016-06-16 13:03:24 -070093 sk_sp<SkColorSpace> fColorSpace;
Brian Osmanf9810662017-08-30 10:02:10 -040094 bool fTestThreading;
Brian Salomonf865b052018-03-09 09:01:53 -050095 SurfType fSurfType;
kkinnunen3e980c32015-12-23 01:33:00 -080096};
97#endif
98
Bryce Thomas95a7b762018-03-02 13:54:21 -080099// SkCommandLineConfigSvg is a SkCommandLineConfig that extracts information out of the backend
100// part of the tag. It is constructed tags that have:
101// * backends of form "svg[option=value,option2=value,...]"
102class SkCommandLineConfigSvg : public SkCommandLineConfig {
103public:
104 SkCommandLineConfigSvg(const SkString& tag, const SkTArray<SkString>& viaParts, int pageIndex);
105 const SkCommandLineConfigSvg* asConfigSvg() const override { return this; }
106
107 int getPageIndex() const { return fPageIndex; }
108
109private:
110 int fPageIndex;
111};
112
Ben Wagner145dbcd2016-11-03 14:40:50 -0400113typedef SkTArray<std::unique_ptr<SkCommandLineConfig>, true> SkCommandLineConfigArray;
kkinnunen3e980c32015-12-23 01:33:00 -0800114void ParseConfigs(const SkCommandLineFlags::StringArray& configList,
115 SkCommandLineConfigArray* outResult);
116
117#endif