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