aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/gpucts/gm_runner.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gpucts/gm_runner.h')
-rw-r--r--tools/gpucts/gm_runner.h65
1 files changed, 0 insertions, 65 deletions
diff --git a/tools/gpucts/gm_runner.h b/tools/gpucts/gm_runner.h
deleted file mode 100644
index cd0d7d32bb..0000000000
--- a/tools/gpucts/gm_runner.h
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Copyright 2017 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-#ifndef gm_runner_DEFINED
-#define gm_runner_DEFINED
-
-#include <memory>
-#include <string>
-#include <vector>
-
-#include "gm_knowledge.h"
-
-/**
-A Skia GM is a single rendering test that can be executed on any Skia backend Canvas.
-*/
-namespace skiagm {
- class GM;
-}
-
-namespace sk_gpu_test {
- class GrContextFactory;
-}
-
-namespace gm_runner {
-
-using GMFactory = skiagm::GM* (*)(void*);
-
-enum class SkiaBackend {
- kGL,
- kGLES,
- kVulkan,
-};
-
-bool BackendSupported(SkiaBackend);
-
-/**
-@return a list of all Skia GMs in lexicographic order.
-*/
-std::vector<GMFactory> GetGMFactories();
-
-/**
-@return a descriptive name for the GM.
-*/
-std::string GetGMName(GMFactory);
-/**
-@return a descriptive name for the backend.
-*/
-const char* GetBackendName(SkiaBackend);
-
-/**
-Execute the given GM on the given Skia backend. Then copy the pixels into the
-storage (overwriting existing contents of storage).
-
-@return the rendered image. Return a null ImageData on error.
-*/
-GMK_ImageData Evaluate(SkiaBackend,
- GMFactory,
- std::vector<uint32_t>* storage);
-
-} // namespace gm_runner
-
-#endif // gm_runner_DEFINED