{
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;
}
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 ? */
if (!output->next)
{
- DBG("\tNo Next Fb");
+ /* DBG("\tNo Next Fb"); */
return;
}
&mode->info);
if (ret)
{
- ERR("Setting output mode failed");
+ /* ERR("Setting output mode failed"); */
goto err;
}
}
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;
}