Skip to content

Commit

Permalink
Release commit of the OpenGL ES SDK for Android v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DDD-ARM committed Jun 22, 2017
1 parent e7b51e1 commit b19a680
Show file tree
Hide file tree
Showing 1,679 changed files with 474,998 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Artifacts of compiling.
/samples/*/*/bin
/samples/*/*/gen
/samples/*/*/libs
/samples/*/*/obj
/samples/*/*/local.properties
/samples/*/*/proguard-project.txt
/samples/*/*/build.xml

# Artifacts of loading the samples into Eclipse
/samples/*/*/.project
/samples/*/*/.settings
/samples/*/*/.classpath
/samples/*/*/.cproject

# Generated artifacts.
/artifacts
/out
*.swp
.idea/workspace.xml
.idea/tasks.xml
.externalNativeBuild
build
*.iml
gradle
gradlew
gradlew.bat
gradle-wrapper
.idea
.gradle
local.properties
docs/
18 changes: 18 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Copyright (c) 2012-2017, ARM Limited and Contributors

SPDX-License-Identifier: MIT

Permission is hereby granted, free of charge,
to any person obtaining a copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# OpenGL ES SDK for Android

![OpenGL ES SDK for Android](https://user-images.githubusercontent.com/11390552/27276063-d0798c42-54d1-11e7-9695-940270e24d11.jpg)

## Introduction

The OpenGL ES Software Development Kit for Android is a collection of resources to help you build OpenGL ES applications
for a platform with a Mali GPU and an ARM processor. You can use it for creating new applications,
training, and exploration of implementation possibilities.

## Requirements

To build and run the OpenGL ES sample applications you will need:
- An ARM based device with a Mali series GPU running Android.
- [Android Studio](https://developer.android.com/studio/index.html").
- The latest Android NDK, which should be downloaded automatically by Android Studio when you build the samples
(alternatively, you can install it by following the instructions [here](https://developer.android.com/studio/projects/add-native-code.html#download-ndk)).

## License

The software is provided under an MIT license. Contributions to this project are accepted under the same license.

## Building

#### Build instructions

To build the sample applications:
- Open Android Studio.
- Click on "Open an existing Android Studio project" and point to the directory where you extracted the Android samples.
- Now you can select individual samples and run them directly on your target device.

#### Notes

- You might be prompted to update or install the Gradle wrapper. Do so if asked.
- You might be prompted to download and/or update Android SDK tools if Android Studio has not downloaded these before.
- Under Tools -> Android -> SDK manager, install cmake, lldb and NDK components if these are not installed already.

#### Documentation
You can find the online documentation at https://arm-software.github.io/opengl-es-sdk-for-android/

or you can build the Doxygen documentation with `./build_documentation.sh`.
This requires Doxygen to be installed on your machine.
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.1.2
23 changes: 23 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}
9 changes: 9 additions & 0 deletions build_documentation.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

VERSTRING=`cat VERSION`
VERSION=$VERSTRING
export VERSION
echo $VERSION

cd doxygen
exec doxygen
Loading

0 comments on commit b19a680

Please sign in to comment.