diff options
| author | Miao Wang <miaowang@google.com> | 2015-03-13 14:37:56 -0700 |
|---|---|---|
| committer | Miao Wang <miaowang@google.com> | 2015-03-13 14:37:56 -0700 |
| commit | 6b1b173adc9e97f797d3324006f850cf840137ac (patch) | |
| tree | 56983d7589deea8d417a985cc926e610ba8055ed /rsDriverLoader.cpp | |
| parent | 1cb0bb092faa6993db53213fb2b6b3c1963436dc (diff) | |
| download | android_frameworks_rs-6b1b173adc9e97f797d3324006f850cf840137ac.tar.gz android_frameworks_rs-6b1b173adc9e97f797d3324006f850cf840137ac.tar.bz2 android_frameworks_rs-6b1b173adc9e97f797d3324006f850cf840137ac.zip | |
Make compat lib able to load through the new HAL.
Change-Id: I15a10ffd08399b102e0e209958f5230937e8c83a
Diffstat (limited to 'rsDriverLoader.cpp')
| -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; } |
