diff options
author | Chris Dalton <csmartdalton@google.com> | 2018-02-14 13:38:14 -0700 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-02-15 19:37:52 +0000 |
commit | 602836138e02935885c77f9dd93dcb51a3ec9a64 (patch) | |
tree | 413bcff036614923dc1ca5146d9989a7aa5db165 /src/sksl | |
parent | 4013db8e081644b14aba5ab7f3ae08daaddb4405 (diff) |
Drop unused shader support for sample variables
Bug: skia:
Change-Id: I9e2b7da8c916703027d8dd4303ae67f4e69bcf87
Reviewed-on: https://skia-review.googlesource.com/107356
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
Diffstat (limited to 'src/sksl')
-rw-r--r-- | src/sksl/SkSLIRGenerator.cpp | 2 | ||||
-rw-r--r-- | src/sksl/SkSLUtil.h | 8 |
2 files changed, 0 insertions, 10 deletions
diff --git a/src/sksl/SkSLIRGenerator.cpp b/src/sksl/SkSLIRGenerator.cpp index 984c2e2449..78570ff024 100644 --- a/src/sksl/SkSLIRGenerator.cpp +++ b/src/sksl/SkSLIRGenerator.cpp @@ -130,8 +130,6 @@ static void fill_caps(const SKSL_CAPS_CLASS& caps, CAP(flatInterpolationSupport); CAP(noperspectiveInterpolationSupport); CAP(multisampleInterpolationSupport); - CAP(sampleVariablesSupport); - CAP(sampleMaskOverrideCoverageSupport); CAP(externalTextureSupport); CAP(texelFetchSupport); CAP(imageLoadStoreSupport); diff --git a/src/sksl/SkSLUtil.h b/src/sksl/SkSLUtil.h index 7c675eac16..c16156a413 100644 --- a/src/sksl/SkSLUtil.h +++ b/src/sksl/SkSLUtil.h @@ -99,14 +99,6 @@ public: return true; } - bool sampleVariablesSupport() const { - return true; - } - - bool sampleMaskOverrideCoverageSupport() const { - return true; - } - bool externalTextureSupport() const { return true; } |