Skip to content

Commit

Permalink
First working stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
pcwalton committed Feb 15, 2012
1 parent 5c09caf commit 0f3bc18
Show file tree
Hide file tree
Showing 5 changed files with 859 additions and 6 deletions.
3 changes: 2 additions & 1 deletion AndroidManifest.xml
Expand Up @@ -3,7 +3,8 @@
package="org.mozilla.testuniversalsurfacetexture"
android:versionCode="1"
android:versionName="1.0">
<application android:label="@string/app_name" android:icon="@drawable/icon">
<application android:label="@string/app_name" android:icon="@drawable/icon"
android:debuggable="true">
<activity android:name="TestUniversalSurfaceTexture"
android:label="@string/app_name">
<intent-filter>
Expand Down
11 changes: 11 additions & 0 deletions jni/Android.mk
@@ -0,0 +1,11 @@
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_LDLIBS := -llog -lGLESv2 -lEGL

LOCAL_MODULE := ndk1
LOCAL_SRC_FILES := jni.cpp

include $(BUILD_SHARED_LIBRARY)

2 changes: 2 additions & 0 deletions jni/Application.mk
@@ -0,0 +1,2 @@
APP_STL := stlport_static

0 comments on commit 0f3bc18

Please sign in to comment.