commit | 4a92d1268983edaf329f73c8a5b8860cdbb11596 | [log] [tgz] |
---|---|---|
author | Tim Murray <timmurray@google.com> | Mon Jul 22 10:56:18 2013 -0700 |
committer | Tim Murray <timmurray@google.com> | Tue Jul 23 16:48:41 2013 -0700 |
tree | 36d6f0e132cb84230b93a44c1826c7db086f0109 | |
parent | 0b8a2be7eb9322ec221383de325be8f30b36fe9a [diff] [blame] |
Move to dynamic dispatch. Add support for IoAllocation* in rs.spec. Change-Id: I013409cbb758ce5aae78347acb39c43d07aeb9bf
diff --git a/cpp/BaseObj.cpp b/cpp/BaseObj.cpp index fa7d73c..814e552 100644 --- a/cpp/BaseObj.cpp +++ b/cpp/BaseObj.cpp
@@ -51,7 +51,7 @@ void BaseObj::updateFromNative() { const char *name = NULL; - rsaGetName(mRS->getContext(), mID, &name); + RS::dispatch->GetName(mRS->getContext(), mID, &name); mName = name; }