am 38cf0704: am e9a7d229: am 66b5a2b2: am 5150eb8f: Merge "Initialize pointer members to NULL to avoid illegal reference"

* commit '38cf0704f6fbfa6d41d5d10488ce25e645adb835':
  Initialize pointer members to NULL to avoid illegal reference
This commit is contained in:
Chris Craik
2014-01-17 19:30:31 +00:00
committed by Android Git Automerger

View File

@@ -145,7 +145,7 @@ struct SkiaBitmapShader: public SkiaShader {
GLuint* textureUnit); GLuint* textureUnit);
private: private:
SkiaBitmapShader() { SkiaBitmapShader() : mBitmap(NULL), mTexture(NULL) {
} }
SkBitmap* mBitmap; SkBitmap* mBitmap;