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

Side by Side Diff: tools/gpu/GrContextFactory.cpp.rej

Issue 1815823002: Move SkGLContext and some GrGLInterface implementations to skgputest module (Closed) Base URL: https://chromium.googlesource.com/skia.git@debugobject
Patch Set: rebase, readd null interface to main lib Created 4 years, 8 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
OLDNEW
(Empty)
1 diff a/tools/gpu/GrContextFactory.cpp b/tools/gpu/GrContextFactory.cpp (rejecte d hunks)
2 @@ -7,22 +7,23 @@
3 */
4
jvanverth1 2016/03/28 20:26:35 This file doesn't appear to belong here.
bsalomon 2016/03/28 20:46:25 D'oh forgot to add a filename filter to my git add
5 #include "GrContextFactory.h"
6 +#include "gl/GLContext.h"
7
8 #if SK_ANGLE
9 - #include "gl/angle/SkANGLEGLContext.h"
10 + #include "gl/angle/GLContext_angle.h"
11 #endif
12 #if SK_COMMAND_BUFFER
13 - #include "gl/command_buffer/SkCommandBufferGLContext.h"
14 + #include "gl/command_buffer/GLContext_command_buffer.h"
15 #endif
16 -#include "gl/debug/SkDebugGLContext.h"
17 +#include "gl/debug/DebugGLContext.h"
18 #if SK_MESA
19 - #include "gl/mesa/SkMesaGLContext.h"
20 + #include "gl/mesa/GLContext_mesa.h"
21 #endif
22 -#include "gl/SkGLContext.h"
23 -#include "gl/SkNullGLContext.h"
24 +#include "gl/null/NullGLContext.h"
25 #include "gl/GrGLGpu.h"
26 #include "GrCaps.h"
27
28 +namespace sk_gpu_test {
29 GrContextFactory::GrContextFactory() { }
30
31 GrContextFactory::GrContextFactory(const GrContextOptions& opts)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698