Searched defs:curDrawCount (Results 1 - 2 of 2) sorted by relevance

/external/deqp/modules/gles2/functional/
H A Des2fFlushFinishTests.cpp273 int curDrawCount = 1; local
283 render(curDrawCount);
288 m_testCtx.getLog() << TestLog::Message << "Duration with " << curDrawCount << " draw calls = " << curDuration << " us" << TestLog::EndMessage;
292 if (curDrawCount > 1)
295 const float a = float(curDuration - prevDuration) / float(curDrawCount - prevDrawCount);
299 curDrawCount = de::clamp(deFloorFloatToInt32(est), 1, int(MAX_DRAW_CALL_COUNT));
305 else if (curDrawCount >= MAX_DRAW_CALL_COUNT)
309 prevDrawCount = curDrawCount;
311 curDrawCount = curDrawCount*
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fFlushFinishTests.cpp342 int curDrawCount = 1; local
354 render(curDrawCount);
359 m_testCtx.getLog() << TestLog::Message << "Duration with " << curDrawCount << " draw calls = " << curDuration << " us" << TestLog::EndMessage;
363 if (curDrawCount > 1)
366 const float a = float(curDuration - prevDuration) / float(curDrawCount - prevDrawCount);
370 curDrawCount = de::clamp(deFloorFloatToInt32(est), 1, int(MAX_DRAW_CALL_COUNT));
376 else if (curDrawCount >= MAX_DRAW_CALL_COUNT)
380 prevDrawCount = curDrawCount;
382 curDrawCount = curDrawCount*
[all...]

Completed in 91 milliseconds