From: bsalomon@google.com Date: Thu, 5 May 2011 12:39:20 +0000 (+0000) Subject: Switch to GrGpuGLShaders (instead of GrGpuGLShaders2). X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~18551 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2ba4abbb3171e058b7f9b1d7c7954ee6989a21e6;p=platform%2Fupstream%2FlibSkiaSharp.git Switch to GrGpuGLShaders (instead of GrGpuGLShaders2). git-svn-id: http://skia.googlecode.com/svn/trunk@1251 2bbb7eff-a529-9590-31e7-b0007b416f81 --- diff --git a/gpu/include/GrConfig.h b/gpu/include/GrConfig.h index 2f89888..f1f2437 100644 --- a/gpu/include/GrConfig.h +++ b/gpu/include/GrConfig.h @@ -334,10 +334,6 @@ inline void GrCrash(const char* msg) { GrPrintf(msg); GrAlwaysAssert(false); } #define GR_DUMP_TEXTURE_UPLOAD 0 #endif -#ifndef GR_USE_NEW_GLSHADERS - #define GR_USE_NEW_GLSHADERS 0 -#endif - /** * GR_COLLECT_STATS controls whether the GrGpu class collects stats. * If not already defined then collect in debug build but not release. diff --git a/gpu/src/GrGpuFactory.cpp b/gpu/src/GrGpuFactory.cpp index 0e316a4..642a55b 100644 --- a/gpu/src/GrGpuFactory.cpp +++ b/gpu/src/GrGpuFactory.cpp @@ -55,10 +55,10 @@ GrGpu* GrGpu::Create(GrEngine engine, GrPlatform3DContext context3D) { case kOpenGL_Shaders_GrEngine: GrAssert(NULL == context3D); { -#if GR_USE_NEW_GLSHADERS - gpu = new GrGpuGLShaders; -#else +#if 0 // old code path, will be removed soon gpu = new GrGpuGLShaders2; +#else + gpu = new GrGpuGLShaders; #endif } break;