80549fcdd5
Support using OpenGL ES context on desktop for unix and Android platforms. This is mainly useful in development. Add --gpuAPI flag to gm, dm, bench, bench_pictures and render_pictures. The possible parameters for the flag are "gl" and "gles". R=bsalomon@google.com, mtklein@google.com, robertphillips@google.com Author: kkinnunen@nvidia.com Review URL: https://codereview.chromium.org/319043005
67 lines
1.7 KiB
C++
67 lines
1.7 KiB
C++
#ifndef DMBenchTask_DEFINED
|
|
#define DMBenchTask_DEFINED
|
|
|
|
#include "Benchmark.h"
|
|
#include "DMReporter.h"
|
|
#include "DMTask.h"
|
|
#include "DMTaskRunner.h"
|
|
#include "SkString.h"
|
|
#include "SkTemplates.h"
|
|
|
|
// Tasks that run an Benchmark once as a check that it doesn't crash.
|
|
|
|
namespace DM {
|
|
|
|
class NonRenderingBenchTask : public CpuTask {
|
|
public:
|
|
NonRenderingBenchTask(const char* config, Reporter*, TaskRunner*, BenchRegistry::Factory);
|
|
|
|
virtual void draw() SK_OVERRIDE;
|
|
virtual bool shouldSkip() const SK_OVERRIDE;
|
|
virtual SkString name() const SK_OVERRIDE { return fName; }
|
|
|
|
private:
|
|
SkAutoTDelete<Benchmark> fBench;
|
|
const SkString fName;
|
|
};
|
|
|
|
class CpuBenchTask : public CpuTask {
|
|
public:
|
|
CpuBenchTask(const char* config, Reporter*, TaskRunner*, BenchRegistry::Factory, SkColorType);
|
|
|
|
virtual void draw() SK_OVERRIDE;
|
|
virtual bool shouldSkip() const SK_OVERRIDE;
|
|
virtual SkString name() const SK_OVERRIDE { return fName; }
|
|
|
|
private:
|
|
SkAutoTDelete<Benchmark> fBench;
|
|
const SkString fName;
|
|
const SkColorType fColorType;
|
|
};
|
|
|
|
class GpuBenchTask : public GpuTask {
|
|
public:
|
|
GpuBenchTask(const char* config,
|
|
Reporter*,
|
|
TaskRunner*,
|
|
BenchRegistry::Factory,
|
|
GrContextFactory::GLContextType,
|
|
GrGLStandard gpuAPI,
|
|
int sampleCount);
|
|
|
|
virtual void draw(GrContextFactory*) SK_OVERRIDE;
|
|
virtual bool shouldSkip() const SK_OVERRIDE;
|
|
virtual SkString name() const SK_OVERRIDE { return fName; }
|
|
|
|
private:
|
|
SkAutoTDelete<Benchmark> fBench;
|
|
const SkString fName;
|
|
const GrContextFactory::GLContextType fContextType;
|
|
const GrGLStandard fGpuAPI;
|
|
int fSampleCount;
|
|
};
|
|
|
|
} // namespace DM
|
|
|
|
#endif // DMBenchTask_DEFINED
|