diff options
author | 2018-03-14 11:15:27 -0600 | |
---|---|---|
committer | 2018-03-14 18:00:31 +0000 | |
commit | 85fcfc59b02f25db1710978cfd95aadeeb6727e9 (patch) | |
tree | 43e73fcaa6fa746bd3cfe10966b1f034dfc0b820 /src | |
parent | aa504cddb9196a3f5e798a280061ba6eb3c22901 (diff) |
Add incompleteShortIntPrecision to SkSL StandaloneShaderCaps
TBR=ethannicholas@google.com
Bug: skia:
Change-Id: If3b86e414d74072dd3e38a5507bbcbcecc3946f6
Reviewed-on: https://skia-review.googlesource.com/114378
Reviewed-by: Chris Dalton <csmartdalton@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/sksl/SkSLUtil.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sksl/SkSLUtil.h b/src/sksl/SkSLUtil.h index 113b13a644..41324ce8bd 100644 --- a/src/sksl/SkSLUtil.h +++ b/src/sksl/SkSLUtil.h @@ -166,6 +166,10 @@ public: bool canUseFragCoord() const { return true; } + + bool incompleteShortIntPrecision() const { + return false; + } }; extern StandaloneShaderCaps standaloneCaps; |