| Index: tests/SurfaceTest.cpp
|
| diff --git a/tests/SurfaceTest.cpp b/tests/SurfaceTest.cpp
|
| index 63e47f1997c2605b8010b18b218fd41accf840fd..fab825bdeb42f19bc02243c5ce48bc0d0ca91c4e 100644
|
| --- a/tests/SurfaceTest.cpp
|
| +++ b/tests/SurfaceTest.cpp
|
| @@ -52,12 +52,12 @@ static SkSurface* createSurface(SurfaceType surfaceType, GrContext* context,
|
| }
|
| case kGpu_SurfaceType:
|
| #if SK_SUPPORT_GPU
|
| - return context ? SkSurface::NewRenderTarget(context, info) : NULL;
|
| + return context ? SkSurface::NewRenderTarget(context, info, 0, NULL) : NULL;
|
| #endif
|
| break;
|
| case kGpuScratch_SurfaceType:
|
| #if SK_SUPPORT_GPU
|
| - return context ? SkSurface::NewScratchRenderTarget(context, info) : NULL;
|
| + return context ? SkSurface::NewScratchRenderTarget(context, info, 0, NULL) : NULL;
|
| #endif
|
| break;
|
| }
|
|
|