Home
last modified time | relevance | path

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

/developers/samples/android/common/src/java/com/example/android/common/midi/synth/
DSawOscillator.java20 private float mPhase = 0.0f; field in SawOscillator
58 mPhase += mPhaseIncrement; in incrementWrapPhase()
59 while (mPhase > 1.0) { in incrementWrapPhase()
60 mPhase -= 2.0; in incrementWrapPhase()
62 while (mPhase < -1.0) { in incrementWrapPhase()
63 mPhase += 2.0; in incrementWrapPhase()
65 return mPhase; in incrementWrapPhase()