blob: cfb6853806a377ff0086e3598e936760486a3fcf [file] [log] [blame]
junovda5469d2015-06-15 09:48:15 -07001/*
bsalomonb1792f12016-07-14 09:24:08 -07002 * Copyright 2016 Google Inc.
junovda5469d2015-06-15 09:48:15 -07003 *
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"
junovda5469d2015-06-15 09:48:15 -070013#include "GrTexturePriv.h"
14#include "SkCanvas.h"
bsalomonb1792f12016-07-14 09:24:08 -070015#include "SkImage_Base.h"
junovda5469d2015-06-15 09:48:15 -070016#include "SkSurface.h"
17#include "Test.h"
18
bsalomonb1792f12016-07-14 09:24:08 -070019// Tests that MIP maps are created and invalidated as expected when drawing to and from GrTextures.
bsalomon758586c2016-04-06 14:02:39 -070020DEF_GPUTEST_FOR_NULLGL_CONTEXT(GrTextureMipMapInvalidationTest, reporter, ctxInfo) {
bsalomonb1792f12016-07-14 09:24:08 -070021 auto isMipped = [] (SkSurface* surf) {
Greg Daniele252f082017-10-23 16:05:23 -040022 const GrTexture* texture = surf->makeImageSnapshot()->getTexture();
23 return GrMipMapped::kYes == texture->texturePriv().mipMapped();
bsalomonb1792f12016-07-14 09:24:08 -070024 };
25
26 auto mipsAreDirty = [] (SkSurface* surf) {
Robert Phillips87444052017-06-23 14:09:30 -040027 return surf->makeImageSnapshot()->getTexture()->texturePriv().mipMapsAreDirty();
bsalomonb1792f12016-07-14 09:24:08 -070028 };
29
bsalomon8b7451a2016-05-11 06:33:06 -070030 GrContext* context = ctxInfo.grContext();
bsalomonb1792f12016-07-14 09:24:08 -070031 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();
junovda5469d2015-06-15 09:48:15 -070037
kkinnunen15302832015-12-01 04:35:26 -080038 // No mipmaps initially
bsalomonb1792f12016-07-14 09:24:08 -070039 REPORTER_ASSERT(reporter, !isMipped(surf1.get()));
junovda5469d2015-06-15 09:48:15 -070040
kkinnunen15302832015-12-01 04:35:26 -080041 // Painting with downscale and medium filter quality should result in mipmap creation
kkinnunen15302832015-12-01 04:35:26 -080042 SkPaint paint;
43 paint.setFilterQuality(kMedium_SkFilterQuality);
bsalomonb1792f12016-07-14 09:24:08 -070044 surf2->getCanvas()->scale(0.2f, 0.2f);
Robert Phillipsac6b1fa2017-03-20 08:38:50 -040045 surf2->getCanvas()->drawImage(surf1->makeImageSnapshot(), 0, 0, &paint);
bsalomonb1792f12016-07-14 09:24:08 -070046 surf2->getCanvas()->flush();
47 REPORTER_ASSERT(reporter, isMipped(surf1.get()));
48 REPORTER_ASSERT(reporter, !mipsAreDirty(surf1.get()));
junovda5469d2015-06-15 09:48:15 -070049
bsalomonb1792f12016-07-14 09:24:08 -070050 // 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()));
junovda5469d2015-06-15 09:48:15 -070055}
56
57#endif