tag | 5fda23ac5f088867aa4e302f9a6aa2d3786115cc | |
---|---|---|
tagger | Matthew Netsch <quic_mnetsch@quicinc.com> | Fri Mar 18 12:52:29 2022 -0700 |
object | ea32156f19e7837a479f690c76ed8c305248f0e4 |
Vulkan CTS 1.3.1.1 New Tests: * VK_EXT_pageable_device_local_memory test coverage * Merge vk-gl-cts/dev/VK_EXT_image_view_min_lod into vk-gl-cts/vulkan-cts-1.3.1 Fixes: * Delay initializing fragment_shading_rate tests * Accurate reason for fragment shading rate test not supported * Use correct barriers in dEQP-VK.api.copy_and_blit.core.*no_cab * Fix unsupported_features test. * Mark gl_Position as invariant in invariance tests * TimeLine semaphores tests should check for the feature * Do not require full subgroups when requiring a work group size * Fix validation errors in compute tests * Fix REQUIRE_FULL_SUBGROUPS_BIT tests with SPIR-V 1.6 * Remove Roadmap 2022 requirement * Always use workaround for blitting to/from BC6H * Increase error threshold for blitting non-nearest compressed formats * Fix build error on gcc 4.8 * Use the correct resolve mode for dynamic rendering * Add support for 'alternative' image view min lod calculation * Fix load_store_op_none dynamic rendering validation error * Replace bitwise or with logical * Avoid triangle fans in reinterpolation consistency tests * Fix uniform subgroup size test * Fix compilation on Android * Fix dynamic rendering multisampling test layout transition operation * Fix multiview dynamic rendering tests to enable dynamicRendering feature * Use the correct stencilInitialLayout for unused resolve targets with separate stencil * Avoid invalid reportIntersectionEXT hit kinds in subroup tests * Fix checkSupport in compressed texture sampling tests * Don't adjust vertext buffer pointer in AS for indirect AS build. * Remove Cached as it is not needed on compute zero_initialize_workgroup_memory tests * Only pass VkImageViewMinLodCreateInfoEXT when minLod is != 0.0f * Update mandatory features for Vulkan1.3 * Avoid invalid reportIntersectionEXT hit kinds in mem guarantee tests * Fix rounding issues with texture generation shader * Increase tolerance in multiple interpolation tests * Disable BC7 mode 8 pattern generation * Ray tracing: avoid skipping triangles and AABBs at the same time * Fix OOB memory copy in dEQP-VK.image.sample_cubemap.* tests * Fix Set/WaitEvent2KHR dependency flags setup Improvements: * Re-enable GCC warning for Amber * Update glslang
commit | ea32156f19e7837a479f690c76ed8c305248f0e4 | [log] [tgz] |
---|---|---|
author | Sławomir Cygan <slawomir.cygan@intel.com> | Mon Mar 07 20:32:16 2022 +0100 |
committer | Matthew Netsch <quic_mnetsch@quicinc.com> | Thu Mar 10 19:02:35 2022 +0000 |
tree | 159e6c0a705e892c29f38c127bb42e4c64e7ca0e | |
parent | 3b93a38d9e60e6ffb800f1bf51f63b7413999881 [diff] |
Add support for 'alternative' image view min lod calculation According to ''Image Level(s) Selection" in spec, the image view minLod value can be used as-is, or floor()-ed. This change runs verification in affected test twice, once requiring 'preferred' method, falling back to 'alternative' if 'preferred' method fails. Components: Vulkan VK-GL-CTS Issue: 3556 Affects: dEQP-VK.texture.*min_lod* Change-Id: I3af08485dbd99ad8d666c6f19aac3456130c375d
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/