Revision: 76923
          http://sourceforge.net/p/brlcad/code/76923
Author:   starseeker
Date:     2020-08-24 15:45:57 +0000 (Mon, 24 Aug 2020)
Log Message:
-----------
Don't actually use dm_get_vp - remove

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

Modified: brlcad/trunk/include/dm.h
===================================================================
--- brlcad/trunk/include/dm.h   2020-08-24 15:40:35 UTC (rev 76922)
+++ brlcad/trunk/include/dm.h   2020-08-24 15:45:57 UTC (rev 76923)
@@ -273,7 +273,6 @@
 
 /* TODO - dm_vp is supposed to go away, but until we figure it out
  * expose it here to allow dm hiding */
-DM_EXPORT extern fastf_t *dm_get_vp(struct dm *dmp);
 DM_EXPORT extern void dm_set_vp(struct dm *dmp, fastf_t *vp);
 
 DM_EXPORT extern int dm_set_hook(const struct bu_structparse_map *map,

Modified: brlcad/trunk/src/libdm/dm-generic.c
===================================================================
--- brlcad/trunk/src/libdm/dm-generic.c 2020-08-24 15:40:35 UTC (rev 76922)
+++ brlcad/trunk/src/libdm/dm-generic.c 2020-08-24 15:45:57 UTC (rev 76923)
@@ -708,13 +708,6 @@
     return dmp->i->dm_logfile(dmp, filename);
 }
 
-fastf_t *
-dm_get_vp(struct dm *dmp)
-{
-    if (UNLIKELY(!dmp)) return NULL;
-    return dmp->i->dm_vp;
-}
-
 void
 dm_set_vp(struct dm *dmp, fastf_t *vp)
 {

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