Home
last modified time | relevance | path

Searched refs:permFuncName (Results 1 – 1 of 1) sorted by relevance

/external/skia/src/shaders/
DSkPerlinNoiseShader.cpp1211 SkString permFuncName; in emitCode() local
1219 permCode.c_str(), &permFuncName); in emitCode()
1253 noiseCode.appendf("float A = %s(P.x) + P.y;", permFuncName.c_str()); in emitCode()
1254 noiseCode.appendf("float AA = %s(A) + P.z;", permFuncName.c_str()); in emitCode()
1255 noiseCode.appendf("float AB = %s(A + 1.0) + P.z;", permFuncName.c_str()); in emitCode()
1256 noiseCode.appendf("float B = %s(P.x + 1.0) + P.y;", permFuncName.c_str()); in emitCode()
1257 noiseCode.appendf("float BA = %s(B) + P.z;", permFuncName.c_str()); in emitCode()
1258 noiseCode.appendf("float BB = %s(B + 1.0) + P.z;", permFuncName.c_str()); in emitCode()
1261 gradFuncName.c_str(), permFuncName.c_str()); in emitCode()
1263 permFuncName.c_str()); in emitCode()
[all …]