commit | 9e58b75b6576b0e0da5df40969a9b8a9220bfd55 | [log] [tgz] |
---|---|---|
author | Chia-I Wu <olv@google.com> | Sun Aug 21 06:47:46 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Sun Aug 21 06:47:46 2022 +0000 |
tree | 947cd942b34140433ee33331539c3d4e7b8c030b | |
parent | a49af849d340e07b0da72e3c5dd440731d38e648 [diff] | |
parent | eaadaaa595cca765058e27be4622e66751fc38c3 [diff] |
[automerger skipped] RESTRICT AUTOMERGE: Improve comparison of VkPhysicalDeviceMemoryProperties am: a128540c27 -s ours am: d515c387d2 -s ours am: eaadaaa595 -s ours am skip reason: subject contains skip directive Original change: https://android-review.googlesource.com/c/platform/external/deqp/+/2189177 Change-Id: If2dfb2fd3cc7086f94e6aa13db69d0ccc162ab55 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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 the dEQP is available at Android Open Source Project site.
The .qpa logs generated by the conformance tests may contain embedded png images of the results. These can be viewed with 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/