blob: 166c57c0664cf00d782a327d2e7879867531c600 [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 "GrTexture.h"
14#include "GrTexturePriv.h"
15#include "SkCanvas.h"
bsalomonb1792f12016-07-14 09:24:08 -070016#include "SkImage_Base.h"
junovda5469d2015-06-15 09:48:15 -070017#include "SkSurface.h"
18#include "Test.h"
19
bsalomonb1792f12016-07-14 09:24:08 -070020// Tests that MIP maps are created and invalidated as expected when drawing to and from GrTextures.
bsalomon758586c2016-04-06 14:02:39 -070021DEF_GPUTEST_FOR_NULLGL_CONTEXT(GrTextureMipMapInvalidationTest, reporter, ctxInfo) {
bsalomonb1792f12016-07-14 09:24:08 -070022 auto isMipped = [] (SkSurface* surf) {
23 return as_IB(surf->makeImageSnapshot(SkBudgeted::kYes))->
24 peekTexture()->texturePriv().hasMipMaps();
25 };
26
27 auto mipsAreDirty = [] (SkSurface* surf) {
28 return as_IB(surf->makeImageSnapshot(SkBudgeted::kYes))->
29 peekTexture()->texturePriv().mipMapsAreDirty();
30 };
31
bsalomon8b7451a2016-05-11 06:33:06 -070032 GrContext* context = ctxInfo.grContext();
bsalomonb1792f12016-07-14 09:24:08 -070033 auto info = SkImageInfo::MakeN32Premul(256, 256);
34 auto surf1 = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info);
35 auto surf2 = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info);
36 // Draw something just in case we ever had a solid color optimization
37 surf1->getCanvas()->drawCircle(128, 128, 50, SkPaint());
38 surf1->getCanvas()->flush();
junovda5469d2015-06-15 09:48:15 -070039
kkinnunen15302832015-12-01 04:35:26 -080040 // No mipmaps initially
bsalomonb1792f12016-07-14 09:24:08 -070041 REPORTER_ASSERT(reporter, !isMipped(surf1.get()));
junovda5469d2015-06-15 09:48:15 -070042
kkinnunen15302832015-12-01 04:35:26 -080043 // Painting with downscale and medium filter quality should result in mipmap creation
kkinnunen15302832015-12-01 04:35:26 -080044 SkPaint paint;
45 paint.setFilterQuality(kMedium_SkFilterQuality);
bsalomonb1792f12016-07-14 09:24:08 -070046 surf2->getCanvas()->scale(0.2f, 0.2f);
47 surf2->getCanvas()->drawImage(surf1->makeImageSnapshot(SkBudgeted::kYes), 0, 0, &paint);
48 surf2->getCanvas()->flush();
49 REPORTER_ASSERT(reporter, isMipped(surf1.get()));
50 REPORTER_ASSERT(reporter, !mipsAreDirty(surf1.get()));
junovda5469d2015-06-15 09:48:15 -070051
bsalomonb1792f12016-07-14 09:24:08 -070052 // Changing the contents of the surface should invalidate the mipmap, but not de-allocate
53 surf1->getCanvas()->drawCircle(128, 128, 100, SkPaint());
54 surf1->getCanvas()->flush();
55 REPORTER_ASSERT(reporter, isMipped(surf1.get()));
56 REPORTER_ASSERT(reporter, mipsAreDirty(surf1.get()));
junovda5469d2015-06-15 09:48:15 -070057}
58
59#endif