Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/.classpath
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/.classpath	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/.classpath	(revision 13587)
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="src" path="gen"/>
+	<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
+	<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
+	<classpathentry kind="output" path="bin/classes"/>
+</classpath>
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/project.properties
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/project.properties	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/project.properties	(revision 13587)
@@ -0,0 +1,14 @@
+# This file is automatically generated by Android Tools.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file must be checked in Version Control Systems.
+#
+# To customize properties used by the Ant build system edit
+# "ant.properties", and override values to adapt the script to your
+# project structure.
+#
+# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
+#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
+
+# Project target.
+target=android-16
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/.project
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/.project	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/.project	(revision 13587)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>OpenGLES20</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.ApkBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/proguard-project.txt
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/proguard-project.txt	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/proguard-project.txt	(revision 13587)
@@ -0,0 +1,20 @@
+# To enable ProGuard in your project, edit project.properties
+# to define the proguard.config property as described in that file.
+#
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in ${sdk.dir}/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the ProGuard
+# include property in project.properties.
+#
+# For more details, see
+#   http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+#   public *;
+#}
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/AndroidManifest.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/AndroidManifest.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/AndroidManifest.xml	(revision 13587)
@@ -0,0 +1,27 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="com.example.opengles20"
+    android:versionCode="1"
+    android:versionName="1.0" >
+
+    <uses-sdk
+        android:minSdkVersion="8"
+        android:targetSdkVersion="15" />
+    
+    <uses-feature android:glEsVersion="0x00020000" android:required="true" />
+
+    <application
+        android:icon="@drawable/ic_launcher"
+        android:label="@string/app_name"
+        android:theme="@style/AppTheme" >
+        <activity
+            android:name=".MainActivity"
+            android:label="@string/title_activity_main" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+    </application>
+
+</manifest>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/Square.java
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/Square.java	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/Square.java	(revision 13587)
@@ -0,0 +1,76 @@
+package com.example.opengles20;
+
+import java.nio.ByteBuffer;
+import java.nio.ByteOrder;
+import java.nio.FloatBuffer;
+import java.nio.ShortBuffer;
+
+import android.opengl.GLES20;
+
+class Square {
+
+    private FloatBuffer vertexBuffer;
+    private ShortBuffer drawListBuffer;
+
+    // number of coordinates per vertex in this array
+    static final int COORDS_PER_VERTEX = 3;
+    static float squareCoords[] = { -0.5f,  0.5f, 0.0f,   // top left
+                                    -0.5f, -0.5f, 0.0f,   // bottom left
+                                     0.5f, -0.5f, 0.0f,   // bottom right
+                                     0.5f,  0.5f, 0.0f }; // top right
+    // Set color with red, green, blue and alpha (opacity) values
+    float color[] = { 0.63671875f, 0.76953125f, 0.22265625f, 1.0f };
+    private short drawOrder[] = { 0, 1, 2, 0, 2, 3 }; // order to draw vertices
+    private int mProgram; 
+    private int mPositionHandle;
+    private int mColorHandle;
+    private final int vertexCount = squareCoords.length / COORDS_PER_VERTEX;
+    private final int vertexStride = COORDS_PER_VERTEX * 4; // bytes per vertex
+
+    public Square() {
+        // initialize vertex byte buffer for shape coordinates
+        ByteBuffer bb = ByteBuffer.allocateDirect(
+        // (# of coordinate values * 4 bytes per float)
+                squareCoords.length * 4);
+        bb.order(ByteOrder.nativeOrder());
+        vertexBuffer = bb.asFloatBuffer();
+        vertexBuffer.put(squareCoords);
+        vertexBuffer.position(0);
+
+        // initialize byte buffer for the draw list
+        ByteBuffer dlb = ByteBuffer.allocateDirect(
+        // (# of coordinate values * 2 bytes per short)
+                drawOrder.length * 2);
+        dlb.order(ByteOrder.nativeOrder());
+        drawListBuffer = dlb.asShortBuffer();
+        drawListBuffer.put(drawOrder);
+        drawListBuffer.position(0);
+    }
+    public void draw2() {
+        // Add program to OpenGL ES environment
+        GLES20.glUseProgram(mProgram);
+
+        // get handle to vertex shader's vPosition member
+        mPositionHandle = GLES20.glGetAttribLocation(mProgram, "vPosition");
+
+        // Enable a handle to the triangle vertices
+        GLES20.glEnableVertexAttribArray(mPositionHandle);
+
+        // Prepare the triangle coordinate data
+        GLES20.glVertexAttribPointer(mPositionHandle, COORDS_PER_VERTEX,
+                                     GLES20.GL_FLOAT, false,
+                                     vertexStride, vertexBuffer);
+
+        // get handle to fragment shader's vColor member
+        mColorHandle = GLES20.glGetUniformLocation(mProgram, "vColor");
+
+        // Set color for drawing the triangle
+        GLES20.glUniform4fv(mColorHandle, 1, color, 0);
+
+        // Draw the triangle
+        GLES20.glDrawArrays(GLES20.GL_TRIANGLES, 0, vertexCount);
+
+        // Disable vertex array
+        GLES20.glDisableVertexAttribArray(mPositionHandle);
+    }
+}
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/MainActivity.java
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/MainActivity.java	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/MainActivity.java	(revision 13587)
@@ -0,0 +1,57 @@
+package com.example.opengles20;
+
+
+import android.app.Activity;
+import android.content.Context;
+import android.opengl.GLSurfaceView;
+import android.os.Bundle;
+
+public class MainActivity extends Activity {
+
+    private GLSurfaceView mGLView;
+
+    @Override
+    public void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+
+        // Create a GLSurfaceView instance and set it
+        // as the ContentView for this Activity.
+        mGLView = new MyGLSurfaceView(this);
+        setContentView(mGLView);
+    }
+    @Override
+    protected void onPause() {
+        super.onPause();
+        // The following call pauses the rendering thread.
+        // If your OpenGL application is memory intensive,
+        // you should consider de-allocating objects that
+        // consume significant memory here.
+        mGLView.onPause();
+    }
+    
+    @Override
+    protected void onResume() {
+        super.onResume();
+        // The following call resumes a paused rendering thread.
+        // If you de-allocated graphic objects for onPause()
+        // this is a good place to re-allocate them.
+        mGLView.onResume();
+    }
+}
+  
+class MyGLSurfaceView extends GLSurfaceView {
+
+	 public MyGLSurfaceView(Context context) {
+	        super(context);
+
+	        // Create an OpenGL ES 2.0 context.
+	        setEGLContextClientVersion(2);
+
+	        // Set the Renderer for drawing on the GLSurfaceView
+	        setRenderer(new MyGL20Renderer());
+
+	        // Render the view only when there is a change in the drawing data
+	        setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY);
+	    }
+    
+}
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/MyGL20Renderer.java
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/MyGL20Renderer.java	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/MyGL20Renderer.java	(revision 13587)
@@ -0,0 +1,46 @@
+package com.example.opengles20;
+
+
+
+import javax.microedition.khronos.egl.EGLConfig;
+import javax.microedition.khronos.opengles.GL10;
+
+import android.opengl.GLES20;
+import android.opengl.GLSurfaceView;
+
+	public class MyGL20Renderer implements GLSurfaceView.Renderer {
+	private	Triangle mTriangle;
+	//private Square mSquare;
+
+	public void onSurfaceCreated(GL10 unused, EGLConfig config) {
+	        //Set the background frame color
+	        GLES20.glClearColor(0.5f, 0.5f, 0.5f, 1.0f);
+	        mTriangle = new Triangle();
+	        //mSquare = new Square();
+	    }
+
+	    public void onDrawFrame(GL10 unused) {
+	        // Redraw background color
+	        GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT);
+	        mTriangle.draw1();
+	        //mSquare.draw2();
+	    }
+
+	    public void onSurfaceChanged(GL10 unused, int width, int height) {
+	        GLES20.glViewport(0, 0, width, height);
+	    }
+	    
+		public static int loadShader(int type, String shaderCode){
+
+		    // create a vertex shader type (GLES20.GL_VERTEX_SHADER)
+		    // or a fragment shader type (GLES20.GL_FRAGMENT_SHADER)
+		    int shader = GLES20.glCreateShader(type);
+
+		    // add the source code to the shader and compile it
+		    GLES20.glShaderSource(shader, shaderCode);
+		    GLES20.glCompileShader(shader);
+
+		    return shader;
+		}
+	}
+	
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/Triangle.java
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/Triangle.java	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/src/com/example/opengles20/Triangle.java	(revision 13587)
@@ -0,0 +1,94 @@
+package com.example.opengles20;
+
+import java.nio.ByteBuffer;
+import java.nio.ByteOrder;
+import java.nio.FloatBuffer;
+
+import android.opengl.GLES20;
+
+class Triangle {
+
+    private FloatBuffer vertexBuffer;
+
+    // number of coordinates per vertex in this array
+    static final int COORDS_PER_VERTEX = 3;
+    static float triangleCoords[] = { // in counterclockwise order:
+         0.0f,  0.622008459f, 0.0f,   // top
+        -0.5f, -0.311004243f, 0.0f,   // bottom left
+         0.5f, -0.311004243f, 0.0f    // bottom right
+    };
+
+    private int mProgram; 
+    private int mPositionHandle;
+    private int mColorHandle;
+    private final int vertexCount = triangleCoords.length / COORDS_PER_VERTEX;
+    private final int vertexStride = COORDS_PER_VERTEX * 4; // bytes per vertex
+
+    // Set color with red, green, blue and alpha (opacity) values
+    float color[] = { 0.63671875f, 0.76953125f, 0.22265625f, 1.0f };
+    
+	private final String vertexShaderCode =
+			"attribute vec4 vPosition;" +
+			"void main() {" +
+			"  gl_Position = vPosition;" +
+			"}";
+
+	private final String fragmentShaderCode =
+			"precision mediump float;" +
+			"uniform vec4 vColor;" +
+			"void main() {" +
+			"  gl_FragColor = vColor;" +
+			"}";
+	
+
+    public Triangle() {
+        // initialize vertex byte buffer for shape coordinates
+        ByteBuffer bb = ByteBuffer.allocateDirect(
+                // (number of coordinate values * 4 bytes per float)
+                triangleCoords.length * 4);
+        // use the device hardware's native byte order
+        bb.order(ByteOrder.nativeOrder());
+
+        // create a floating point buffer from the ByteBuffer
+        vertexBuffer = bb.asFloatBuffer();
+        // add the coordinates to the FloatBuffer
+        vertexBuffer.put(triangleCoords);
+        // set the buffer to read the first coordinate
+        vertexBuffer.position(0);
+        int vertexShader = MyGL20Renderer.loadShader(GLES20.GL_VERTEX_SHADER, vertexShaderCode);
+        int fragmentShader = MyGL20Renderer.loadShader(GLES20.GL_FRAGMENT_SHADER, fragmentShaderCode);
+
+        mProgram = GLES20.glCreateProgram();             // create empty OpenGL ES Program
+        GLES20.glAttachShader(mProgram, vertexShader);   // add the vertex shader to program
+        GLES20.glAttachShader(mProgram, fragmentShader); // add the fragment shader to program
+        GLES20.glLinkProgram(mProgram);                  // creates OpenGL ES program executables
+    }
+    public void draw1() {
+        // Add program to OpenGL ES environment
+        GLES20.glUseProgram(mProgram);
+
+        // get handle to vertex shader's vPosition member
+        mPositionHandle = GLES20.glGetAttribLocation(mProgram, "vPosition");
+
+        // Enable a handle to the triangle vertices
+        GLES20.glEnableVertexAttribArray(mPositionHandle);
+
+        // Prepare the triangle coordinate data
+        GLES20.glVertexAttribPointer(mPositionHandle, COORDS_PER_VERTEX,
+                                     GLES20.GL_FLOAT, false,
+                                     vertexStride, vertexBuffer);
+
+        // get handle to fragment shader's vColor member
+        mColorHandle = GLES20.glGetUniformLocation(mProgram, "vColor");
+
+        // Set color for drawing the triangle
+        GLES20.glUniform4fv(mColorHandle, 1, color, 0);
+
+        // Draw the triangle
+        GLES20.glDrawArrays(GLES20.GL_TRIANGLES, 0, vertexCount);
+
+        // Disable vertex array
+        GLES20.glDisableVertexAttribArray(mPositionHandle);
+    }
+}
+
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/AndroidManifest.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/AndroidManifest.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/AndroidManifest.xml	(revision 13587)
@@ -0,0 +1,27 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="com.example.opengles20"
+    android:versionCode="1"
+    android:versionName="1.0" >
+
+    <uses-sdk
+        android:minSdkVersion="8"
+        android:targetSdkVersion="15" />
+    
+    <uses-feature android:glEsVersion="0x00020000" android:required="true" />
+
+    <application
+        android:icon="@drawable/ic_launcher"
+        android:label="@string/app_name"
+        android:theme="@style/AppTheme" >
+        <activity
+            android:name=".MainActivity"
+            android:label="@string/title_activity_main" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+    </application>
+
+</manifest>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/OpenGLES20.apk
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/OpenGLES20.apk
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/OpenGLES20.apk	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/OpenGLES20.apk	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/OpenGLES20.apk
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/resources.ap_
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/resources.ap_
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/resources.ap_	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/resources.ap_	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/resources.ap_
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-hdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-hdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-hdpi/ic_launcher.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-hdpi/ic_launcher.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-hdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-hdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-hdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-hdpi/ic_action_search.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-hdpi/ic_action_search.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-hdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-ldpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-ldpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-ldpi/ic_launcher.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-ldpi/ic_launcher.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-ldpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-mdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-mdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-mdpi/ic_launcher.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-mdpi/ic_launcher.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-mdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-mdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-mdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-mdpi/ic_action_search.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-mdpi/ic_action_search.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-mdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-xhdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-xhdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-xhdpi/ic_launcher.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-xhdpi/ic_launcher.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-xhdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-xhdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-xhdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-xhdpi/ic_action_search.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-xhdpi/ic_action_search.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/res/drawable-xhdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes.dex
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes.dex
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes.dex	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes.dex	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes.dex
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MyGLSurfaceView.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MyGLSurfaceView.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MyGLSurfaceView.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MyGLSurfaceView.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MyGLSurfaceView.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$string.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$string.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$string.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$string.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$string.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$attr.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$attr.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$attr.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$attr.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$attr.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/Square.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/Square.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/Square.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/Square.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/Square.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MainActivity.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MainActivity.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MainActivity.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MainActivity.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MainActivity.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MyGL20Renderer.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MyGL20Renderer.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MyGL20Renderer.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MyGL20Renderer.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/MyGL20Renderer.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$id.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$id.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$id.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$id.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$id.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$layout.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$layout.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$layout.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$layout.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$layout.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/BuildConfig.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/BuildConfig.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/BuildConfig.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/BuildConfig.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/BuildConfig.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/Triangle.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/Triangle.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/Triangle.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/Triangle.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/Triangle.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$style.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$style.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$style.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$style.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$style.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$drawable.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$drawable.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$drawable.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$drawable.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$drawable.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$menu.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$menu.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$menu.class	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$menu.class	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/bin/classes/com/example/opengles20/R$menu.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/gen/com/example/opengles20/R.java
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/gen/com/example/opengles20/R.java	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/gen/com/example/opengles20/R.java	(revision 13587)
@@ -0,0 +1,35 @@
+/* AUTO-GENERATED FILE.  DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found.  It
+ * should not be modified by hand.
+ */
+
+package com.example.opengles20;
+
+public final class R {
+    public static final class attr {
+    }
+    public static final class drawable {
+        public static final int ic_action_search=0x7f020000;
+        public static final int ic_launcher=0x7f020001;
+    }
+    public static final class id {
+        public static final int menu_settings=0x7f070000;
+    }
+    public static final class layout {
+        public static final int activity_main=0x7f030000;
+    }
+    public static final class menu {
+        public static final int activity_main=0x7f060000;
+    }
+    public static final class string {
+        public static final int app_name=0x7f040000;
+        public static final int hello_world=0x7f040001;
+        public static final int menu_settings=0x7f040002;
+        public static final int title_activity_main=0x7f040003;
+    }
+    public static final class style {
+        public static final int AppTheme=0x7f050000;
+    }
+}
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/gen/com/example/opengles20/BuildConfig.java
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/gen/com/example/opengles20/BuildConfig.java	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/gen/com/example/opengles20/BuildConfig.java	(revision 13587)
@@ -0,0 +1,6 @@
+/** Automatically generated file. DO NOT MODIFY */
+package com.example.opengles20;
+
+public final class BuildConfig {
+    public final static boolean DEBUG = true;
+}
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/libs/android-support-v4.jar
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/libs/android-support-v4.jar
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/libs/android-support-v4.jar	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/libs/android-support-v4.jar	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/libs/android-support-v4.jar
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values/styles.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values/styles.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values/styles.xml	(revision 13587)
@@ -0,0 +1,5 @@
+<resources>
+
+    <style name="AppTheme" parent="android:Theme.Light" />
+
+</resources>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values/strings.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values/strings.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values/strings.xml	(revision 13587)
@@ -0,0 +1,8 @@
+<resources>
+
+    <string name="app_name">OpenGLES20</string>
+    <string name="hello_world">Hello world!</string>
+    <string name="menu_settings">Settings</string>
+    <string name="title_activity_main">MainActivity</string>
+
+</resources>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-hdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-hdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-hdpi/ic_launcher.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-hdpi/ic_launcher.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-hdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-hdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-hdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-hdpi/ic_action_search.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-hdpi/ic_action_search.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-hdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/menu/activity_main.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/menu/activity_main.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/menu/activity_main.xml	(revision 13587)
@@ -0,0 +1,6 @@
+<menu xmlns:android="http://schemas.android.com/apk/res/android">
+    <item android:id="@+id/menu_settings"
+        android:title="@string/menu_settings"
+        android:orderInCategory="100"
+        android:showAsAction="never" />
+</menu>
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values-v11/styles.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values-v11/styles.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values-v11/styles.xml	(revision 13587)
@@ -0,0 +1,5 @@
+<resources>
+
+    <style name="AppTheme" parent="android:Theme.Holo.Light" />
+
+</resources>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-ldpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-ldpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-ldpi/ic_launcher.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-ldpi/ic_launcher.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-ldpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values-v14/styles.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values-v14/styles.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/values-v14/styles.xml	(revision 13587)
@@ -0,0 +1,5 @@
+<resources>
+
+    <style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar" />
+
+</resources>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-mdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-mdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-mdpi/ic_launcher.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-mdpi/ic_launcher.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-mdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-mdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-mdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-mdpi/ic_action_search.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-mdpi/ic_action_search.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-mdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-xhdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-xhdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-xhdpi/ic_launcher.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-xhdpi/ic_launcher.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-xhdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-xhdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-xhdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-xhdpi/ic_action_search.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-xhdpi/ic_action_search.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/drawable-xhdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/res/layout/activity_main.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/res/layout/activity_main.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/res/layout/activity_main.xml	(revision 13587)
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="fill_parent"
+    android:layout_height="fill_parent"
+    android:orientation="vertical" >
+
+    <TextView
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"
+        android:text="hello" />
+
+</LinearLayout>
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/ic_launcher-web.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/OpenGLES20/ic_launcher-web.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/OpenGLES20/ic_launcher-web.png	(revision 13586)
+++ ../trunk-jpl/src/android/helloworld/OpenGLES20/ic_launcher-web.png	(revision 13587)

Property changes on: ../trunk-jpl/src/android/helloworld/OpenGLES20/ic_launcher-web.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
