| Index: tests/VkClearTests.cpp
|
| diff --git a/tests/VkClearTests.cpp b/tests/VkClearTests.cpp
|
| index 60e79815282ae952fe47d15dda3e0d1c04ef6e3f..586d7e7728ad2fbe9ee7ab46985da34612906935 100644
|
| --- a/tests/VkClearTests.cpp
|
| +++ b/tests/VkClearTests.cpp
|
| @@ -58,7 +58,7 @@ void basic_clear_test(skiatest::Reporter* reporter, GrContext* context, GrPixelC
|
| surfDesc.fHeight = 5;
|
| surfDesc.fConfig = config;
|
| surfDesc.fSampleCnt = 0;
|
| - GrTexture* tex = gpu->createTexture(surfDesc, false, nullptr, 0);
|
| + GrTexture* tex = gpu->createTexture(surfDesc, SkBudgeted::kNo, nullptr, 0);
|
| SkASSERT(tex);
|
| SkASSERT(tex->asRenderTarget());
|
| SkIRect rect = SkIRect::MakeWH(5, 5);
|
| @@ -113,7 +113,7 @@ void sub_clear_test(skiatest::Reporter* reporter, GrContext* context, GrPixelCon
|
| surfDesc.fHeight = height;
|
| surfDesc.fConfig = config;
|
| surfDesc.fSampleCnt = 0;
|
| - GrTexture* tex = gpu->createTexture(surfDesc, false, nullptr, 0);
|
| + GrTexture* tex = gpu->createTexture(surfDesc, SkBudgeted::kNo, nullptr, 0);
|
| SkASSERT(tex);
|
| SkASSERT(tex->asRenderTarget());
|
|
|
|
|