junov | da5469d | 2015-06-15 09:48:15 -0700 | [diff] [blame] | 1 | /* |
bsalomon | b1792f1 | 2016-07-14 09:24:08 -0700 | [diff] [blame] | 2 | * Copyright 2016 Google Inc. |
junov | da5469d | 2015-06-15 09:48:15 -0700 | [diff] [blame] | 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "SkTypes.h" |
| 9 | |
| 10 | #if SK_SUPPORT_GPU |
| 11 | |
| 12 | #include "GrContext.h" |
junov | da5469d | 2015-06-15 09:48:15 -0700 | [diff] [blame] | 13 | #include "GrTexture.h" |
| 14 | #include "GrTexturePriv.h" |
| 15 | #include "SkCanvas.h" |
bsalomon | b1792f1 | 2016-07-14 09:24:08 -0700 | [diff] [blame] | 16 | #include "SkImage_Base.h" |
junov | da5469d | 2015-06-15 09:48:15 -0700 | [diff] [blame] | 17 | #include "SkSurface.h" |
| 18 | #include "Test.h" |
| 19 | |
bsalomon | b1792f1 | 2016-07-14 09:24:08 -0700 | [diff] [blame] | 20 | // Tests that MIP maps are created and invalidated as expected when drawing to and from GrTextures. |
bsalomon | 758586c | 2016-04-06 14:02:39 -0700 | [diff] [blame] | 21 | DEF_GPUTEST_FOR_NULLGL_CONTEXT(GrTextureMipMapInvalidationTest, reporter, ctxInfo) { |
bsalomon | b1792f1 | 2016-07-14 09:24:08 -0700 | [diff] [blame] | 22 | auto isMipped = [] (SkSurface* surf) { |
Robert Phillips | ac6b1fa | 2017-03-20 08:38:50 -0400 | [diff] [blame] | 23 | return as_IB(surf->makeImageSnapshot())->peekTexture()->texturePriv().hasMipMaps(); |
bsalomon | b1792f1 | 2016-07-14 09:24:08 -0700 | [diff] [blame] | 24 | }; |
| 25 | |
| 26 | auto mipsAreDirty = [] (SkSurface* surf) { |
Robert Phillips | ac6b1fa | 2017-03-20 08:38:50 -0400 | [diff] [blame] | 27 | return as_IB(surf->makeImageSnapshot())->peekTexture()->texturePriv().mipMapsAreDirty(); |
bsalomon | b1792f1 | 2016-07-14 09:24:08 -0700 | [diff] [blame] | 28 | }; |
| 29 | |
bsalomon | 8b7451a | 2016-05-11 06:33:06 -0700 | [diff] [blame] | 30 | GrContext* context = ctxInfo.grContext(); |
bsalomon | b1792f1 | 2016-07-14 09:24:08 -0700 | [diff] [blame] | 31 | auto info = SkImageInfo::MakeN32Premul(256, 256); |
| 32 | auto surf1 = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info); |
| 33 | auto surf2 = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info); |
| 34 | // Draw something just in case we ever had a solid color optimization |
| 35 | surf1->getCanvas()->drawCircle(128, 128, 50, SkPaint()); |
| 36 | surf1->getCanvas()->flush(); |
junov | da5469d | 2015-06-15 09:48:15 -0700 | [diff] [blame] | 37 | |
kkinnunen | 1530283 | 2015-12-01 04:35:26 -0800 | [diff] [blame] | 38 | // No mipmaps initially |
bsalomon | b1792f1 | 2016-07-14 09:24:08 -0700 | [diff] [blame] | 39 | REPORTER_ASSERT(reporter, !isMipped(surf1.get())); |
junov | da5469d | 2015-06-15 09:48:15 -0700 | [diff] [blame] | 40 | |
kkinnunen | 1530283 | 2015-12-01 04:35:26 -0800 | [diff] [blame] | 41 | // Painting with downscale and medium filter quality should result in mipmap creation |
kkinnunen | 1530283 | 2015-12-01 04:35:26 -0800 | [diff] [blame] | 42 | SkPaint paint; |
| 43 | paint.setFilterQuality(kMedium_SkFilterQuality); |
bsalomon | b1792f1 | 2016-07-14 09:24:08 -0700 | [diff] [blame] | 44 | surf2->getCanvas()->scale(0.2f, 0.2f); |
Robert Phillips | ac6b1fa | 2017-03-20 08:38:50 -0400 | [diff] [blame] | 45 | surf2->getCanvas()->drawImage(surf1->makeImageSnapshot(), 0, 0, &paint); |
bsalomon | b1792f1 | 2016-07-14 09:24:08 -0700 | [diff] [blame] | 46 | surf2->getCanvas()->flush(); |
| 47 | REPORTER_ASSERT(reporter, isMipped(surf1.get())); |
| 48 | REPORTER_ASSERT(reporter, !mipsAreDirty(surf1.get())); |
junov | da5469d | 2015-06-15 09:48:15 -0700 | [diff] [blame] | 49 | |
bsalomon | b1792f1 | 2016-07-14 09:24:08 -0700 | [diff] [blame] | 50 | // Changing the contents of the surface should invalidate the mipmap, but not de-allocate |
| 51 | surf1->getCanvas()->drawCircle(128, 128, 100, SkPaint()); |
| 52 | surf1->getCanvas()->flush(); |
| 53 | REPORTER_ASSERT(reporter, isMipped(surf1.get())); |
| 54 | REPORTER_ASSERT(reporter, mipsAreDirty(surf1.get())); |
junov | da5469d | 2015-06-15 09:48:15 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | #endif |