diff --git a/build b/build index eb447c39..bb36f26b 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit eb447c39c550322de11af033ddbca98cb9152f83 +Subproject commit bb36f26b0b57443af42100be66f83a3b91183674 diff --git a/external/airtaudio b/external/airtaudio index f8b2271d..bcf636ce 160000 --- a/external/airtaudio +++ b/external/airtaudio @@ -1 +1 @@ -Subproject commit f8b2271dffdab57d96b43c010428f19dc9fff6d0 +Subproject commit bcf636ce0dd91091340b2cd81c8247e181867f22 diff --git a/sources/ewol/context/Context.cpp b/sources/ewol/context/Context.cpp index 2ce77f66..5333a95f 100644 --- a/sources/ewol/context/Context.cpp +++ b/sources/ewol/context/Context.cpp @@ -556,7 +556,6 @@ bool ewol::Context::OS_Draw(bool _displayEveryTime) { return false; } #endif - //EWOL_DEBUG("DRAW"); m_previousDisplayTime = currentTime; // process the events diff --git a/sources/ewol/context/Fps.h b/sources/ewol/context/Fps.h index c0cfecce..4f16c20e 100644 --- a/sources/ewol/context/Fps.h +++ b/sources/ewol/context/Fps.h @@ -82,7 +82,7 @@ namespace ewol { int64_t currentTime = ewol::getTime(); int64_t processTimeLocal = (currentTime - ticTime); if (displayTime == true) { - EWOL_DEBUG(m_displayName << " : processTime : " << (float)((float)processTimeLocal / 1000.0) << "ms "); + EWOL_INFO(m_displayName << " : processTime : " << (float)((float)processTimeLocal / 1000.0) << "ms "); } if (drwingDone) { min = etk_min(min, processTimeLocal); @@ -108,19 +108,19 @@ namespace ewol { void draw(void) { if (true == display) { if (nbDisplayTime>0) { - EWOL_DEBUG(m_displayName << " : Active : " + EWOL_INFO(m_displayName << " : Active : " << (float)((float)min / 1000.0) << "ms " << (float)((float)avg / (float)nbDisplayTime / 1000.0) << "ms " << (float)((float)max / 1000.0) << "ms "); } if (nbCallTime-nbDisplayTime>0) { - EWOL_DEBUG(m_displayName << " : idle : " + EWOL_INFO(m_displayName << " : idle : " << (float)((float)min_idle / 1000.0) << "ms " << (float)((float)avg_idle / (float)(nbCallTime-nbDisplayTime) / 1000.0) << "ms " << (float)((float)max_idle / 1000.0) << "ms "); } if (true == m_displayFPS) { - EWOL_DEBUG("FPS : " << nbDisplayTime << "/" << nbCallTime << "fps"); + EWOL_INFO("FPS : " << nbDisplayTime << "/" << nbCallTime << "fps"); } max = 0; min = 99999999999999LL;