commit | e75ff478055fc1810a131e704bad9b4f74a7e874 | [log] [tgz] |
---|---|---|
author | Piers Daniell <pdaniell@nvidia.com> | Wed Sep 06 13:40:07 2023 -0600 |
committer | Alexander Galazin <alexander.galazin@imgtec.com> | Thu Sep 07 07:57:30 2023 +0000 |
tree | a61516a9d7071c5d5754918b1bea6cd0c23437d5 | |
parent | 23f55be592913e6af03bb2733ba3304c48de8bb9 [diff] |
Remove unused and obsolute mustpass file gl45-master.txt is old and no longer generated. It must have been left here by mistake. It was replaced by gl45-es3-master.txt and gl45-es31-master.txt. Change-Id: I8015ec76d39dfbde74c163a6a72f54752c75abb3
This repository contains a GPU testing suite called dEQP (drawElements Quality Program). dEQP contains tests for several graphics APIs, including OpenGL ES, EGL, and Vulkan.
Up-to-date documentation for dEQP is available at:
The .qpa logs generated by the conformance tests may contain embedded PNG images of the results. These can be viewed with scripts/qpa_image_viewer.html
, by opening the file with a web browser and following its instructions, or using the Cherry tool.
This repository includes Khronos Vulkan CTS under external/vulkancts
directory. For more information see Vulkan CTS README.
This repository includes Khronos OpenGL / OpenGL ES CTS under external/openglcts
directory. For more information see OpenGL / OpenGL ES CTS README.
ANGLE can be built for Android by following the instructions here.
The resulting ANGLE shared object libraries can be linked against and embedded into dEQP.apk
with the --angle-path
option. This will cause dEQP.apk
to use the ANGLE libraries for OpenGL ES calls, rather than the native drivers.
An ABI must be specified and the directory structure containing the ANGLE shared objects must match it so the build system can find the correct *.so
files.
Assuming ANGLE shared objects are generated into ~/chromium/src/out/Release/
and dEQP.apk
will be generated with --abis arm64-v8a
, issue the following commands:
cd ~/chromium/src/out/Release/ mkdir arm64-v8a && cd arm64-v8a cp ../lib*_angle.so .
The --angle-path ~/chromium/src/out/Release/
option can then be used to link against and embed the ANGLE shared object files. The full command would be:
python scripts/android/build_apk.py --sdk <path to Android SDK> --ndk <path to Android NDK> --abis arm64-v8a --angle-path ~/chromium/src/out/Release/