diff options
| author | Miao Wang <miaowang@google.com> | 2015-03-13 22:00:13 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-03-13 22:00:15 +0000 |
| commit | 6c4d797e9d7a74f7cb9c399c7ba21b6c7058f853 (patch) | |
| tree | 56983d7589deea8d417a985cc926e610ba8055ed | |
| parent | 24c590834cff3909c511b3789b7adf5e507e4e30 (diff) | |
| parent | 6b1b173adc9e97f797d3324006f850cf840137ac (diff) | |
| download | android_frameworks_rs-6c4d797e9d7a74f7cb9c399c7ba21b6c7058f853.tar.gz android_frameworks_rs-6c4d797e9d7a74f7cb9c399c7ba21b6c7058f853.tar.bz2 android_frameworks_rs-6c4d797e9d7a74f7cb9c399c7ba21b6c7058f853.zip | |
Merge "Make compat lib able to load through the new HAL."
| -rw-r--r-- | rsDriverLoader.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rsDriverLoader.cpp b/rsDriverLoader.cpp index 81455826..b245b4c2 100644 --- a/rsDriverLoader.cpp +++ b/rsDriverLoader.cpp @@ -246,6 +246,10 @@ bool Context::loadDriver(bool forceDefault) { } } #else // RS_COMPATIBILITY_LIB + if (!LoadHalTable(this, rsdHalQueryHal, false)) { + ALOGE("Error loading RS HAL table"); + return false; + } if (rsdHalInit(this, 0, 0) != true) { return false; } |
