Skip to content

Commit

Permalink
Disable print statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Jan 28, 2024
1 parent 8cd850e commit ef4382a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions unix/tkglGLX.c
Original file line number Diff line number Diff line change
Expand Up @@ -831,15 +831,19 @@ void Tkgl_FreeResources(
void
Tkgl_WorldChanged(
void* instanceData){
#if 0
printf("WorldChanged\n");
#endif
}

int
Tkgl_TakePhoto(
Tkgl *tkglPtr,
Tk_PhotoHandle photo)
{
#if 0
printf("TakePhoto\n");
#endif
return TCL_OK;
}

Expand All @@ -849,7 +853,9 @@ Tkgl_CopyContext(
const Tkgl *to,
unsigned mask)
{
#if 0
printf("CopyContext\n");
#endif
return TCL_OK;
}

Expand Down
6 changes: 6 additions & 0 deletions win/tkglWGL.c
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,9 @@ const char* Tkgl_GetExtensions(
void
Tkgl_WorldChanged(
void* instanceData){
#if 0
printf("WorldChanged\n");
#endif
}


Expand All @@ -917,7 +919,9 @@ Tkgl_TakePhoto(
Tkgl *tkglPtr,
Tk_PhotoHandle photo)
{
#if 0
printf("TakePhoto\n");
#endif
return TCL_OK;
}

Expand All @@ -928,7 +932,9 @@ Tkgl_CopyContext(
const Tkgl *to,
unsigned mask)
{
#if 0
printf("CopyContext\n");
#endif
return TCL_OK;
}

Expand Down

0 comments on commit ef4382a

Please sign in to comment.