initial commit, 4.5 stable
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
This commit is contained in:
32
thirdparty/openxr/src/loader/android_utilities.h
vendored
Normal file
32
thirdparty/openxr/src/loader/android_utilities.h
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// Copyright (c) 2020-2025 The Khronos Group Inc.
|
||||
// Copyright (c) 2020-2021, Collabora, Ltd.
|
||||
//
|
||||
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
//
|
||||
// Initial Author: Rylie Pavlik <rylie.pavlik@collabora.com>
|
||||
|
||||
#pragma once
|
||||
#ifdef __ANDROID__
|
||||
|
||||
#include "wrap/android.content.h"
|
||||
|
||||
#include <string>
|
||||
namespace Json {
|
||||
class Value;
|
||||
} // namespace Json
|
||||
|
||||
namespace openxr_android {
|
||||
using wrap::android::content::Context;
|
||||
|
||||
/*!
|
||||
* Find the single active OpenXR runtime on the system, and return a constructed JSON object representing it.
|
||||
*
|
||||
* @param context An Android context, preferably an Activity Context.
|
||||
* @param[out] virtualManifest The Json::Value to fill with the virtual manifest.
|
||||
*
|
||||
* @return 0 on success, something else on failure.
|
||||
*/
|
||||
int getActiveRuntimeVirtualManifest(wrap::android::content::Context const &context, Json::Value &virtualManifest);
|
||||
} // namespace openxr_android
|
||||
|
||||
#endif // __ANDROID__
|
Reference in New Issue
Block a user