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

  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestSpatialAnim.java 54 int totalFrames = (int) (fps * animTime);
55 float dT = animTime / totalFrames, t = 0;
56 float dX = totalXLength / totalFrames, x = 0;
57 float[] times = new float[totalFrames];
58 Vector3f[] translations = new Vector3f[totalFrames];
59 Quaternion[] rotations = new Quaternion[totalFrames];
60 Vector3f[] scales = new Vector3f[totalFrames];
61 for (int i = 0; i < totalFrames; ++i) {
  /packages/apps/Camera/perftests/panorama/
benchmark.cpp 70 int totalFrames = loadImages(basename, width, height);
72 if (totalFrames == 0) {
78 printf("%d frames loaded\n", totalFrames);
88 for (int i = 0; i < totalFrames; i++) {
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java 120 protected int totalFrames;
167 totalFrames = (int) (fps * duration) + 1;
169 times = new float[totalFrames];
170 translations = new Vector3f[totalFrames];
171 rotations = new Quaternion[totalFrames];
172 scales = new Vector3f[totalFrames];
173 keyFramesTranslation = new Vector3f[totalFrames];
175 keyFramesScale = new Vector3f[totalFrames];
177 keyFramesRotation = new Rotation[totalFrames];
335 if (keyFrameIndex < 0 || keyFrameIndex > totalFrames) {
    [all...]
  /frameworks/av/media/libmedia/
SoundPool.cpp 582 uint32_t totalFrames = (kDefaultBufferCount * afFrameCount * sampleRate) / afSampleRate;
583 uint32_t bufferFrames = (totalFrames + (kDefaultBufferCount - 1)) / kDefaultBufferCount;
593 if(frameCount < totalFrames) {
594 frameCount = totalFrames;
  /external/v8/src/
debug-debugger.js     [all...]

Completed in 489 milliseconds