aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/GMBench.h
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2017-10-11 15:34:27 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-10-11 20:32:49 +0000
commit0b4d8aa108f2fd14f1ee4de1affacab166d7a357 (patch)
tree1a63c56bd675ebf9400980f25ebc61bb88bfaa56 /bench/GMBench.h
parentba1c7901a7448a388fd835e487b6b9d223236826 (diff)
Add benchmark for comparing multitexturing to non-multitexturing image draws.
Allows benchmarks to override GrContextOptions. Removes the ability to use the same GrContext for all benchmarks in a config. Change-Id: I5ab9f6e81055451ac912a66537843d1a49f3b479 Reviewed-on: https://skia-review.googlesource.com/34080 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'bench/GMBench.h')
-rw-r--r--bench/GMBench.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/bench/GMBench.h b/bench/GMBench.h
index c9ec80c643..5a917ad2a7 100644
--- a/bench/GMBench.h
+++ b/bench/GMBench.h
@@ -20,6 +20,10 @@ public:
GMBench(skiagm::GM* gm);
~GMBench() override;
+ void modifyGrContextOptions(GrContextOptions* options) override {
+ return fGM->modifyGrContextOptions(options);
+ }
+
protected:
const char* onGetName() override;
bool isSuitableFor(Backend backend) override;