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 #ifndef GrTest_DEFINED | 8 #ifndef GrTest_DEFINED |
9 #define GrTest_DEFINED | 9 #define GrTest_DEFINED |
10 | 10 |
11 #include "GrContext.h" | 11 #include "GrContext.h" |
12 #include "GrDrawTarget.h" | 12 #include "GrDrawContext.h" |
13 #include "gl/GrGLContext.h" | |
14 | 13 |
15 namespace GrTest { | 14 namespace GrTest { |
16 /** | 15 /** |
17 * Forces the GrContext to use a small atlas which only has room for one plo
t and will thus | 16 * Forces the GrContext to use a small atlas which only has room for one plo
t and will thus |
18 * constantly be evicting entries | 17 * constantly be evicting entries |
19 */ | 18 */ |
20 void SetupAlwaysEvictAtlas(GrContext*); | 19 void SetupAlwaysEvictAtlas(GrContext*); |
21 }; | 20 }; |
22 | 21 |
23 /** TODO Please do not use this if you can avoid it. We are in the process of d
eleting it. | 22 /** TODO Please do not use this if you can avoid it. We are in the process of d
eleting it. |
24 Allows a test to temporarily draw to a GrDrawTarget owned by a GrContext. Te
sts that use this | 23 Allows a test to temporarily draw to a GrDrawTarget owned by a GrContext. Te
sts that use this |
25 should be careful not to mix using the GrDrawTarget directly and drawing via
SkCanvas or | 24 should be careful not to mix using the GrDrawTarget directly and drawing via
SkCanvas or |
26 GrContext. In the future this object may provide some guards to prevent this
. */ | 25 GrContext. In the future this object may provide some guards to prevent this
. */ |
27 class GrTestTarget { | 26 class GrTestTarget { |
28 public: | 27 public: |
29 GrTestTarget() {}; | 28 GrTestTarget() {}; |
30 | 29 |
31 void init(GrContext*, GrDrawTarget*, GrRenderTarget*); | 30 void init(GrContext*, sk_sp<GrDrawContext>); |
32 | 31 |
33 GrDrawTarget* target() { return fDrawTarget.get(); } | 32 GrDrawTarget* target() { return fDrawContext->getDrawTarget(); } |
34 GrResourceProvider* resourceProvider() { return fContext->resourceProvider()
; } | 33 GrResourceProvider* resourceProvider() { return fContext->resourceProvider()
; } |
35 | 34 |
36 private: | 35 private: |
37 SkAutoTUnref<GrContext> fContext; | 36 SkAutoTUnref<GrContext> fContext; |
38 SkAutoTUnref<GrDrawTarget> fDrawTarget; | 37 sk_sp<GrDrawContext> fDrawContext; |
39 SkAutoTUnref<GrRenderTarget> fRenderTarget; | |
40 }; | 38 }; |
41 | 39 |
42 #endif | 40 #endif |
OLD | NEW |