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

  /external/deqp/modules/egl/
teglGetFrameTimestampsTests.cpp 108 struct FrameTimes
110 FrameTimes (void)
182 void populateFrameTimes(FrameTimes* frameTimes, TimestampInfoMap& map, const std::vector<EGLnsecsANDROID>& supportedValues)
184 frameTimes->requestedPresent = getTimestamp(EGL_REQUESTED_PRESENT_TIME_ANDROID, map, supportedValues);
185 frameTimes->renderingComplete = getTimestamp(EGL_RENDERING_COMPLETE_TIME_ANDROID, map, supportedValues);
186 frameTimes->latch = getTimestamp(EGL_COMPOSITION_LATCH_TIME_ANDROID, map, supportedValues);
187 frameTimes->firstCompositionStart = getTimestamp(EGL_FIRST_COMPOSITION_START_TIME_ANDROID, map, supportedValues);
188 frameTimes->lastCompositionStart = getTimestamp(EGL_LAST_COMPOSITION_START_TIME_ANDROID, map, supportedValues);
189 frameTimes->firstCompositionGpuFinished = getTimestamp(EGL_FIRST_COMPOSITION_GPU_FINISHED_TIME_ANDROID, map, (…)
    [all...]
  /external/deqp/modules/glshared/
glsCalibration.cpp 180 return (int)frameTimes.size() >= maxNumFrames || (frameTimes.size() >= 2 &&
181 frameTimes[frameTimes.size()-2] >= (deUint64)frameShortcutTime &&
182 frameTimes[frameTimes.size()-1] >= (deUint64)frameShortcutTime);
188 for (int i = 0; i < (int)frameTimes.size(); i++)
189 time += frameTimes[i];
198 frameTimes.clear();
203 frameTimes.clear()
    [all...]
glsCalibration.hpp 86 std::vector<deUint64> frameTimes;
glsShaderPerformanceMeasurer.cpp 303 int numFrames = (int)measureState.frameTimes.size();
323 int numFrames = (int)measureState.frameTimes.size();
  /cts/tests/openglperf2/jni/primitive/
GLPrimitive.cpp 43 JNIEnv* env, jclass /*clazz*/, jint workload, jint numFrames, jdoubleArray frameTimes) {
70 env->SetDoubleArrayRegion(frameTimes, 0, 2, times);
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedStateListDrawable.java 694 final int[] frameTimes = mFrameTimes;
698 frameTimes[i] = duration;
714 final int[] frameTimes = mFrameTimes;
719 while (i < N && remaining >= frameTimes[i]) {
720 remaining -= frameTimes[i];
  /cts/tests/openglperf2/src/android/opengl2/cts/primitive/
GLPrimitiveActivity.java 108 private static native boolean startBenchmark(int workload, int numFrames, double[] frameTimes);
  /external/deqp/modules/gles2/performance/
es2pTextureUploadTests.cpp 255 // m_log << TestLog::Message << "Frame " << i+1 << " duration: \t" << m_calibrator.measureState.frameTimes[i] << " us."<< TestLog::EndMessage;
257 std::vector<deUint64> sortedFrameTimes(measureState.frameTimes.begin(), measureState.frameTimes.end());
268 int numFrames = (int)measureState.frameTimes.size();
es2pShaderOperatorTests.cpp 277 vector<float> frameTimes; //!< In microseconds.
281 void addFrameTime (float time) { frameTimes.push_back(time); }
284 vector<float> times = frameTimes;
869 const float drawCallTime = (float)calibratorMeasure.getTotalTime() / (float)calibratorMeasure.frameTimes.size();
    [all...]
  /external/deqp/modules/gles3/performance/
es3pShaderOperatorTests.cpp 277 vector<float> frameTimes; //!< In microseconds.
281 void addFrameTime (float time) { frameTimes.push_back(time); }
284 vector<float> times = frameTimes;
869 const float drawCallTime = (float)calibratorMeasure.getTotalTime() / (float)calibratorMeasure.frameTimes.size();
    [all...]

Completed in 195 milliseconds