diff options
author | Jesse Hall <jessehall@google.com> | 2017-04-17 08:54:43 -0700 |
---|---|---|
committer | Jesse Hall <jessehall@google.com> | 2017-04-17 08:55:24 -0700 |
commit | 5f73ab7e2a591d45b67a7aaf1b26cc9dcfe58502 (patch) | |
tree | 862378c284b954e961324a24b9fa84a4be82a15d /native/android/sensor.cpp | |
parent | b16014169891509543ef229986a4559c1a185ffb (diff) |
Include vndk/hardware_buffer.h for AHardwareBuffer_getNativeHandle
This function is now VNDK-only, and not in the NDK header.
Bug: 34050596
Test: build
Change-Id: Id0147dbdb65157da9692e7f38b1a068be18be2b9
Diffstat (limited to 'native/android/sensor.cpp')
-rw-r--r-- | native/android/sensor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/android/sensor.cpp b/native/android/sensor.cpp index ae16949791bc..8e5821024cee 100644 --- a/native/android/sensor.cpp +++ b/native/android/sensor.cpp @@ -17,7 +17,6 @@ #define LOG_TAG "sensor" #include <utils/Log.h> -#include <android/hardware_buffer.h> #include <android/looper.h> #include <android/sensor.h> #include <android/sharedmem.h> @@ -28,6 +27,7 @@ #include <utils/Looper.h> #include <utils/RefBase.h> #include <utils/Timers.h> +#include <vndk/hardware_buffer.h> #include <poll.h> |