Index: src/core/SkShader.cpp |
diff --git a/src/core/SkShader.cpp b/src/core/SkShader.cpp |
index 47889f0d094d45ed0143ea92149f75e36a58ee60..b06e0c26ff6391e3125d21d847746b05d76c7aa0 100644 |
--- a/src/core/SkShader.cpp |
+++ b/src/core/SkShader.cpp |
@@ -5,13 +5,13 @@ |
* found in the LICENSE file. |
*/ |
- |
+#include "SkBitmapProcShader.h" |
+#include "SkReadBuffer.h" |
+#include "SkMallocPixelRef.h" |
+#include "SkPaint.h" |
#include "SkScalar.h" |
#include "SkShader.h" |
-#include "SkReadBuffer.h" |
#include "SkWriteBuffer.h" |
-#include "SkPaint.h" |
-#include "SkMallocPixelRef.h" |
SkShader::SkShader() { |
fLocalMatrix.reset(); |
@@ -176,7 +176,7 @@ GrEffectRef* SkShader::asNewEffect(GrContext*, const SkPaint&) const { |
SkShader* SkShader::CreateBitmapShader(const SkBitmap& src, |
TileMode tmx, TileMode tmy) { |
- return SkShader::CreateBitmapShader(src, tmx, tmy, NULL, 0); |
+ return ::CreateBitmapShader(src, tmx, tmy, NULL); |
} |
#ifdef SK_DEVELOPER |