The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build,scripts: Word choice/clarity

+18 -17
+1 -1
.gitlab-ci/distributions.jinja
··· 19 19 20 20 ci-fairy generate-template --config .gitlab-ci/config.yml .gitlab-ci/distributions.jinja > .gitlab-ci/distributions 21 21 22 - or just use the makefile. 22 + or better yet, use the makefile. 23 23 #} 24 24 {% for distro in distributions -%} {%- for image in distro.images if "deb_version_suffix" in image %} 25 25 Origin: monado.freedesktop.org
+4 -4
.reuse/dep5
··· 80 80 Files: src/external/glad/include/glad/egl.h 81 81 Copyright: 2013-2020, The Khronos Group, Inc. 82 82 License: Apache-2.0 83 - Comment: This is generated from the specification XML (licensed as above) by GLAD2: 83 + Comment: This is generated from the specification XML (licensed as indicated earlier) by GLAD2: 84 84 https://github.com/KhronosGroup/EGL-Registry/blob/main/api/egl.xml 85 85 Specification copyright statement last updated 2020 though file itself updated more recently. 86 86 87 87 Files: src/external/glad/include/glad/gl.h 88 88 Copyright: 2013-2022, The Khronos Group, Inc. 89 89 License: Apache-2.0 90 - Comment: This is generated from the specification XML (licensed as above) by GLAD2: 90 + Comment: This is generated from the specification XML (licensed as indicated earlier) by GLAD2: 91 91 https://raw.githubusercontent.com/KhronosGroup/OpenGL-Registry/main/xml/gl.xml 92 92 Specification copyright statement last updated 2020 though file itself updated more recently. 93 93 94 94 Files: src/external/glad/include/glad/glx.h 95 95 Copyright: 2013-2022, The Khronos Group, Inc. 96 96 License: Apache-2.0 97 - Comment: This is generated from the specification XML (licensed as above) by GLAD2: 97 + Comment: This is generated from the specification XML (licensed as indicated earlier) by GLAD2: 98 98 https://github.com/KhronosGroup/OpenGL-Registry/blob/main/xml/glx.xml 99 99 100 100 Files: src/external/glad/include/glad/wgl.h 101 101 Copyright: 2013-2022, The Khronos Group, Inc. 102 102 License: Apache-2.0 103 - Comment: This is generated from the specification XML (licensed as above) by GLAD2: 103 + Comment: This is generated from the specification XML (licensed as indicated earlier) by GLAD2: 104 104 https://github.com/KhronosGroup/OpenGL-Registry/blob/main/xml/wgl.xml 105 105 106 106 Files: src/external/glad/src/*
+3 -3
CMakeLists.txt
··· 62 62 else() 63 63 find_program(PYTHON_EXECUTABLE python3) 64 64 if(PYTHON_EXECUTABLE MATCHES "WindowsApps") 65 - # If you hit this error, you will have to install Python 3 or try harder to tell CMake where it is. 65 + # If you receive this error, you will have to install Python 3 or try harder to tell CMake where it is. 66 66 message( 67 67 FATAL_ERROR 68 68 "Found WindowsApps alias for Python. Make sure Python3 is installed, then choose 'Manage App Execution Aliases' in Start and disable the aliases for Python." ··· 260 260 261 261 # Drivers to build (sorted) 262 262 option_with_deps(XRT_BUILD_DRIVER_ANDROID "Enable Android sensors driver" DEPENDS ANDROID) 263 - option_with_deps(XRT_BUILD_DRIVER_ARDUINO "Enable Arduino input device with BLE via via D-Bus" DEPENDS XRT_HAVE_DBUS) 264 - option_with_deps(XRT_BUILD_DRIVER_DAYDREAM "Enable the Google Daydream View controller driver (BLE, via D-Bus)" DEPENDS XRT_HAVE_DBUS) 263 + option_with_deps(XRT_BUILD_DRIVER_ARDUINO "Enable Arduino input device with BLE" DEPENDS XRT_HAVE_DBUS) 264 + option_with_deps(XRT_BUILD_DRIVER_DAYDREAM "Enable the Google Daydream View controller driver (BLE)" DEPENDS XRT_HAVE_DBUS) 265 265 option_with_deps(XRT_BUILD_DRIVER_DEPTHAI "DepthAI" DEPENDS depthai_FOUND) 266 266 option_with_deps(XRT_BUILD_DRIVER_EUROC "Enable EuRoC dataset driver for SLAM evaluation" DEPENDS XRT_HAVE_OPENCV) 267 267 option_with_deps(XRT_BUILD_DRIVER_HANDTRACKING "Enable Camera Hand Tracking driver" DEPENDS XRT_HAVE_ONNXRUNTIME XRT_HAVE_OPENCV XRT_HAVE_V4L2)
+1 -1
cmake/FindEGL.cmake
··· 171 171 include(FeatureSummary) 172 172 set_package_properties(EGL PROPERTIES 173 173 URL "https://www.khronos.org/egl/" 174 - DESCRIPTION "A platform-agnostic mechanism for creating rendering surfaces for use with other graphics libraries, such as OpenGL|ES and OpenVG." 174 + DESCRIPTION "A platform-independent mechanism for creating rendering surfaces for use with other graphics libraries, such as OpenGL|ES and OpenVG." 175 175 )
+8 -7
cmake/OptionWithDeps.cmake
··· 30 30 31 31 This is based on cmake_dependent_options but meets common expectations better: 32 32 if you explicitly try to enable something that is not available, you get an error 33 - instead of just having it silently disabled. 33 + instead of having it silently disabled. 34 34 35 35 .. command:: option_with_deps 36 36 ··· 60 60 61 61 .. code-block:: cmake 62 62 63 - option_with_deps(USE_FOO "Use Foo" DEPENDS "USE_BAR" "NOT USE_ZOT") 63 + option_with_deps(USE_PACKAGE_ABC "Use Abc" DEPENDS "USE_PACKAGE_XYZ" "NOT USE_CONFLICTING_PACKAGE") 64 64 65 - If ``USE_BAR`` is true and ``USE_ZOT`` is false, this provides an option called 66 - ``USE_FOO`` that defaults to ON. Otherwise, it sets ``USE_FOO`` to OFF and 67 - hides the option from the user. If the status of ``USE_BAR`` or ``USE_ZOT`` 68 - ever changes, any value for the ``USE_FOO`` option is saved so that when the 69 - option is re-enabled it retains its old value. 65 + If ``USE_PACKAGE_XYZ`` is true and ``USE_CONFLICTING_PACKAGE`` is false, this provides 66 + an option called ``USE_PACKAGE_ABC`` that defaults to ON. Otherwise, it sets 67 + ``USE_PACKAGE_ABC`` to OFF and hides the option from the user. If the status of 68 + ``USE_PACKAGE_XYZ`` or ``USE_CONFLICTING_PACKAGE`` ever changes, any value for the 69 + ``USE_PACKAGE_ABC`` option is saved so that when the option is re-enabled it retains 70 + its old value. 70 71 71 72 #]=======================================================================] 72 73
+1 -1
doc/CMakeLists.txt
··· 12 12 ) 13 13 option_with_deps( 14 14 BUILD_DOC_EXTRACT_ALL 15 - "Extract all entities for documentation, not just documented ones (conflicts with BUILD_DOC_WARN_UNDOCUMENTED)" 15 + "Extract all entities for documentation, not only documented ones (conflicts with BUILD_DOC_WARN_UNDOCUMENTED)" 16 16 DEFAULT OFF 17 17 DEPENDS DOXYGEN_FOUND "NOT BUILD_DOC_WARN_UNDOCUMENTED" 18 18 )