gfx/skia/trunk/src/gpu/GrTest.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1
michael@0 2 /*
michael@0 3 * Copyright 2013 Google Inc.
michael@0 4 *
michael@0 5 * Use of this source code is governed by a BSD-style license that can be
michael@0 6 * found in the LICENSE file.
michael@0 7 */
michael@0 8
michael@0 9 #ifndef GrTest_DEFINED
michael@0 10 #define GrTest_DEFINED
michael@0 11
michael@0 12 #include "GrContext.h"
michael@0 13 #include "GrDrawTarget.h"
michael@0 14
michael@0 15 /** Allows a test to temporarily draw to a GrDrawTarget owned by a GrContext. Tests that use this
michael@0 16 should be careful not to mix using the GrDrawTarget directly and drawing via SkCanvas or
michael@0 17 GrContext. In the future this object may provide some guards to prevent this. */
michael@0 18 class GrTestTarget {
michael@0 19 public:
michael@0 20 GrTestTarget() {};
michael@0 21
michael@0 22 void init(GrContext*, GrDrawTarget*);
michael@0 23
michael@0 24 GrDrawTarget* target() { return fDrawTarget.get(); }
michael@0 25
michael@0 26 private:
michael@0 27 SkTLazy<GrDrawTarget::AutoStateRestore> fASR;
michael@0 28 SkTLazy<GrDrawTarget::AutoClipRestore> fACR;
michael@0 29 SkTLazy<GrDrawTarget::AutoGeometryPush> fAGP;
michael@0 30
michael@0 31 SkAutoTUnref<GrDrawTarget> fDrawTarget;
michael@0 32 SkAutoTUnref<GrContext> fContext;
michael@0 33 };
michael@0 34
michael@0 35 #endif

mercurial