Fix dumb copy/paste bug that breaks GLProgramTest on debug builds with GS support.

git-svn-id: http://skia.googlecode.com/svn/trunk@4553 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2012-07-11 19:35:52 +00:00
parent e9bb623e4d
commit 641ca9c808

View File

@ -546,7 +546,7 @@ bool compile_shaders(const GrGLContextInfo& gl,
GrPrintf(shader.c_str());
GrPrintf("\n");
#endif
if (!(programData->fVShaderID = compile_shader(gl, GR_GL_GEOMETRY_SHADER, shader))) {
if (!(programData->fGShaderID = compile_shader(gl, GR_GL_GEOMETRY_SHADER, shader))) {
return false;
}
} else {