297d096cfb
With this CL we can run as: dm --src gm skp tests --config grmtl -v --nocpu --nogpu and not get all the non-Graphite unit tests. Bug: skia:12466 Change-Id: Ib3f04f315fe4b5731a54e4c72979a0c1e00baf24 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/457898 Commit-Queue: Robert Phillips <robertphillips@google.com> Reviewed-by: Michael Ludwig <michaelludwig@google.com>
161 lines
6.8 KiB
C++
161 lines
6.8 KiB
C++
/*
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SK_COMMON_FLAGS_CONFIG_H
|
|
#define SK_COMMON_FLAGS_CONFIG_H
|
|
|
|
#include "tools/flags/CommandLineFlags.h"
|
|
#include "tools/gpu/GrContextFactory.h"
|
|
|
|
DECLARE_string(config);
|
|
|
|
class SkCommandLineConfigGpu;
|
|
class SkCommandLineConfigGraphite;
|
|
class SkCommandLineConfigSvg;
|
|
|
|
// SkCommandLineConfig represents a Skia rendering configuration string.
|
|
// The string has following form:
|
|
// tag:
|
|
// [via-]*backend
|
|
// where 'backend' consists of chars excluding hyphen
|
|
// and each 'via' consists of chars excluding hyphen.
|
|
class SkCommandLineConfig {
|
|
public:
|
|
SkCommandLineConfig(const SkString& tag,
|
|
const SkString& backend,
|
|
const SkTArray<SkString>& viaParts);
|
|
virtual ~SkCommandLineConfig();
|
|
virtual const SkCommandLineConfigGpu* asConfigGpu() const { return nullptr; }
|
|
virtual const SkCommandLineConfigGraphite* asConfigGraphite() const { return nullptr; }
|
|
virtual const SkCommandLineConfigSvg* asConfigSvg() const { return nullptr; }
|
|
const SkString& getTag() const { return fTag; }
|
|
const SkString& getBackend() const { return fBackend; }
|
|
sk_sp<SkColorSpace> refColorSpace() const { return fColorSpace; }
|
|
const SkTArray<SkString>& getViaParts() const { return fViaParts; }
|
|
|
|
private:
|
|
SkString fTag;
|
|
SkString fBackend;
|
|
sk_sp<SkColorSpace> fColorSpace;
|
|
SkTArray<SkString> fViaParts;
|
|
};
|
|
|
|
// SkCommandLineConfigGpu is a SkCommandLineConfig that extracts information out of the backend
|
|
// part of the tag. It is constructed tags that have:
|
|
// * backends of form "gpu[option=value,option2=value,...]"
|
|
// * backends that represent a shorthand of above (such as "glmsaa16" representing
|
|
// "gpu(api=gl,samples=16)")
|
|
class SkCommandLineConfigGpu : public SkCommandLineConfig {
|
|
public:
|
|
enum class SurfType { kDefault, kBackendTexture, kBackendRenderTarget };
|
|
typedef sk_gpu_test::GrContextFactory::ContextType ContextType;
|
|
typedef sk_gpu_test::GrContextFactory::ContextOverrides ContextOverrides;
|
|
|
|
SkCommandLineConfigGpu(const SkString& tag,
|
|
const SkTArray<SkString>& viaParts,
|
|
ContextType contextType,
|
|
bool fakeGLESVer2,
|
|
uint32_t surfaceFlags,
|
|
int samples,
|
|
SkColorType colorType,
|
|
SkAlphaType alphaType,
|
|
bool useStencilBuffers,
|
|
bool testThreading,
|
|
int testPersistentCache,
|
|
bool testPrecompile,
|
|
bool useDDLSink,
|
|
bool OOPRish,
|
|
bool reducedShaders,
|
|
SurfType);
|
|
|
|
const SkCommandLineConfigGpu* asConfigGpu() const override { return this; }
|
|
ContextType getContextType() const { return fContextType; }
|
|
ContextOverrides getContextOverrides() const { return fContextOverrides; }
|
|
uint32_t getSurfaceFlags() const { return fSurfaceFlags; }
|
|
int getSamples() const { return fSamples; }
|
|
SkColorType getColorType() const { return fColorType; }
|
|
SkAlphaType getAlphaType() const { return fAlphaType; }
|
|
bool getTestThreading() const { return fTestThreading; }
|
|
int getTestPersistentCache() const { return fTestPersistentCache; }
|
|
bool getTestPrecompile() const { return fTestPrecompile; }
|
|
bool getUseDDLSink() const { return fUseDDLSink; }
|
|
bool getOOPRish() const { return fOOPRish; }
|
|
bool getReducedShaders() const { return fReducedShaders; }
|
|
SurfType getSurfType() const { return fSurfType; }
|
|
|
|
private:
|
|
ContextType fContextType;
|
|
ContextOverrides fContextOverrides;
|
|
uint32_t fSurfaceFlags;
|
|
int fSamples;
|
|
SkColorType fColorType;
|
|
SkAlphaType fAlphaType;
|
|
bool fTestThreading;
|
|
int fTestPersistentCache;
|
|
bool fTestPrecompile;
|
|
bool fUseDDLSink;
|
|
bool fOOPRish;
|
|
bool fReducedShaders;
|
|
SurfType fSurfType;
|
|
};
|
|
|
|
#ifdef SK_GRAPHITE_ENABLED
|
|
|
|
#include "tools/graphite/ContextFactory.h"
|
|
|
|
class SkCommandLineConfigGraphite : public SkCommandLineConfig {
|
|
public:
|
|
using ContextType = skiatest::graphite::ContextFactory::ContextType;
|
|
|
|
SkCommandLineConfigGraphite(const SkString& tag,
|
|
const SkTArray<SkString>& viaParts,
|
|
ContextType contextType,
|
|
SkColorType colorType,
|
|
SkAlphaType alphaType,
|
|
bool testPrecompile)
|
|
: SkCommandLineConfig(tag, SkString("graphite"), viaParts)
|
|
, fContextType(contextType)
|
|
, fColorType(colorType)
|
|
, fAlphaType(alphaType)
|
|
, fTestPrecompile(testPrecompile) {
|
|
}
|
|
const SkCommandLineConfigGraphite* asConfigGraphite() const override { return this; }
|
|
|
|
ContextType getContextType() const { return fContextType; }
|
|
SkColorType getColorType() const { return fColorType; }
|
|
SkAlphaType getAlphaType() const { return fAlphaType; }
|
|
bool getTestPrecompile() const { return fTestPrecompile; }
|
|
|
|
private:
|
|
ContextType fContextType;
|
|
SkColorType fColorType;
|
|
SkAlphaType fAlphaType;
|
|
bool fTestPrecompile;
|
|
};
|
|
|
|
#endif // SK_GRAPHITE_ENABLED
|
|
|
|
// SkCommandLineConfigSvg is a SkCommandLineConfig that extracts information out of the backend
|
|
// part of the tag. It is constructed tags that have:
|
|
// * backends of form "svg[option=value,option2=value,...]"
|
|
class SkCommandLineConfigSvg : public SkCommandLineConfig {
|
|
public:
|
|
SkCommandLineConfigSvg(const SkString& tag, const SkTArray<SkString>& viaParts, int pageIndex);
|
|
const SkCommandLineConfigSvg* asConfigSvg() const override { return this; }
|
|
|
|
int getPageIndex() const { return fPageIndex; }
|
|
|
|
private:
|
|
int fPageIndex;
|
|
};
|
|
|
|
typedef SkTArray<std::unique_ptr<SkCommandLineConfig>, true> SkCommandLineConfigArray;
|
|
void ParseConfigs(const CommandLineFlags::StringArray& configList,
|
|
SkCommandLineConfigArray* outResult);
|
|
|
|
#endif
|