am c58abb6a: Merge "Rename modules NativeActivity"

* commit 'c58abb6aa3dfcb526215f307b29688f5e17753b2':
  Rename modules NativeActivity
This commit is contained in:
Andrew Hsieh
2013-11-05 10:29:51 -08:00
committed by Android Git Automerger
7 changed files with 8 additions and 8 deletions

View File

@@ -24,7 +24,7 @@
android:configChanges="orientation|keyboardHidden"> android:configChanges="orientation|keyboardHidden">
<!-- Tell NativeActivity the name of or .so --> <!-- Tell NativeActivity the name of or .so -->
<meta-data android:name="android.app.lib_name" <meta-data android:name="android.app.lib_name"
android:value="NativeActivity" /> android:value="TeapotNativeActivity" />
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />

View File

@@ -2,7 +2,7 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS) include $(CLEAR_VARS)
LOCAL_MODULE := NativeActivity LOCAL_MODULE := TeapotNativeActivity
LOCAL_SRC_FILES := TeapotNativeActivity.cpp \ LOCAL_SRC_FILES := TeapotNativeActivity.cpp \
TeapotRenderer.cpp \ TeapotRenderer.cpp \

View File

@@ -444,7 +444,7 @@ void android_main( android_app* state )
state->onInputEvent = Engine::HandleInput; state->onInputEvent = Engine::HandleInput;
#ifdef USE_NDK_PROFILER #ifdef USE_NDK_PROFILER
monstartup("libNativeActivity.so"); monstartup("libTeapotNativeActivity.so");
#endif #endif
// Prepare to monitor accelerometer // Prepare to monitor accelerometer

View File

@@ -24,7 +24,7 @@
android:configChanges="orientation|keyboardHidden"> android:configChanges="orientation|keyboardHidden">
<!-- Tell NativeActivity the name of or .so --> <!-- Tell NativeActivity the name of or .so -->
<meta-data android:name="android.app.lib_name" <meta-data android:name="android.app.lib_name"
android:value="NativeActivity" /> android:value="MoreTeapotsNativeActivity" />
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />

View File

@@ -2,7 +2,7 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS) include $(CLEAR_VARS)
LOCAL_MODULE := NativeActivity LOCAL_MODULE := MoreTeapotsNativeActivity
LOCAL_SRC_FILES := MoreTeapotsNativeActivity.cpp \ LOCAL_SRC_FILES := MoreTeapotsNativeActivity.cpp \
MoreTeapotsRenderer.cpp \ MoreTeapotsRenderer.cpp \

View File

@@ -455,7 +455,7 @@ void android_main( android_app* state )
state->onInputEvent = Engine::HandleInput; state->onInputEvent = Engine::HandleInput;
#ifdef USE_NDK_PROFILER #ifdef USE_NDK_PROFILER
monstartup("libNativeActivity.so"); monstartup("libMoreTeapotsNativeActivity.so");
#endif #endif
// Prepare to monitor accelerometer // Prepare to monitor accelerometer

View File

@@ -15,7 +15,7 @@
*/ */
//-------------------------------------------------------------------------------- //--------------------------------------------------------------------------------
// glContext.h // GLContext.h
//-------------------------------------------------------------------------------- //--------------------------------------------------------------------------------
#ifndef GLCONTEXT_H_ #ifndef GLCONTEXT_H_
#define GLCONTEXT_H_ #define GLCONTEXT_H_