Chromium Code Reviews| Index: tests/BlurTest.cpp |
| diff --git a/tests/BlurTest.cpp b/tests/BlurTest.cpp |
| index c09a4ee1c664e548107c739b6d5f13a7c1728c95..f59635549ea18118b3592337f5af60f0e16c4764 100644 |
| --- a/tests/BlurTest.cpp |
| +++ b/tests/BlurTest.cpp |
| @@ -277,7 +277,8 @@ static bool gpu_blur_path(GrContextFactory* factory, const SkPath& path, |
| SkScalar gaussianSigma, |
| int* result, int resultCount) { |
| - GrContext* grContext = factory->get(GrContextFactory::kNative_GLContextType); |
| + GrContext* grContext = factory->get(GrContextFactory::kNative_GLContextType, |
| + kNone_GrGLStandard); |
|
mtklein
2014/06/09 14:10:46
Passing kNone in all these tests reads weird. Can
robertphillips
2014/06/09 14:31:05
I agree - it is kind of weird.
Kimmo Kinnunen
2014/06/16 12:36:40
That would be double the weird for all the other f
|
| if (NULL == grContext) { |
| return false; |
| } |