Index: src/gpu/gl/GrGLCaps.cpp |
diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp |
index a60230a2fe91de7e744a27a002cac988e6b3f912..d13bb281ea9ca45438c41301af7d2592740bd34e 100644 |
--- a/src/gpu/gl/GrGLCaps.cpp |
+++ b/src/gpu/gl/GrGLCaps.cpp |
@@ -312,7 +312,7 @@ void GrGLCaps::init(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) { |
fPathRenderingSupport = ctxInfo.hasExtension("GL_NV_path_rendering"); |
SkASSERT(!fPathRenderingSupport || fFixedFunctionSupport); |
- fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker"); |
+ fGpuTracingSupport = true;//ctxInfo.hasExtension("GL_EXT_debug_marker"); |
bsalomon
2014/03/17 17:50:38
:)
egdaniel
2014/03/17 19:49:12
another part of my debugging...
On 2014/03/17 17:5
|
fDstReadInShaderSupport = kNone_FBFetchType != fFBFetchType; |