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

  /external/deqp/modules/gles2/functional/
es2fFlushFinishTests.cpp 274 int curDrawCount = 1;
284 render(curDrawCount);
289 m_testCtx.getLog() << TestLog::Message << "Duration with " << curDrawCount << " draw calls = " << curDuration << " us" << TestLog::EndMessage;
293 if (curDrawCount > 1)
296 const float a = float(curDuration - prevDuration) / float(curDrawCount - prevDrawCount);
300 curDrawCount = de::clamp(deFloorFloatToInt32(est), 1, int(MAX_DRAW_CALL_COUNT));
306 else if (curDrawCount >= MAX_DRAW_CALL_COUNT)
310 prevDrawCount = curDrawCount;
312 curDrawCount = curDrawCount*2
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFlushFinishTests.cpp 352 int curDrawCount = 1;
362 render(curDrawCount); // \note Submit time is ignored
370 m_testCtx.getLog() << TestLog::Message << "Duration with " << curDrawCount << " draw calls = " << curDuration << " us" << TestLog::EndMessage;
374 if (curDrawCount > 1)
377 const float a = float(curDuration - prevDuration) / float(curDrawCount - prevDrawCount);
381 curDrawCount = de::clamp(deFloorFloatToInt32(est), 1, int(MAX_DRAW_CALL_COUNT));
387 else if (curDrawCount >= MAX_DRAW_CALL_COUNT)
391 prevDrawCount = curDrawCount;
393 curDrawCount = curDrawCount*2
    [all...]

Completed in 37 milliseconds