commit | a423096c0d49e5cfe13a400b4323a76f89c6885c | [log] [tgz] |
---|---|---|
author | Tim Murray <timmurray@google.com> | Wed Jul 17 16:50:10 2013 -0700 |
committer | Tim Murray <timmurray@google.com> | Tue Jul 23 16:48:41 2013 -0700 |
tree | 287bb1663043311f450980c7f741cc7ae3fc757a | |
parent | f51f8c741dda633f525a3eeb7552bff5819a75f0 [diff] [blame] |
Move C++ API over to function tables rather than linking libRS directly. Change-Id: I7841df768d5bd10fa941b3655673fd73496a8137
diff --git a/cpp/BaseObj.cpp b/cpp/BaseObj.cpp index 828bd87..fa7d73c 100644 --- a/cpp/BaseObj.cpp +++ b/cpp/BaseObj.cpp
@@ -44,7 +44,7 @@ } BaseObj::~BaseObj() { - rsObjDestroy(mRS->getContext(), mID); + RS::dispatch->ObjDestroy(mRS->getContext(), mID); mRS = NULL; mID = NULL; }