ecore-drm: Quiet down ecore_drm_output rendering messages

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-03-12 10:41:57 +00:00
parent c48fc5155a
commit 2f3082df66
1 changed files with 6 additions and 6 deletions

View File

@ -414,13 +414,13 @@ _ecore_drm_output_repaint_start(Ecore_Drm_Output *output)
{ {
unsigned int fb; unsigned int fb;
DBG("Output Repaint Start"); /* DBG("Output Repaint Start"); */
if (!output) return; if (!output) return;
if (!output->current) if (!output->current)
{ {
DBG("\tNo Current FB"); /* DBG("\tNo Current FB"); */
goto finish; goto finish;
} }
@ -615,7 +615,7 @@ ecore_drm_output_repaint(Ecore_Drm_Output *output)
if (!output) return; 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 ? */ /* TODO: assign planes ? */
@ -635,7 +635,7 @@ ecore_drm_output_repaint(Ecore_Drm_Output *output)
if (!output->next) if (!output->next)
{ {
DBG("\tNo Next Fb"); /* DBG("\tNo Next Fb"); */
return; return;
} }
@ -652,7 +652,7 @@ ecore_drm_output_repaint(Ecore_Drm_Output *output)
&mode->info); &mode->info);
if (ret) if (ret)
{ {
ERR("Setting output mode failed"); /* ERR("Setting output mode failed"); */
goto err; 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, if (drmModePageFlip(output->dev->drm.fd, output->crtc_id, output->next->id,
DRM_MODE_PAGE_FLIP_EVENT, output) < 0) DRM_MODE_PAGE_FLIP_EVENT, output) < 0)
{ {
ERR("Scheduling pageflip failed"); /* ERR("Scheduling pageflip failed"); */
goto err; goto err;
} }