OLD | NEW |
---|---|
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2013 Google Inc. | 3 * Copyright 2013 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 #ifndef GrTest_DEFINED | 9 #ifndef GrTest_DEFINED |
10 #define GrTest_DEFINED | 10 #define GrTest_DEFINED |
11 | 11 |
12 #include "GrContext.h" | 12 #include "GrContext.h" |
13 #include "GrDrawTarget.h" | 13 #include "GrDrawTarget.h" |
14 #include "gl/GrGLContext.h" | 14 #include "gl/GrGLContext.h" |
15 | 15 |
16 namespace GrTest { | |
17 void SetupAlwaysEvictAtlas(GrContext*); | |
bsalomon
2015/08/19 19:54:17
description?
| |
18 }; | |
19 | |
16 /** Allows a test to temporarily draw to a GrDrawTarget owned by a GrContext. Te sts that use this | 20 /** Allows a test to temporarily draw to a GrDrawTarget owned by a GrContext. Te sts that use this |
17 should be careful not to mix using the GrDrawTarget directly and drawing via SkCanvas or | 21 should be careful not to mix using the GrDrawTarget directly and drawing via SkCanvas or |
18 GrContext. In the future this object may provide some guards to prevent this . */ | 22 GrContext. In the future this object may provide some guards to prevent this . */ |
19 class GrTestTarget { | 23 class GrTestTarget { |
20 public: | 24 public: |
21 GrTestTarget() {}; | 25 GrTestTarget() {}; |
22 | 26 |
23 void init(GrContext*, GrDrawTarget*); | 27 void init(GrContext*, GrDrawTarget*); |
24 | 28 |
25 GrDrawTarget* target() { return fDrawTarget.get(); } | 29 GrDrawTarget* target() { return fDrawTarget.get(); } |
26 GrResourceProvider* resourceProvider() { return fContext->resourceProvider() ; } | 30 GrResourceProvider* resourceProvider() { return fContext->resourceProvider() ; } |
27 | 31 |
28 private: | 32 private: |
29 SkAutoTUnref<GrDrawTarget> fDrawTarget; | 33 SkAutoTUnref<GrDrawTarget> fDrawTarget; |
30 SkAutoTUnref<GrContext> fContext; | 34 SkAutoTUnref<GrContext> fContext; |
31 }; | 35 }; |
32 | 36 |
33 #endif | 37 #endif |
OLD | NEW |