| Index: tests/ClipCacheTest.cpp
|
| diff --git a/tests/ClipCacheTest.cpp b/tests/ClipCacheTest.cpp
|
| index 1df10538b5e6b509e8bfb3efc01baf5cae5964c8..1e195ccc2e8953df63eca1d31dd0cc3dc28bd4cc 100644
|
| --- a/tests/ClipCacheTest.cpp
|
| +++ b/tests/ClipCacheTest.cpp
|
| @@ -31,7 +31,7 @@ static GrTexture* createTexture(GrContext* context) {
|
| desc.fHeight = Y_SIZE;
|
|
|
| // We are initializing the texture with zeros here
|
| - GrTexture* texture = context->createUncachedTexture(desc, textureData, 0);
|
| + GrTexture* texture = context->createTexture(desc, false, textureData, 0);
|
| if (!texture) {
|
| return NULL;
|
| }
|
| @@ -52,7 +52,7 @@ static void test_clip_bounds(skiatest::Reporter* reporter, GrContext* context) {
|
| desc.fWidth = kXSize;
|
| desc.fHeight = kYSize;
|
|
|
| - GrTexture* texture = context->createUncachedTexture(desc, NULL, 0);
|
| + GrTexture* texture = context->createTexture(desc, false, NULL, 0);
|
| if (!texture) {
|
| return;
|
| }
|
|
|