Home
last modified time | relevance | path

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

/external/skia/experimental/SkPerlinNoiseShader2/
DSkPerlinNoiseShader2.cpp1171 SkString permFuncName; in emitCode() local
1179 permCode.c_str(), &permFuncName); in emitCode()
1213 noiseCode.appendf("float A = %s(P.x) + P.y;", permFuncName.c_str()); in emitCode()
1214 noiseCode.appendf("float AA = %s(A) + P.z;", permFuncName.c_str()); in emitCode()
1215 noiseCode.appendf("float AB = %s(A + 1.0) + P.z;", permFuncName.c_str()); in emitCode()
1216 noiseCode.appendf("float B = %s(P.x + 1.0) + P.y;", permFuncName.c_str()); in emitCode()
1217 noiseCode.appendf("float BA = %s(B) + P.z;", permFuncName.c_str()); in emitCode()
1218 noiseCode.appendf("float BB = %s(B + 1.0) + P.z;", permFuncName.c_str()); in emitCode()
1221 gradFuncName.c_str(), permFuncName.c_str()); in emitCode()
1223 permFuncName.c_str()); in emitCode()
[all …]