Skip to content

Commit

Permalink
DrawHandler: increase mCordonTime2
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiao committed Nov 19, 2015
1 parent d249018 commit 7cecf8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ private void syncTimerIfNeeded() {
private void initRenderingConfigs() {
long averageFrameConsumingTime = 16;
mCordonTime = Math.max(33, (long) (averageFrameConsumingTime * 2.5f));
mCordonTime2 = mCordonTime * 2;
mCordonTime2 = (long) (mCordonTime * 2.5f);
mFrameUpdateRate = Math.max(16, averageFrameConsumingTime / 15 * 15);
mThresholdTime = mFrameUpdateRate + 3;
// Log.i("DrawHandler", "initRenderingConfigs test-fps:" + averageFrameConsumingTime + "ms,mCordonTime:"
Expand Down

0 comments on commit 7cecf8e

Please sign in to comment.