HomeSort by relevance Sort by last modified time
    Searched refs:tmpVar1 (Results 1 - 2 of 2) sorted by null

  /external/skia/src/sksl/
SkSLGLSLCodeGenerator.cpp 247 // turns min(abs(x), y) into ((tmpVar1 = abs(x)) < (tmpVar2 = y) ? tmpVar1 : tmpVar2) to avoid a
251 String tmpVar1 = "minAbsHackVar" + to_string(fVarCount++);
254 this->getTypeName(absExpr.fType) + " " + tmpVar1 + ";\n";
257 this->write("((" + tmpVar1 + " = ");
261 this->write(") ? " + tmpVar1 + " : " + tmpVar2 + ")");
    [all...]
  /external/skqp/src/sksl/
SkSLGLSLCodeGenerator.cpp 251 // turns min(abs(x), y) into ((tmpVar1 = abs(x)) < (tmpVar2 = y) ? tmpVar1 : tmpVar2) to avoid a
255 String tmpVar1 = "minAbsHackVar" + to_string(fVarCount++);
258 this->getTypeName(absExpr.fType) + " " + tmpVar1 + ";\n";
261 this->write("((" + tmpVar1 + " = ");
265 this->write(") ? " + tmpVar1 + " : " + tmpVar2 + ")");
    [all...]

Completed in 482 milliseconds