From 177e695589edb1f776cc5c28b9d3eee244d48284 Mon Sep 17 00:00:00 2001 From: Greg Daniel Date: Thu, 12 Oct 2017 12:27:11 -0400 Subject: Add flag on GrBackendTexture to say whether texture is mipped or not Bug: skia: Change-Id: Ia684e3daf779ec2feaaec64c04dabf5cb03cd07a Reviewed-on: https://skia-review.googlesource.com/57821 Reviewed-by: Brian Salomon Commit-Queue: Greg Daniel --- tests/WritePixelsTest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/WritePixelsTest.cpp') diff --git a/tests/WritePixelsTest.cpp b/tests/WritePixelsTest.cpp index 7ea0aad12f..92390ae023 100644 --- a/tests/WritePixelsTest.cpp +++ b/tests/WritePixelsTest.cpp @@ -431,7 +431,8 @@ DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WritePixelsNonTexture_Gpu, reporter, ctxInfo) auto handle = context->getGpu()->createTestingOnlyBackendTexture( nullptr, DEV_W, DEV_H, kSkia8888_GrPixelConfig, true); GrBackendTexture backendTexture = GrTest::CreateBackendTexture( - ctxInfo.backend(), DEV_W, DEV_H, kSkia8888_GrPixelConfig, handle); + ctxInfo.backend(), DEV_W, DEV_H, kSkia8888_GrPixelConfig, GrMipMapped::kNo, + handle); sk_sp surface(SkSurface::MakeFromBackendTextureAsRenderTarget( context, backendTexture, origin, sampleCnt, nullptr, nullptr)); if (!surface) { -- cgit v1.2.3