| commit | 23bfa224ebeb60bfa39a6f3cc55c87bcd651b36a | [log] [tgz] |
|---|---|---|
| author | Steven Moreland <smoreland@google.com> | Mon Jul 17 12:08:45 2017 -0700 |
| committer | Steven Moreland <smoreland@google.com> | Mon Jul 17 12:08:45 2017 -0700 |
| tree | a1a298e0d3fafe11c61bbfe330ff3135b0e907da | |
| parent | 4bd6f567d5f34d53da199e22141bd37ad7dd9e83 [diff] |
Reference nativehelper/jni.h as jni.h nativehelper will no longer export nativehelper/jni.h so that everywhere can reference this file with the same name. Bug: 63762847 Change-Id: Ifc3a3feb7578fd1352c25a3f55884ab75f337039
diff --git a/opengl/tests/gl2_jni/jni/gl_code.cpp b/opengl/tests/gl2_jni/jni/gl_code.cpp index ed896a4..c4180d4 100644 --- a/opengl/tests/gl2_jni/jni/gl_code.cpp +++ b/opengl/tests/gl2_jni/jni/gl_code.cpp
@@ -1,6 +1,6 @@ // OpenGL ES 2.0 code -#include <nativehelper/jni.h> +#include <jni.h> #define LOG_TAG "GL2JNI gl_code.cpp" #include <utils/Log.h>
diff --git a/opengl/tests/gl_jni/jni/gl_code.cpp b/opengl/tests/gl_jni/jni/gl_code.cpp index cf86020..48944e0 100644 --- a/opengl/tests/gl_jni/jni/gl_code.cpp +++ b/opengl/tests/gl_jni/jni/gl_code.cpp
@@ -1,6 +1,6 @@ // OpenGL ES 1.0 code -#include <nativehelper/jni.h> +#include <jni.h> #define LOG_TAG "GLJNI gl_code.cpp" #include <utils/Log.h>
diff --git a/opengl/tests/gl_perfapp/jni/gl_code.cpp b/opengl/tests/gl_perfapp/jni/gl_code.cpp index 378c8e8..946ee07 100644 --- a/opengl/tests/gl_perfapp/jni/gl_code.cpp +++ b/opengl/tests/gl_perfapp/jni/gl_code.cpp
@@ -1,6 +1,6 @@ // OpenGL ES 2.0 code -#include <nativehelper/jni.h> +#include <jni.h> #define LOG_TAG "GLPerf gl_code.cpp" #include <utils/Log.h>
diff --git a/opengl/tests/gldual/jni/gl_code.cpp b/opengl/tests/gldual/jni/gl_code.cpp index 22867ed..3b11400 100644 --- a/opengl/tests/gldual/jni/gl_code.cpp +++ b/opengl/tests/gldual/jni/gl_code.cpp
@@ -1,6 +1,6 @@ // OpenGL ES 2.0 code -#include <nativehelper/jni.h> +#include <jni.h> #define LOG_TAG "GL2JNI gl_code.cpp" #include <utils/Log.h>