OLD | NEW |
---|---|
(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) | |
OLD | NEW |