Comment out some debugging printfs.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 81107
This commit is contained in:
Christopher Michael 2012-12-17 09:20:56 +00:00 committed by Christopher Michael
parent fa0264ef5c
commit 99d170a6a9
1 changed files with 22 additions and 28 deletions

View File

@ -104,26 +104,26 @@ e_smart_randr_monitors_create(Evas_Object *obj)
Eina_List *ll; Eina_List *ll;
E_Randr_Output_Info *output; E_Randr_Output_Info *output;
printf("Checking Crtc: %d\n", crtc->xid); /* printf("Checking Crtc: %d\n", crtc->xid); */
printf("\tGeom: %d %d %d %d\n", crtc->geometry.x, /* printf("\tGeom: %d %d %d %d\n", crtc->geometry.x, */
crtc->geometry.y, crtc->geometry.w, crtc->geometry.h); /* crtc->geometry.y, crtc->geometry.w, crtc->geometry.h); */
/* loop the outputs on this crtc */ /* loop the outputs on this crtc */
EINA_LIST_FOREACH(crtc->outputs, ll, output) EINA_LIST_FOREACH(crtc->outputs, ll, output)
{ {
printf("\tChecking Output: %d %s\n", output->xid, output->name); /* printf("\tChecking Output: %d %s\n", output->xid, output->name); */
printf("\tOutput Policy: %d\n", output->policy); /* printf("\tOutput Policy: %d\n", output->policy); */
if (output->wired_clones) /* if (output->wired_clones) */
printf("\tHAS WIRED CLONES !!\n"); /* printf("\tHAS WIRED CLONES !!\n"); */
if (output->connection_status == if (output->connection_status ==
ECORE_X_RANDR_CONNECTION_STATUS_CONNECTED) ECORE_X_RANDR_CONNECTION_STATUS_CONNECTED)
{ {
Evas_Object *mon; Evas_Object *mon;
printf("\t\tConnected\n"); /* printf("\t\tConnected\n"); */
if ((mon = e_smart_monitor_add(evas))) if ((mon = e_smart_monitor_add(evas)))
{ {
/* add this monitor to the layout */ /* add this monitor to the layout */
@ -152,30 +152,24 @@ e_smart_randr_monitors_create(Evas_Object *obj)
crtc->geometry.h); crtc->geometry.h);
} }
} }
/* else if (output->connection_status == */
/* ECORE_X_RANDR_CONNECTION_STATUS_DISCONNECTED) */
/* printf("\t\tDisconnected\n"); */
/* else */
/* printf("\t\tUnknown\n"); */
} }
/* loop possible outputs on this crtc */ /* loop possible outputs on this crtc */
EINA_LIST_FOREACH(crtc->possible_outputs, ll, output) /* EINA_LIST_FOREACH(crtc->possible_outputs, ll, output) */
{ /* { */
printf("\tChecking Possible Output: %d\n", output->xid); /* printf("\tChecking Possible Output: %d\n", output->xid); */
if (output->connection_status == /* if (output->connection_status == */
ECORE_X_RANDR_CONNECTION_STATUS_CONNECTED) /* ECORE_X_RANDR_CONNECTION_STATUS_CONNECTED) */
printf("\t\tConnected\n"); /* printf("\t\tConnected\n"); */
else if (output->connection_status == /* else if (output->connection_status == */
ECORE_X_RANDR_CONNECTION_STATUS_DISCONNECTED) /* ECORE_X_RANDR_CONNECTION_STATUS_DISCONNECTED) */
printf("\t\tDisconnected\n"); /* printf("\t\tDisconnected\n"); */
else /* else */
printf("\t\tUnknown\n"); /* printf("\t\tUnknown\n"); */
if (output->monitor) /* if (output->monitor) */
printf("\tHas Monitor\n"); /* printf("\tHas Monitor\n"); */
} /* } */
} }
} }