commit | 38aef155fd17b720c517d5d1dfa5ae98be577bb3 | [log] [tgz] |
---|---|---|
author | Graeme Leese <gleese@broadcom.com> | Fri Jan 27 11:04:36 2023 +0000 |
committer | Piotr Byszewski <piotr.byszewski@mobica.com> | Fri Feb 03 19:27:34 2023 +0000 |
tree | deec4872f39aea59a378245a11663572ff2d618a | |
parent | d7f04f63cebbd2278b0cf5e9f34a8fcd7f127f2b [diff] |
Run descriptor_indexing tests in more places The descriptor indexing tests were requiring the descriptorIndexing overall feature although they only used certain sub-features. Specifying the individual features more exactly means that the tests will run on a wider range of configurations. Components: Vulkan Affects: dEQP-VK.descriptor_indexing.* Change-Id: I7af84b6bcacd50c04cd5c1575aa16481563c5801
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/