The open source OpenXR runtime
0
fork

Configure Feed

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

a/android: Fix some file comments.

+15 -4
+7 -2
src/xrt/auxiliary/android/android_custom_surface.cpp
··· 1 1 // Copyright 2020, Collabora, Ltd. 2 2 // SPDX-License-Identifier: BSL-1.0 3 - // Author: Ryan Pavlik <ryan.pavlik@collabora.com> 4 - // Author: Lubosz Sarnecki <lubosz.sarnecki@collabora.com> 3 + /*! 4 + * @file 5 + * @brief Implementation of native code for Android custom surface. 6 + * @author Ryan Pavlik <ryan.pavlik@collabora.com> 7 + * @author Lubosz Sarnecki <lubosz.sarnecki@collabora.com> 8 + * @ingroup aux_android 9 + */ 5 10 6 11 #include "android_custom_surface.h" 7 12 #include "android_load_class.h"
+2 -1
src/xrt/auxiliary/android/android_custom_surface.h
··· 2 2 // SPDX-License-Identifier: BSL-1.0 3 3 /*! 4 4 * @file 5 - * @brief Function for adding a new Surface to an activity. 5 + * @brief Functions for adding a new Surface to an activity and otherwise 6 + * interacting with an Android View. 6 7 * @author Ryan Pavlik <ryan.pavlik@collabora.com> 7 8 * @ingroup aux_android 8 9 */
+6 -1
src/xrt/auxiliary/android/android_load_class.cpp
··· 1 1 // Copyright 2020, Collabora, Ltd. 2 2 // SPDX-License-Identifier: BSL-1.0 3 - // Author: Ryan Pavlik <ryan.pavlik@collabora.com> 3 + /*! 4 + * @file 5 + * @brief Implementations for loading Java code from a package. 6 + * @author Ryan Pavlik <ryan.pavlik@collabora.com> 7 + * @ingroup aux_android 8 + */ 4 9 5 10 #include "android_load_class.h" 6 11