| 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 | 14 |
| 15 /** Allows a test to temporarily draw to a GrDrawTarget owned by a GrContext. Te
sts that use this | 15 /** Allows a test to temporarily draw to a GrDrawTarget owned by a GrContext. Te
sts that use this |
| 16 should be careful not to mix using the GrDrawTarget directly and drawing via
SkCanvas or | 16 should be careful not to mix using the GrDrawTarget directly and drawing via
SkCanvas or |
| 17 GrContext. In the future this object may provide some guards to prevent this
. */ | 17 GrContext. In the future this object may provide some guards to prevent this
. */ |
| 18 class GrTestTarget { | 18 class GrTestTarget { |
| 19 public: | 19 public: |
| 20 GrTestTarget() {}; | 20 GrTestTarget() {}; |
| 21 | 21 |
| 22 void init(GrContext*, GrDrawTarget*); | 22 void init(GrContext*, GrDrawTarget*); |
| 23 | 23 |
| 24 GrDrawTarget* target() { return fDrawTarget.get(); } | 24 GrDrawTarget* target() { return fDrawTarget.get(); } |
| 25 | 25 |
| 26 private: | 26 private: |
| 27 SkTLazy<GrDrawTarget::AutoClipRestore> fACR; | |
| 28 SkTLazy<GrDrawTarget::AutoGeometryPush> fAGP; | 27 SkTLazy<GrDrawTarget::AutoGeometryPush> fAGP; |
| 29 | 28 |
| 30 SkAutoTUnref<GrDrawTarget> fDrawTarget; | 29 SkAutoTUnref<GrDrawTarget> fDrawTarget; |
| 31 SkAutoTUnref<GrContext> fContext; | 30 SkAutoTUnref<GrContext> fContext; |
| 32 }; | 31 }; |
| 33 | 32 |
| 34 #endif | 33 #endif |
| OLD | NEW |