Changed '0.5f' to '0.5' in conical gradient shader to fix problem with shader compile on Mac.

git-svn-id: http://skia.googlecode.com/svn/trunk@4444 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
rileya@google.com 2012-07-03 14:11:05 +00:00
parent f1d4695cae
commit baaaeebf17

View File

@ -497,7 +497,7 @@ void GrGLConical2Gradient::emitFS(GrGLShaderBuilder* state,
// intermediate value we'll use to compute the roots
// q = -0.5 * (b +/- sqrt(d))
code->appendf("\tfloat %s = -0.5f * (%s + (%s < 0.0 ? -1.0 : 1.0)"
code->appendf("\tfloat %s = -0.5 * (%s + (%s < 0.0 ? -1.0 : 1.0)"
" * sqrt(%s));\n", qName.c_str(), bVar.c_str(),
bVar.c_str(), dName.c_str());