aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/GrCaps.h
diff options
context:
space:
mode:
authorGravatar ethannicholas <ethannicholas@google.com>2016-01-22 09:45:47 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-22 09:45:47 -0800
commit5366a09ed07e886dd5fd1b94828241c53df3726d (patch)
tree357aa47df476047ac6f5c37608344de2aa783c19 /include/gpu/GrCaps.h
parent1c2729c8bbb19ec60a0148e143ae6516faf452d6 (diff)
Revert of added support for PLS path rendering (patchset #16 id:360001 of https://codereview.chromium.org/1541903002/ )
Reason for revert: ASAN failure at src/gpu/GrXferProcessor.cpp:224 Original issue's description: > added support for PLS path rendering > > BUG=skia:3555 > GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1541903002 > > Committed: https://skia.googlesource.com/skia/+/7df3f5e127f8016d17b637cc48a6a4718f1a6822 TBR=bsalomon@google.com,egdaniel@google.com,joshualitt@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia:3555 GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1626553002 Review URL: https://codereview.chromium.org/1626553002
Diffstat (limited to 'include/gpu/GrCaps.h')
-rw-r--r--include/gpu/GrCaps.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/gpu/GrCaps.h b/include/gpu/GrCaps.h
index 05da8d7cad..e2e59c30a4 100644
--- a/include/gpu/GrCaps.h
+++ b/include/gpu/GrCaps.h
@@ -81,24 +81,6 @@ public:
*/
bool floatPrecisionVaries() const { return fShaderPrecisionVaries; }
- /**
- * PLS storage size in bytes (0 when not supported). The PLS spec defines a minimum size of 16
- * bytes whenever PLS is supported.
- */
- int pixelLocalStorageSize() const { return fPixelLocalStorageSize; }
-
- /**
- * True if this context supports the necessary extensions and features to enable the PLS path
- * renderer.
- */
- bool plsPathRenderingSupport() const {
-#if GR_ENABLE_PLS_PATH_RENDERING
- return fPLSPathRenderingSupport;
-#else
- return false;
-#endif
- }
-
protected:
/** Subclasses must call this after initialization in order to apply caps overrides requested by
the client. Note that overrides will only reduce the caps never expand them. */
@@ -112,8 +94,6 @@ protected:
bool fShaderPrecisionVaries;
PrecisionInfo fFloatPrecisions[kGrShaderTypeCount][kGrSLPrecisionCount];
- int fPixelLocalStorageSize;
- bool fPLSPathRenderingSupport;
private:
virtual void onApplyOptionsOverrides(const GrContextOptions&) {};