Index: src/gpu/effects/GrConvolutionEffect.cpp |
diff --git a/src/gpu/effects/GrConvolutionEffect.cpp b/src/gpu/effects/GrConvolutionEffect.cpp |
index ba9f8146c8620007f5fb53c917884253626fa407..90a655c920037eda0061affe723d813247de1782 100644 |
--- a/src/gpu/effects/GrConvolutionEffect.cpp |
+++ b/src/gpu/effects/GrConvolutionEffect.cpp |
@@ -158,7 +158,7 @@ GrConvolutionEffect::GrConvolutionEffect(GrTexture* texture, |
float bounds[2]) |
: Gr1DKernelEffect(texture, direction, radius), fUseBounds(useBounds) { |
SkASSERT(radius <= kMaxKernelRadius); |
- SkASSERT(NULL != kernel); |
+ SkASSERT(kernel); |
int width = this->width(); |
for (int i = 0; i < width; i++) { |
fKernel[i] = kernel[i]; |