diff mbox

[Branch,~glmark2-dev/glmark2/trunk] Rev 177: Build, Doc: Update files for 2011.12 release.

Message ID 20111215144313.14454.12047.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

alexandros.frantzis@linaro.org Dec. 15, 2011, 2:43 p.m. UTC
------------------------------------------------------------
revno: 177
tags: 2011.12
committer: Alexandros Frantzis <alexandros.frantzis@linaro.org>
branch nick: trunk
timestamp: Thu 2011-12-15 15:52:04 +0200
message:
  Build,Doc: Update files for 2011.12 release.
modified:
  NEWS
  android/AndroidManifest.xml
  android/jni/Android.mk
  android/jni/Android.ndk.mk
  doc/glmark2.1.in
  wscript


--
lp:glmark2
https://code.launchpad.net/~glmark2-dev/glmark2/trunk

You are subscribed to branch lp:glmark2.
To unsubscribe from this branch go to https://code.launchpad.net/~glmark2-dev/glmark2/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'NEWS'
--- NEWS	2011-11-16 10:43:22 +0000
+++ NEWS	2011-12-15 13:52:04 +0000
@@ -1,3 +1,13 @@ 
+glmark2 2011.12 (20111215)
+==========================
+
+* Add benchmark for bilinear filtering implemented in the fragment
+  shader (not included in the default benchmarks).
+* Ensure we don't call any GL functions before binding a GL context.
+* Fix bug in the ShaderSource object that could lead to shader
+  compilation errors in strict OpenGL ES 2.0 implementations.
+* Refactor scene update code to reduce duplication.
+
 glmark2 2011.11 (20111116)
 ==========================
 

=== modified file 'android/AndroidManifest.xml'
--- android/AndroidManifest.xml	2011-11-16 10:43:22 +0000
+++ android/AndroidManifest.xml	2011-12-15 13:52:04 +0000
@@ -1,7 +1,7 @@ 
 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
       android:versionCode="1"
-      android:versionName="2011.11" package="org.linaro.glmark2">
+      android:versionName="2011.12" package="org.linaro.glmark2">
     <application android:label="@string/app_name">
         <activity android:label="@string/app_name"
                   android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

=== modified file 'android/jni/Android.mk'
--- android/jni/Android.mk	2011-11-16 10:43:22 +0000
+++ android/jni/Android.mk	2011-12-15 13:52:04 +0000
@@ -27,7 +27,7 @@ 
 LOCAL_MODULE_TAGS := optional
 LOCAL_MODULE := libglmark2-android
 LOCAL_STATIC_LIBRARIES := libglmark2-matrix libglmark2-png
-LOCAL_CFLAGS := -DUSE_GLESv2 -DGLMARK_DATA_PATH="" -DGLMARK_VERSION="\"2011.11\""
+LOCAL_CFLAGS := -DUSE_GLESv2 -DGLMARK_DATA_PATH="" -DGLMARK_VERSION="\"2011.12\""
 LOCAL_SHARED_LIBRARIES := liblog libz libEGL libGLESv2 libandroid libdl libstlport
 LOCAL_C_INCLUDES := $(LOCAL_PATH)/src \
                     $(LOCAL_PATH)/src/libmatrix \

=== modified file 'android/jni/Android.ndk.mk'
--- android/jni/Android.ndk.mk	2011-11-16 10:43:22 +0000
+++ android/jni/Android.ndk.mk	2011-12-15 13:52:04 +0000
@@ -23,7 +23,7 @@ 
 LOCAL_MODULE_TAGS := optional
 LOCAL_MODULE := libglmark2-android
 LOCAL_STATIC_LIBRARIES := libglmark2-matrix libglmark2-png
-LOCAL_CFLAGS := -DUSE_GLESv2 -DGLMARK_DATA_PATH="" -DGLMARK_VERSION="\"2011.11\""
+LOCAL_CFLAGS := -DUSE_GLESv2 -DGLMARK_DATA_PATH="" -DGLMARK_VERSION="\"2011.12\""
 LOCAL_LDLIBS := -landroid -llog -lGLESv2 -lEGL -lz
 LOCAL_C_INCLUDES := $(LOCAL_PATH)/src \
                     $(LOCAL_PATH)/src/libmatrix \

=== modified file 'doc/glmark2.1.in'
--- doc/glmark2.1.in	2011-11-16 10:43:22 +0000
+++ doc/glmark2.1.in	2011-12-15 13:52:04 +0000
@@ -1,4 +1,4 @@ 
-.TH @APPNAME@ "1" "November 2011" "@appname@ @appversion@"
+.TH @APPNAME@ "1" "December 2011" "@appname@ @appversion@"
 .SH NAME
 @appname@ \- OpenGL (ES) 2.0 benchmark suite
 .SH SYNOPSIS

=== modified file 'wscript'
--- wscript	2011-11-16 10:43:22 +0000
+++ wscript	2011-12-15 13:52:04 +0000
@@ -8,7 +8,7 @@ 
 out = 'build'
 top = '.'
 
-VERSION = '2011.11'
+VERSION = '2011.12'
 APPNAME = 'glmark2'
 
 def options(opt):