Registered User mNo edit summary |
Registered User mNo edit summary |
||
Line 22: | Line 22: | ||
=== glmark2-es2-wayland === | === glmark2-es2-wayland === | ||
* Start Weston (if not already started) | * Start Weston (if not already started) | ||
{{Board$}} systemctl start weston | {{Board$}} systemctl start weston@root.service | ||
* Launch glmark2 | * Launch glmark2 | ||
{{Board$}} glmark2-es2-wayland | {{Board$}} glmark2-es2-wayland | ||
Line 28: | Line 28: | ||
=== glmark2-es2-drm === | === glmark2-es2-drm === | ||
* Stop Weston | * Stop Weston | ||
{{Board$}} systemctl stop weston | {{Board$}} systemctl stop weston@root.service | ||
* The DRM display mode may need to be set and the DRM master token released so that glmark2 can use the DRM interfaces. This depends on the glmark2 version. For instance: | * The DRM display mode may need to be set and the DRM master token released so that glmark2 can use the DRM interfaces. This depends on the glmark2 version. For instance: | ||
{{Board$}} modetest -s 27:720x1280 -d & | {{Board$}} modetest -s 27:720x1280 -d & |
Revision as of 14:55, 14 September 2020
1. Introduction[edit source]
glmark2 is an OpenGL 2.0 and ES 2.0 benchmark, developed by Alexandros Frantzis and Jesse Barker. It is based on the original glmark benchmark by Ben Smith. extracted from The glmark2 official web site [1]
2. Installing glmark2[edit source]
2.1. Building glmark2[edit source]
Execute the following command in the OpenSTLinux build environment:
bitbake glmark2
2.2. Installing glmark2 on the target board[edit source]
Execute the following command in the OpenSTLinux build environment:
# libpng12 may not be required depending on the glmark2 versionscp -r tmp*/work/*neon*/glmark2/*/image/* root@<ip address of board>:/ scp tmp*/work/*neon*/libpng12/*/image/usr/lib/libpng*.so* root@<ip address of board>:/usr/lib/
3. Using glmark2[edit source]
Building glmark2 generates 2 binaries:
- glmark2-es2-wayland, to launch glmark2 benchmark as a wayland client.
- glmark2-es2-drm, to launch glmark2 benchmark as a native DRM/GBM openGLES application.
3.1. glmark2-es2-wayland[edit source]
- Start Weston (if not already started)
systemctl start weston@root.service
- Launch glmark2
glmark2-es2-wayland
3.2. glmark2-es2-drm[edit source]
- Stop Weston
systemctl stop weston@root.service
- The DRM display mode may need to be set and the DRM master token released so that glmark2 can use the DRM interfaces. This depends on the glmark2 version. For instance:
modetest -s 27:720x1280 -d &
Note: The connector and the mode are given as an example.
- Launch glmark2
glmark2-es2-drm
4. Source code location[edit source]
- Official source code: https://github.com/glmark2/glmark2
5. To go further[edit source]
You can find the full documentation of glmark2 in the related Ubuntu man page http://manpages.ubuntu.com/manpages/cosmic/man1/glmark2.1.html.
6. References[edit source]