Skip to content

Commit

Permalink
Build,Doc: Update files for 2023.01 release
Browse files Browse the repository at this point in the history
  • Loading branch information
afrantzis committed Jan 19, 2023
1 parent b48eda4 commit 42e3d8f
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 6 deletions.
13 changes: 13 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
glmark2 2023.01 (20230119)
==========================

* Add gbm-gl/glesv2 flavors for GBM offscreen rendering.
* Add x11-gl-egl flavor that uses EGL under X11.
* Implement SwapInterval 0 for the DRM backend.
* Support multisampled configs in --visual-config.
* Support explicitly specifying the config id in --visual-config.
* Add CPU time and shader compilation time to available results.
* Add --results to specify which kind of results to report.
* Add --results-file to export results to XML or CSV.
* Add --version command-line option.

glmark2 2021.12 (20211223)
==========================

Expand Down
2 changes: 1 addition & 1 deletion android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -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="2021.12" package="org.linaro.glmark2">
android:versionName="2023.01" package="org.linaro.glmark2">
<application android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round">
Expand Down
2 changes: 1 addition & 1 deletion android/jni/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := libglmark2-android
LOCAL_STATIC_LIBRARIES := libglmark2-matrix libglmark2-png libglmark2-ideas libglmark2-jpeg
LOCAL_CFLAGS := -DGLMARK_DATA_PATH="" -DGLMARK_VERSION="\"2021.12\"" \
LOCAL_CFLAGS := -DGLMARK_DATA_PATH="" -DGLMARK_VERSION="\"2023.01\"" \
-DGLMARK2_USE_GLESv2 -Werror -Wall -Wextra -Wnon-virtual-dtor \
-Wno-error=unused-parameter
LOCAL_SHARED_LIBRARIES := liblog libz libEGL libGLESv2 libandroid libdl libstlport
Expand Down
2 changes: 1 addition & 1 deletion android/jni/Android.ndk.mk
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := libglmark2-android
LOCAL_STATIC_LIBRARIES := libglmark2-matrix libglmark2-png libglmark2-ideas libglmark2-jpeg libglad-egl libglad-glesv2
LOCAL_CFLAGS := -DGLMARK_DATA_PATH="" -DGLMARK_VERSION="\"2021.12\"" \
LOCAL_CFLAGS := -DGLMARK_DATA_PATH="" -DGLMARK_VERSION="\"2023.01\"" \
-DGLMARK2_USE_GLESv2 -Werror -Wall -Wextra -Wnon-virtual-dtor \
-Wno-error=unused-parameter
LOCAL_LDLIBS := -landroid -llog -lz
Expand Down
2 changes: 1 addition & 1 deletion doc/glmark2.1.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH @APPNAME@ "1" "December 2021" "@appname@ @appversion@"
.TH @APPNAME@ "1" "January 2023" "@appname@ @appversion@"
.SH NAME
@appname@ \- OpenGL (ES) 2.0 benchmark suite
.SH SYNOPSIS
Expand Down
12 changes: 12 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/20230119
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
glmark2 2023.01 (20230119)
==========================

* Add gbm-gl/glesv2 flavors for GBM offscreen rendering.
* Add x11-gl-egl flavor that uses EGL under X11.
* Implement SwapInterval 0 for the DRM backend.
* Support multisampled configs in --visual-config.
* Support explicitly specifying the config id in --visual-config.
* Add CPU time and shader compilation time to available results.
* Add --results to specify which kind of results to report.
* Add --results-file to export results to XML or CSV.
* Add --version command-line option.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project(
'glmark2',
['cpp', 'c'],
default_options : ['cpp_std=c++14'],
version : '2021.12',
version : '2023.01',
meson_version: '>=0.47'
)

Expand Down
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ from waflib import Context
out = 'build'
top = '.'

VERSION = '2021.12'
VERSION = '2023.01'
APPNAME = 'glmark2'

FLAVORS = {
Expand Down

0 comments on commit 42e3d8f

Please sign in to comment.