Revision: 75323
          http://sourceforge.net/p/brlcad/code/75323
Author:   starseeker
Date:     2020-04-09 17:21:45 +0000 (Thu, 09 Apr 2020)
Log Message:
-----------
Pass context in.

Modified Paths:
--------------
    brlcad/trunk/src/libdm/dm-generic.c

Modified: brlcad/trunk/src/libdm/dm-generic.c
===================================================================
--- brlcad/trunk/src/libdm/dm-generic.c 2020-04-09 16:02:49 UTC (rev 75322)
+++ brlcad/trunk/src/libdm/dm-generic.c 2020-04-09 17:21:45 UTC (rev 75323)
@@ -83,7 +83,7 @@
 #endif /* DM_RTGL */
 
 #ifdef DM_WGL
-extern dm *wgl_open(Tcl_Interp *interp, int argc, const char **argv);
+extern dm *wgl_open(Tcl_Interp *interp, struct dm_context *context, int argc, 
const char **argv);
 extern void wgl_fogHint(dm *dmp, int fastfog);
 extern int wgl_share_dlist(dm *dmp1, dm *dmp2);
 #endif /* DM_WGL */
@@ -147,7 +147,7 @@
 #endif
 #ifdef DM_WGL
        case DM_TYPE_WGL:
-           return wgl_open(interp, argc, argv);
+           return wgl_open(interp, context, argc, argv);
 #endif
 #ifdef DM_QT
        case DM_TYPE_QT:

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to