Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Side by Side Diff: tests/GrTextureMipMapInvalidationTest.cpp

Issue 2147053002: Remove GrWrapTextureInBitmap from public API (Closed) Base URL: https://chromium.googlesource.com/skia.git@wrap
Patch Set: rm SK_API Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/BitmapCopyTest.cpp ('k') | tests/ReadPixelsTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkTypes.h" 8 #include "SkTypes.h"
9 9
10 #if SK_SUPPORT_GPU 10 #if SK_SUPPORT_GPU
11 11
12 #include "GrContext.h" 12 #include "GrContext.h"
13 #include "GrTexture.h" 13 #include "GrTexture.h"
14 #include "GrTexturePriv.h" 14 #include "GrTexturePriv.h"
15 #include "SkCanvas.h" 15 #include "SkCanvas.h"
16 #include "SkGr.h" 16 #include "SkGrPriv.h"
17 #include "SkSurface.h" 17 #include "SkSurface.h"
18 #include "Test.h" 18 #include "Test.h"
19 19
20 // Tests that GrSurface::asTexture(), GrSurface::asRenderTarget(), and static up casting of texture 20 // Tests that GrSurface::asTexture(), GrSurface::asRenderTarget(), and static up casting of texture
21 // and render targets to GrSurface all work as expected. 21 // and render targets to GrSurface all work as expected.
22 DEF_GPUTEST_FOR_NULLGL_CONTEXT(GrTextureMipMapInvalidationTest, reporter, ctxInf o) { 22 DEF_GPUTEST_FOR_NULLGL_CONTEXT(GrTextureMipMapInvalidationTest, reporter, ctxInf o) {
23 GrContext* context = ctxInfo.grContext(); 23 GrContext* context = ctxInfo.grContext();
24 GrSurfaceDesc desc; 24 GrSurfaceDesc desc;
25 desc.fConfig = kSkia8888_GrPixelConfig; 25 desc.fConfig = kSkia8888_GrPixelConfig;
26 desc.fFlags = kRenderTarget_GrSurfaceFlag; 26 desc.fFlags = kRenderTarget_GrSurfaceFlag;
(...skipping 28 matching lines...) Expand all
55 // Invalidating the contents of the bitmap should invalidate the mipmap, but not de-allocate 55 // Invalidating the contents of the bitmap should invalidate the mipmap, but not de-allocate
56 bitmap.notifyPixelsChanged(); 56 bitmap.notifyPixelsChanged();
57 REPORTER_ASSERT(reporter, true == tex->texturePriv().hasMipMaps()); 57 REPORTER_ASSERT(reporter, true == tex->texturePriv().hasMipMaps());
58 REPORTER_ASSERT(reporter, true == tex->texturePriv().mipMapsAreDirty()); 58 REPORTER_ASSERT(reporter, true == tex->texturePriv().mipMapsAreDirty());
59 59
60 texRT1->unref(); 60 texRT1->unref();
61 texRT2->unref(); 61 texRT2->unref();
62 } 62 }
63 63
64 #endif 64 #endif
OLDNEW
« no previous file with comments | « tests/BitmapCopyTest.cpp ('k') | tests/ReadPixelsTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698