devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=2f3082df66cf2d598ada173d6fc4242a77552509

commit 2f3082df66cf2d598ada173d6fc4242a77552509
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Wed Mar 12 10:41:57 2014 +0000

    ecore-drm: Quiet down ecore_drm_output rendering messages
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 src/lib/ecore_drm/ecore_drm_output.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/lib/ecore_drm/ecore_drm_output.c 
b/src/lib/ecore_drm/ecore_drm_output.c
index f55e1f1..5a193f4 100644
--- a/src/lib/ecore_drm/ecore_drm_output.c
+++ b/src/lib/ecore_drm/ecore_drm_output.c
@@ -414,13 +414,13 @@ _ecore_drm_output_repaint_start(Ecore_Drm_Output *output)
 {
    unsigned int fb;
 
-   DBG("Output Repaint Start");
+   /* DBG("Output Repaint Start"); */
 
    if (!output) return;
 
    if (!output->current)
      {
-        DBG("\tNo Current FB");
+        /* DBG("\tNo Current FB"); */
         goto finish;
      }
 
@@ -615,7 +615,7 @@ ecore_drm_output_repaint(Ecore_Drm_Output *output)
 
    if (!output) return;
 
-   DBG("Output Repaint: %d %d", output->crtc_id, output->conn_id);
+   /* DBG("Output Repaint: %d %d", output->crtc_id, output->conn_id); */
 
    /* TODO: assign planes ? */
 
@@ -635,7 +635,7 @@ ecore_drm_output_repaint(Ecore_Drm_Output *output)
 
    if (!output->next)
      {
-        DBG("\tNo Next Fb");
+        /* DBG("\tNo Next Fb"); */
         return;
      }
 
@@ -652,7 +652,7 @@ ecore_drm_output_repaint(Ecore_Drm_Output *output)
                              &mode->info);
         if (ret)
           {
-             ERR("Setting output mode failed");
+             /* ERR("Setting output mode failed"); */
              goto err;
           }
      }
@@ -660,7 +660,7 @@ ecore_drm_output_repaint(Ecore_Drm_Output *output)
    if (drmModePageFlip(output->dev->drm.fd, output->crtc_id, output->next->id,
                        DRM_MODE_PAGE_FLIP_EVENT, output) < 0)
      {
-        ERR("Scheduling pageflip failed");
+        /* ERR("Scheduling pageflip failed"); */
         goto err;
      }
 

-- 


Reply via email to