diff options
author | Ethan Nicholas <ethannicholas@google.com> | 2016-11-10 16:42:58 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2016-11-11 14:33:34 +0000 |
commit | 8af38a96475ac5ce83b20c16d9cf82bf1006b8c4 (patch) | |
tree | 1815e5aa6bd534f038e28fb17fee897eec540df6 /src/gpu/glsl | |
parent | c51a3a4e3c81a1d4100d5d29d31bf3a02eda2a7c (diff) |
skslc now uses standard Skia caps
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4660
Change-Id: Idaedae3f81426b97f5052bb872cdf0610e47a84f
Reviewed-on: https://skia-review.googlesource.com/4660
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Diffstat (limited to 'src/gpu/glsl')
-rw-r--r-- | src/gpu/glsl/GrGLSLCaps.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gpu/glsl/GrGLSLCaps.h b/src/gpu/glsl/GrGLSLCaps.h index ac409a36ba..1a89d1690b 100644 --- a/src/gpu/glsl/GrGLSLCaps.h +++ b/src/gpu/glsl/GrGLSLCaps.h @@ -13,6 +13,10 @@ #include "GrGLSL.h" #include "GrSwizzle.h" +namespace SkSL { + class GLSLCapsFactory; +} + class GrGLSLCaps : public GrShaderCaps { public: @@ -231,6 +235,7 @@ private: friend class GrGLCaps; // For initialization. friend class GrVkCaps; + friend class SkSL::GLSLCapsFactory; typedef GrShaderCaps INHERITED; }; |