• Home
  • Raw
  • Download

Lines Matching refs:texcoords

282    std::vector<Value * > texcoords = extractVector(builder, in1);  in tex2D()  local
305 /*sType, */texcoords[0], textureWidth, textureW, &xLerp); in tex2D()
307 /*tType, */texcoords[1], textureHeight, textureH, &yLerp); in tex2D()
379 std::vector<Value * > texcoords = extractVector(builder, in1); in texCube() local
395 Value * mx = Fabs(builder, texcoords[0]), * my = Fabs(builder, texcoords[1]); in texCube()
396 Value * mz = Fabs(builder, texcoords[2]); in texCube()
409 condBranch.ifCond(FPositive(builder, texcoords[0])); in texCube()
412 builder.CreateStore(builder.CreateFNeg(texcoords[2]), sPtr); in texCube()
413 builder.CreateStore(builder.CreateFNeg(texcoords[1]), tPtr); in texCube()
419 builder.CreateStore((texcoords[2]), sPtr); in texCube()
420 builder.CreateStore(builder.CreateFNeg(texcoords[1]), tPtr); in texCube()
436 condBranch.ifCond(FPositive(builder, texcoords[1])); in texCube()
439 builder.CreateStore((texcoords[0]), sPtr); in texCube()
440 builder.CreateStore((texcoords[2]), tPtr); in texCube()
446 builder.CreateStore(texcoords[0], sPtr); in texCube()
447 builder.CreateStore(builder.CreateFNeg(texcoords[2]), tPtr); in texCube()
459 condBranch.ifCond(FPositive(builder, texcoords[2])); in texCube()
462 builder.CreateStore((texcoords[0]), sPtr); in texCube()
463 builder.CreateStore(builder.CreateFNeg(texcoords[1]), tPtr); in texCube()
469 builder.CreateStore(builder.CreateFNeg(texcoords[0]), sPtr); in texCube()
470 builder.CreateStore(builder.CreateFNeg(texcoords[1]), tPtr); in texCube()