| Age | Commit message (Collapse) | Author |
|
This picks up a few fixes, notably
https://github.com/KhronosGroup/Vulkan-ValidationLayers/pull/1393 which
helps with cross-compiling.
|
|
include(FindPkgConfig) technically works but is very wrong.
|
|
The warnings are purely semantic.
|
|
|
|
Update docs with modern CMake approach
|
|
Setting CMAKE_MACOS_RPATH is not needed given our cmake minimum
|
|
Required checking for surface support of a given physical device as well as
adding the correct Image usage for transient images.
|
|
- This approach matches what our SDK release process expect
- Since setting CMAKE_MACOS_DEPLOYMENT_TARGET ignores env variable which SDK
release process uses, which could will cause issues in the future, if
the version is changed
- CMAKE_MACOS_DEPLOYMENT_TARGET doesn't propogate to dependencies via
update_deps.py
|
|
|
|
Currently cubepp fails on Debug builds and triggers an assert.
This avoids the assert by calling the appropriate presentKHR.
|
|
- Update known-good
- Generate source
|
|
cube/cube.c:3122:14: error: variable 'result' set but not used [-Werror,-Wunused-but-set-variable]
VkResult result;
^
|
|
- Update known-good
- Generate source
|
|
- Update known-good
- Generate source
|
|
- Update known-good
- Generate source
|
|
- Update known-good
- Generate source
|
|
|
|
There are several values that in the build file that are only used when
the platform is not Android, but which are declared outside the
`if(!is_android)` block. This causes unused variable errors when
attempting to build chromium on Android with a dependency on this repo.
By moving the definitions into the conditional block the error is
resolved.
|
|
- Update known-good
- Generate source
|
|
|
|
- Update known-good
- VkVideoProfileKHR -> VkVideoProfileInfoKHR
- VkVideoProfilesKHR -> VkVideoProfileListInfoKHR
- Generate source
|
|
|
|
- Update known-good
- Generate source
|
|
GetVectorInit could get stuck in an infinite loop if the underlying API call eternally returned
VK_INCOMPLETE. This commit makes GetVectorInit stop after 3 tries.
|
|
- Update known-good
- Generate source
|
|
The ANDROID_NDK_HOME env var seems to have disappeared with the
deprecation of ndk-bundle:
https://github.com/actions/virtual-environments/issues/5879
|
|
"Include what you use": vulkaninfo.h calls wl_registry_bind, thus
ought to include wayland-client.h.
|
|
Avoids setting the color attachment bit for depth stencil formats to prevent crash
|
|
- Update known-good
- Generate source
|
|
- Update known-good
- Generate source
|
|
- Update known-good
- Generate source
|
|
- Update mock_icd generator create function detection to only look for
Create/Allocate at beginning of function name
- Update known-good
- Generate source
|
|
default paths.
|
|
|
|
|
|
- Update known-good
- Generate source
|
|
- Update known-good
- Generate source
|
|
|
|
- Update known-good
- Generate source
|
|
|
|
This was recently discovered by new validation messages. The
VkPhysicalDeviceGroupProperties sType member needs to be initialized properly.
|
|
- Update known-good
- Generate source
|
|
Encountered the crash on a compositor without keyboard, this seems to
fix it.
|
|
|
|
- Update known-good
- Generate source
|
|
|
|
Vulkan-Hpp Implicit-cast operators on vk::ResultValue were previously
deprecated and finally removed in the v1.3.213 headers. Fix the
resulting compiler error in cubepp by explicitly using the value member
of vk:ResultValue.
Change-Id: Ie441bd56dfb9dfe26e966e0ec3fb3139712a351a
|
|
- Update known-good
- Generate source
|
|
The default version 18362 started 404'ing and a new enough version is
present in the base image.
|
|
- Update known-good
- Generate source
|