HomeSort by relevance Sort by last modified time
    Searched defs:mGamma (Results 1 - 3 of 3) sorted by null

  /development/samples/RenderScript/Levels/src/com/android/rs/levels/
LevelsDalvikActivity.java 44 private float mGamma = 1.0f;
97 mGamma = (float)progress/100.0f;
98 mGamma = Math.max(mGamma, 0.1f);
99 mGamma = 1.0f / mGamma;
206 if (mGamma != 1.0f) {
207 r = (float)java.lang.Math.pow(r, mGamma);
208 g = (float)java.lang.Math.pow(g, mGamma);
209 b = (float)java.lang.Math.pow(b, mGamma);
    [all...]
LevelsRSActivity.java 50 private float mGamma = 1.0f;
112 mGamma = (float)progress/100.0f;
113 mGamma = Math.max(mGamma, 0.1f);
114 mGamma = 1.0f / mGamma;
115 mScript.set_gamma(mGamma);
180 mScript.set_gamma(mGamma);
  /frameworks/rs/
rsFont.h 191 float mGamma;

Completed in 222 milliseconds