commit | b43244487bc2c6385969456996c545895bce673e | [log] [tgz] |
---|---|---|
author | Connor Abbott <cwabbott0@gmail.com> | Mon May 04 18:43:11 2020 +0200 |
committer | Piers Daniell <pdaniell@nvidia.com> | Fri May 20 18:24:25 2022 +0000 |
tree | f951f0c16fb601c246a755c1296a5116ab580b06 | |
parent | 23d62b971cec55ae49cddc9a9e37614bc9f80668 [diff] |
fix input dependency for renderpass depth/stencil format tests This appears to be a copy/paste mistake. The exact stage/access bits was taken from other dependencies with an input attachment which is a depth/stencil attachment. Affected tests: dEQP-VK.renderpass.*.formats.d16_unorm.input.* dEQP-VK.renderpass.*.formats.x8_d24_unorm_pack32.input.* dEQP-VK.renderpass.*.formats.d32_sfloat.input.* dEQP-VK.renderpass.*.formats.d24_unorm_s8_uint.input.* dEQP-VK.renderpass.*.formats.d32_sfloat_s8_uint.input.* Change-Id: Ib1cde2371781cc8337905af04e0b7732b74333af Components: Vulkan VK-GL-CTS issue: 2351 (cherry picked from commit ea6f1ffae14de94bbd9c354ad5a6c3f452f65ac4)
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/