Index: src/core/SkNormalMapSource.h |
diff --git a/src/core/SkNormalMapSource.h b/src/core/SkNormalMapSource.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5908369fc7d8b71d630139b46925bd2434f6c27c |
--- /dev/null |
+++ b/src/core/SkNormalMapSource.h |
@@ -0,0 +1,62 @@ |
+/* |
+ * Copyright 2016 Google Inc. |
+ * |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+#ifndef SkNormalMapSource_DEFINED |
+#define SkNormalMapSource_DEFINED |
+ |
+#include "SkNormalSource.h" |
+ |
+class SkNormalMapSourceImpl : public SkNormalSource { |
+public: |
+ SkNormalMapSourceImpl(sk_sp<SkShader> mapShader, const SkMatrix& invCTM) |
+ : fMapShader(std::move(mapShader)) |
+ , fInvCTM(invCTM) {} |
+ |
+#if SK_SUPPORT_GPU |
+ sk_sp<GrFragmentProcessor> asFragmentProcessor(const SkShader::AsFPArgs&) const override; |
+#endif |
+ |
+ SkNormalSource::Provider* asProvider(const SkShader::ContextRec& rec, |
+ void* storage) const override; |
+ size_t providerSize(const SkShader::ContextRec& rec) const override; |
+ |
+ SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkNormalMapSourceImpl) |
+ |
+protected: |
+ void flatten(SkWriteBuffer& buf) const override; |
+ |
+ bool computeNormTotalInverse(const SkShader::ContextRec& rec, SkMatrix* normTotalInverse) const; |
+ |
+private: |
+ class Provider : public SkNormalSource::Provider { |
+ public: |
+ Provider(const SkNormalMapSourceImpl& source, SkShader::Context* mapContext, |
+ SkPaint* overridePaint); |
+ |
+ virtual ~Provider() override; |
+ |
+ void fillScanLine(int x, int y, SkPoint3 output[], int count) const override; |
+ |
+ private: |
+ const SkNormalMapSourceImpl& fSource; |
+ SkShader::Context* fMapContext; |
+ |
+ SkPaint* fOverridePaint; |
+ |
+ typedef SkNormalSource::Provider INHERITED; |
+ }; |
+ |
+ sk_sp<SkShader> fMapShader; |
+ SkMatrix fInvCTM; // Inverse of the canvas total matrix, used for rotating normals. |
+ |
+ friend class SkNormalSource; |
+ |
+ typedef SkNormalSource INHERITED; |
+}; |
+ |
+#endif |
+ |