-
Notifications
You must be signed in to change notification settings - Fork 96
WebXR Example #73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Squareys
wants to merge
1
commit into
mosra:master
Choose a base branch
from
Squareys:webxr-example
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
WebXR Example #73
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| /* | ||
| This file is part of Magnum. | ||
|
|
||
| Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 | ||
| Vladimír Vondruš <mosra@centrum.cz> | ||
| Copyright © 2019 Jonathan Hale <squareys@googlemail.com> | ||
|
|
||
| Permission is hereby granted, free of charge, to any person obtaining a | ||
| copy of this software and associated documentation files (the "Software"), | ||
| to deal in the Software without restriction, including without limitation | ||
| the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
| and/or sell copies of the Software, and to permit persons to whom the | ||
| Software is furnished to do so, subject to the following conditions: | ||
|
|
||
| The above copyright notice and this permission notice shall be included | ||
| in all copies or substantial portions of the Software. | ||
|
|
||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
| THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
| FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
| DEALINGS IN THE SOFTWARE. | ||
| */ | ||
|
|
||
| namespace Magnum { | ||
| /** @page examples-webxr WebXR | ||
| @brief Basic WebXR application. | ||
|
|
||
| @m_footernavigation | ||
|
|
||
| @image html webxr.png width=480px | ||
|
|
||
| This example is a basic demonstration of how to use the | ||
| [Emscripten WebXR library](https://github.com/VhiteRabbit/emscripten-webxr) | ||
| with Magnum. | ||
|
|
||
| For the full experience, this example requires a WebXR 1.0 capable browser and | ||
| a VR headset. Before Chrome 79 or Oculus Browser 7.0 you may need to enable WebXR | ||
| support explicitly on your browser --- on Chrome go into `chrome://flags` and | ||
| search for WebXR. Works on Android as well. | ||
|
|
||
| @m_div{m-button m-primary} <a href="https://magnum.graphics/showcase/webxr/">@m_div{m-big} Live web demo @m_enddiv @m_div{m-small} uses WebAssembly & WebGL @m_enddiv </a> @m_enddiv | ||
|
|
||
| Note that there is also a @ref examples-webvr "WebVR example", a | ||
| @ref examples-ovr "Oculus VR example" and a | ||
| @ref examples-leapmotion "Leap Motion example". | ||
|
|
||
| @section examples-webxr-controls Controls | ||
|
|
||
| - @m_class{m-label m-default} **Mouse click** --- enter VR | ||
| - @m_class{m-label m-default} **Esc** --- exit VR | ||
|
|
||
| @section examples-webxr-credits Credits | ||
|
|
||
| This example was originally contributed by [Jonathan Hale](https://github.com/Squareys) from | ||
| [Vhite Rabbit](https://github.com/VhiteRabbit). | ||
|
|
||
| @m_class{m-block m-success} | ||
|
|
||
| @thirdparty This example makes use of the [emscripten-webxr](https://github.com/VhiteRabbit/emscripten-webxr) | ||
| library, released under the @m_class{m-label m-success} **MIT** | ||
| ([license text](https://github.com/VhiteRabbit/emscripten-webxr/blob/master/LICENSE), | ||
| [choosealicense.com](https://choosealicense.com/licenses/MIT/)). | ||
| Attribution is appreciated but not required. | ||
|
|
||
| @section examples-webxr-source Source | ||
|
|
||
| Full source code is linked below and together with assets also available in the | ||
| [magnum-examples GitHub repository](https://github.com/mosra/magnum-examples/tree/master/src/webxr). | ||
|
|
||
| - @ref webxr/CMakeLists.txt "CMakeLists.txt" | ||
| - @ref webxr/WebVrExample.cpp "WebXrExample.cpp" | ||
|
|
||
| @example webxr/CMakeLists.txt @m_examplenavigation{examples-webxr,webxr/} @m_footernavigation | ||
| @example webxr/WebXrExample.cpp @m_examplenavigation{examples-webxr,webxr/} @m_footernavigation | ||
|
|
||
| */ | ||
| } |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| # | ||
| # This file is part of Magnum. | ||
| # | ||
| # Original authors — credit is appreciated but not required: | ||
| # | ||
| # 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 — | ||
| # Vladimír Vondruš <mosra@centrum.cz> | ||
| # 2019 — Jonathan Hale <squareys@googlemail.com> | ||
| # | ||
| # This is free and unencumbered software released into the public domain. | ||
| # | ||
| # Anyone is free to copy, modify, publish, use, compile, sell, or distribute | ||
| # this software, either in source code form or as a compiled binary, for any | ||
| # purpose, commercial or non-commercial, and by any means. | ||
| # | ||
| # In jurisdictions that recognize copyright laws, the author or authors of | ||
| # this software dedicate any and all copyright interest in the software to | ||
| # the public domain. We make this dedication for the benefit of the public | ||
| # at large and to the detriment of our heirs and successors. We intend this | ||
| # dedication to be an overt act of relinquishment in perpetuity of all | ||
| # present and future rights to this software under copyright law. | ||
| # | ||
| # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
| # THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
| # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
| # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
| # | ||
|
|
||
| cmake_minimum_required(VERSION 3.4) | ||
|
|
||
| project(MagnumWebXrExample CXX) | ||
|
|
||
| # Add module path in case this is project root | ||
| if(PROJECT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR) | ||
| set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/../../modules/" ${CMAKE_MODULE_PATH}) | ||
| endif() | ||
|
|
||
| find_package(Magnum REQUIRED | ||
| GL | ||
| MeshTools | ||
| Primitives | ||
| Shaders | ||
| EmscriptenApplication) | ||
|
|
||
| set_directory_properties(PROPERTIES CORRADE_USE_PEDANTIC_FLAGS ON) | ||
|
|
||
| add_executable(magnum-webxr WebXrExample.cpp) | ||
| target_link_libraries(magnum-webxr PRIVATE | ||
| Magnum::Application | ||
| Magnum::GL | ||
| Magnum::Magnum | ||
| Magnum::MeshTools | ||
| Magnum::Primitives | ||
| Magnum::Shaders) | ||
| target_link_options(magnum-webxr PRIVATE | ||
| "SHELL:--js-library ${CMAKE_CURRENT_BINARY_DIR}/library_webxr.js") | ||
|
|
||
| # Copy the boilerplate next to the executable so it can be run directly from | ||
| # the build dir; provide an install target as well | ||
| add_custom_command(TARGET magnum-webxr POST_BUILD | ||
| COMMAND ${CMAKE_COMMAND} -E copy_if_different | ||
| ${MAGNUM_EMSCRIPTENAPPLICATION_JS} | ||
| ${MAGNUM_WEBAPPLICATION_CSS} | ||
| $<TARGET_FILE_DIR:magnum-webxr> | ||
| COMMAND ${CMAKE_COMMAND} -E copy_if_different | ||
| ${CMAKE_CURRENT_SOURCE_DIR}/webxr.html | ||
| $<TARGET_FILE_DIR:magnum-webxr>/magnum-webxr.html) | ||
|
|
||
| install(FILES webxr.html DESTINATION ${MAGNUM_DEPLOY_PREFIX}/webxr RENAME index.html) | ||
| install(TARGETS magnum-webxr DESTINATION ${MAGNUM_DEPLOY_PREFIX}/webxr) | ||
| install(FILES | ||
| ${MAGNUM_EMSCRIPTENAPPLICATION_JS} | ||
| ${MAGNUM_WEBAPPLICATION_CSS} | ||
| DESTINATION ${MAGNUM_DEPLOY_PREFIX}/webxr) | ||
| install(FILES | ||
| ${CMAKE_BINARY_DIR}/bin/magnum-webxr.js.mem | ||
| ${CMAKE_BINARY_DIR}/bin/magnum-webxr.wasm | ||
| DESTINATION ${MAGNUM_DEPLOY_PREFIX}/webxr OPTIONAL) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.