OLD | NEW |
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 "SkGr.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_NULL_CONTEXT(GrTextureMipMapInvalidationTest, reporter, context)
{ | 22 DEF_GPUTEST_FOR_NULL_CONTEXT(GrTextureMipMapInvalidationTest, reporter, context)
{ |
23 GrSurfaceDesc desc; | 23 GrSurfaceDesc desc; |
24 desc.fConfig = kSkia8888_GrPixelConfig; | 24 desc.fConfig = kSkia8888_GrPixelConfig; |
25 desc.fFlags = kRenderTarget_GrSurfaceFlag; | 25 desc.fFlags = kRenderTarget_GrSurfaceFlag; |
26 desc.fWidth = 256; | 26 desc.fWidth = 256; |
27 desc.fHeight = 256; | 27 desc.fHeight = 256; |
28 desc.fSampleCnt = 0; | 28 desc.fSampleCnt = 0; |
29 GrSurface* texRT1 = context->textureProvider()->createTexture( | 29 GrSurface* texRT1 = context->textureProvider()->createTexture(desc, false, n
ullptr, 0); |
30 desc, SkBudgeted::kNo, nullptr, 0); | 30 GrSurface* texRT2 = context->textureProvider()->createTexture(desc, false, n
ullptr, 0); |
31 GrSurface* texRT2 = context->textureProvider()->createTexture( | |
32 desc, SkBudgeted::kNo, nullptr, 0); | |
33 REPORTER_ASSERT(reporter, nullptr != texRT1); | 31 REPORTER_ASSERT(reporter, nullptr != texRT1); |
34 REPORTER_ASSERT(reporter, nullptr != texRT2); | 32 REPORTER_ASSERT(reporter, nullptr != texRT2); |
35 GrTexture* tex = texRT1->asTexture(); | 33 GrTexture* tex = texRT1->asTexture(); |
36 REPORTER_ASSERT(reporter, nullptr != tex); | 34 REPORTER_ASSERT(reporter, nullptr != tex); |
37 SkBitmap bitmap; | 35 SkBitmap bitmap; |
38 GrWrapTextureInBitmap(tex, 256, 256, false, &bitmap); | 36 GrWrapTextureInBitmap(tex, 256, 256, false, &bitmap); |
39 | 37 |
40 // No mipmaps initially | 38 // No mipmaps initially |
41 REPORTER_ASSERT(reporter, false == tex->texturePriv().hasMipMaps()); | 39 REPORTER_ASSERT(reporter, false == tex->texturePriv().hasMipMaps()); |
42 | 40 |
(...skipping 12 matching lines...) Expand all Loading... |
55 bitmap.notifyPixelsChanged(); | 53 bitmap.notifyPixelsChanged(); |
56 REPORTER_ASSERT(reporter, true == tex->texturePriv().hasMipMaps()); | 54 REPORTER_ASSERT(reporter, true == tex->texturePriv().hasMipMaps()); |
57 REPORTER_ASSERT(reporter, true == tex->texturePriv().mipMapsAreDirty()); | 55 REPORTER_ASSERT(reporter, true == tex->texturePriv().mipMapsAreDirty()); |
58 | 56 |
59 surface->unref(); | 57 surface->unref(); |
60 texRT1->unref(); | 58 texRT1->unref(); |
61 texRT2->unref(); | 59 texRT2->unref(); |
62 } | 60 } |
63 | 61 |
64 #endif | 62 #endif |
OLD | NEW |