Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(559)

Side by Side Diff: src/gpu/GrTest.h

Issue 1149553002: SkImage::NewFromYUVTexturesCopy (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix warnings Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/GrGpu.h ('k') | src/gpu/GrTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/GrGLInterface.h"
14 15
15 /** Allows a test to temporarily draw to a GrDrawTarget owned by a GrContext. Te sts that use this 16 /** 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 17 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 . */ 18 GrContext. In the future this object may provide some guards to prevent this . */
18 class GrTestTarget { 19 class GrTestTarget {
19 public: 20 public:
20 GrTestTarget() {}; 21 GrTestTarget() {};
21 22
22 void init(GrContext*, GrDrawTarget*); 23 void init(GrContext*, GrDrawTarget*, const GrGLInterface*);
23 24
24 GrDrawTarget* target() { return fDrawTarget.get(); } 25 GrDrawTarget* target() { return fDrawTarget.get(); }
25 26
27 /** Returns a GrGLInterface if the GrContext is backed by OpenGL. */
28 const GrGLInterface* glInterface() { return fGLInterface.get(); }
29
26 private: 30 private:
27 SkAutoTUnref<GrDrawTarget> fDrawTarget; 31 SkAutoTUnref<GrDrawTarget> fDrawTarget;
28 SkAutoTUnref<GrContext> fContext; 32 SkAutoTUnref<GrContext> fContext;
33 SkAutoTUnref<const GrGLInterface> fGLInterface;
29 }; 34 };
30 35
31 #endif 36 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrGpu.h ('k') | src/gpu/GrTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698