tag | fedcfde30310f0dcced469d4ba51bd3121698bf7 | |
---|---|---|
tagger | Alexander Galazin <alexander.galazin@arm.com> | Thu Jul 16 17:06:45 2020 +0200 |
object | 246237de020d0263d185c4e2636cec88720cd6a4 |
Vulkan CTS 1.2.3.1 New tests: * Add tests for VK_EXT_fragment_density_map2 * Add tests for VK_EXT_private_data Fixes: * Avoid need for shaderOutputViewportIndex * Enable unused AllocationCallbackRecorder * Robustness2 features are enabled by default * Move texture parameter checking to checkSupport() * Fix minor VU issue with VK_EXT_extended_dynamic_state * Fix multiview dependency access mask for depth stencil attachments * Add missing barriers from device to host read access * Linux WSI checks the WS availability on create * Add calls to touchWatchdog()
commit | 246237de020d0263d185c4e2636cec88720cd6a4 | [log] [tgz] |
---|---|---|
author | Alexander Galazin <alexander.galazin@arm.com> | Thu Jul 09 16:05:07 2020 +0200 |
committer | Alexander Galazin <Alexander.Galazin@arm.com> | Thu Jul 09 14:23:07 2020 -0400 |
tree | 7847b5db924e7a27dc371ab850b1566654dbc801 | |
parent | e96d5df683d9d0a68c26ca760848f41494b52156 [diff] |
Whitelist Vulkan CTS 1.2.3.1 Affects: dEQP-VK.api.driver_properties.properties Components: Vulkan Change-Id: Ia56f34c1fa98dcd55f28572731a232fdd16bd072
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 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/