diff options
author | Brian Salomon <bsalomon@google.com> | 2016-11-29 13:43:05 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2016-11-29 19:32:31 +0000 |
commit | 94efbf51f5a88d9e8aa961d3fbe38c5e335d6108 (patch) | |
tree | 2723f6ec5bfc291d4a52adf961165e3e74a098ca /tests | |
parent | e11b614795bbe707d131ad599ead5be452e7c06f (diff) |
Merge GrGLSLCaps into GrShaderCaps
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=5121
Change-Id: If8d13638f80f42161cbc766a2666c5789e5772c8
Reviewed-on: https://skia-review.googlesource.com/5121
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
Commit-Queue: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/EGLImageTest.cpp | 2 | ||||
-rw-r--r-- | tests/GLProgramsTest.cpp | 6 | ||||
-rw-r--r-- | tests/ImageStorageTest.cpp | 2 | ||||
-rw-r--r-- | tests/PrimitiveProcessorTest.cpp | 4 | ||||
-rw-r--r-- | tests/SkSLGLSLTest.cpp | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/tests/EGLImageTest.cpp b/tests/EGLImageTest.cpp index 8354a8d03a..82293625ef 100644 --- a/tests/EGLImageTest.cpp +++ b/tests/EGLImageTest.cpp @@ -9,10 +9,10 @@ #if SK_SUPPORT_GPU #include "GrContext.h" #include "GrContextFactory.h" +#include "GrShaderCaps.h" #include "gl/GrGLGpu.h" #include "gl/GrGLUtil.h" #include "gl/GLTestContext.h" -#include "glsl/GrGLSLCaps.h" using sk_gpu_test::GLTestContext; diff --git a/tests/GLProgramsTest.cpp b/tests/GLProgramsTest.cpp index 12a5b5cba6..07daa8fea5 100644 --- a/tests/GLProgramsTest.cpp +++ b/tests/GLProgramsTest.cpp @@ -55,7 +55,7 @@ public: } } - static void GenKey(const GrProcessor& processor, const GrGLSLCaps&, GrProcessorKeyBuilder* b) { + static void GenKey(const GrProcessor&, const GrShaderCaps&, GrProcessorKeyBuilder* b) { for (uint32_t i = 0; i < kMaxKeySize; i++) { b->add32(i); } @@ -81,7 +81,7 @@ private: BigKeyProcessor() { this->initClassID<BigKeyProcessor>(); } - virtual void onGetGLSLProcessorKey(const GrGLSLCaps& caps, + virtual void onGetGLSLProcessorKey(const GrShaderCaps& caps, GrProcessorKeyBuilder* b) const override { GLBigKeyProcessor::GenKey(*this, caps, b); } @@ -127,7 +127,7 @@ private: this->registerChildProcessor(std::move(child)); } - void onGetGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const override {} + void onGetGLSLProcessorKey(const GrShaderCaps& caps, GrProcessorKeyBuilder* b) const override {} bool onIsEqual(const GrFragmentProcessor&) const override { return true; } diff --git a/tests/ImageStorageTest.cpp b/tests/ImageStorageTest.cpp index 415774aaa2..40681745db 100644 --- a/tests/ImageStorageTest.cpp +++ b/tests/ImageStorageTest.cpp @@ -34,7 +34,7 @@ DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ImageStorageLoad, reporter, ctxInfo) { this->addImageStorageAccess(&fImageStorageAccess); } - void onGetGLSLProcessorKey(const GrGLSLCaps&, GrProcessorKeyBuilder*) const override {} + void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override {} void onComputeInvariantOutput(GrInvariantOutput* inout) const override { inout->setToUnknown(GrInvariantOutput::kWillNot_ReadInput); diff --git a/tests/PrimitiveProcessorTest.cpp b/tests/PrimitiveProcessorTest.cpp index 4900ed6e84..9a338a8af5 100644 --- a/tests/PrimitiveProcessorTest.cpp +++ b/tests/PrimitiveProcessorTest.cpp @@ -62,7 +62,7 @@ private: } const char* name() const override { return "Dummy GP"; } - GrGLSLPrimitiveProcessor* createGLSLInstance(const GrGLSLCaps&) const override { + GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const override { class GLSLGP : public GrGLSLGeometryProcessor { public: void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override { @@ -79,7 +79,7 @@ private: }; return new GLSLGP(); } - void getGLSLProcessorKey(const GrGLSLCaps&, + void getGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder* builder) const override { builder->add32(this->numAttribs()); } diff --git a/tests/SkSLGLSLTest.cpp b/tests/SkSLGLSLTest.cpp index 490c4379fb..b944bc449f 100644 --- a/tests/SkSLGLSLTest.cpp +++ b/tests/SkSLGLSLTest.cpp @@ -11,7 +11,7 @@ #if SK_SUPPORT_GPU -static void test(skiatest::Reporter* r, const char* src, const GrGLSLCaps& caps, +static void test(skiatest::Reporter* r, const char* src, const GrShaderCaps& caps, const char* expected) { SkSL::Compiler compiler; SkString output; |