tag | fb22f52cdc5651df5dccfe81d7e5cc91ba9f0e11 | |
---|---|---|
tagger | Lorenzo Dal Col <lorenzo@khronosgroup.org> | Thu Jun 22 17:45:42 2023 +0200 |
object | 8c5e7b3b9760bc8ea4302a34934433c9bbf47d61 |
Vulkan CTS 1.3.6.1 Fixes: * Fix device_memory_report to cover overallocaiton behavior * Match reference and test frag shaders in frag shader barycentric tests * Add missing src buffer flush and dst buffer invalidation * Avoid layout transition hazards in multisample built-in tests * Remove fragment stage in dEQP-VK.api.pipeline.pipeline_invalid_pointers_unused_structs.graphics * Exclude invalid subgroup tests from mustpass * Resolving pipeline robustness compute test bug * Fix out of bound array access in assert * Fix typo in device memory report tests * Add missing memory bit in ray query tests * Use the correct SPIR-V capabilities in shader_viewport_index tests * Fix strict aliasing violations in YCbCr view tests * UncheckedInstance creation should not validate call * Fix mismatched types in shader_intrinsics tests Improvements: * Include the full git hash in the dEQP version * Auto-generate knownConformanceVersions * Fix for Clang 16 * Require a more recent version of cmake
commit | 8c5e7b3b9760bc8ea4302a34934433c9bbf47d61 | [log] [tgz] |
---|---|---|
author | Lorenzo Dal Col <lorenzo@khronosgroup.org> | Fri Jun 16 15:22:19 2023 +0200 |
committer | Alexander Galazin <alexander.galazin@imgtec.com> | Fri Jun 16 13:57:00 2023 +0000 |
tree | 18c63b92364e28d8cd737856b22b5b40eeab3c40 | |
parent | 2c48764524de647aab0b5ae9743aba9109b569ae [diff] |
Allow Vulkan CTS 1.3.6.1 Affects: dEQP-VK.api.driver_properties.properties Components: Vulkan Change-Id: I7cffb27bfc0eda0e3cd95363b55b41d0948b17ee
This repository contains Khronos Conformance Testing Suite called VK-GL-CTS which originated from dEQP (drawElements Quality Program). VK-GL-CTS contains tests for several graphics APIs, including OpenGL, OpenGL ES, EGL, Vulkan, and Vulkan SC.
Up-to-date documentation for VK-GL-CTS 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/