Blender Git Loki
Git Commits -> Revision e0da725
October 13, 2020, 12:39 (GMT) |
Commit Details:
Full Hash: e0da72507509510ce3fadfc6dd6a2e46ae7164fc
Parent Commit: 79875e3
Lines Changed: +3263, -26
1 Added Path:
/source/blender/windowmanager/xr/intern/wm_xr_actions.c (+431, -0) (View)
32 Modified Paths:
/intern/ghost/GHOST_C-api.h (+109, -0) (Diff)
/intern/ghost/GHOST_IXrContext.h (+6, -0) (Diff)
/intern/ghost/GHOST_Types.h (+60, -1) (Diff)
/intern/ghost/intern/GHOST_C-api.cpp (+142, -0) (Diff)
/intern/ghost/intern/GHOST_XrContext.cpp (+13, -0) (Diff)
/intern/ghost/intern/GHOST_XrContext.h (+6, -0) (Diff)
/intern/ghost/intern/GHOST_XrException.h (+3, -2) (Diff)
/intern/ghost/intern/GHOST_XRSession.cpp (+791, -0) (Diff)
/intern/ghost/intern/GHOST_XrSession.h (+42, -0) (Diff)
/intern/ghost/intern/GHOST_XR_intern.h (+42, -0) (Diff)
/source/blender/blenkernel/BKE_callbacks.h (+1, -0) (Diff)
/source/blender/draw/intern/draw_manager.c (+22, -0) (Diff)
/source/blender/editors/space_view3d/view3d_draw.c (+21, -15) (Diff)
/source/blender/makesdna/DNA_view3d_enums.h (+1, -0) (Diff)
/source/blender/makesdna/DNA_view3d_types.h (+1, -0) (Diff)
/source/blender/makesrna/intern/rna_wm.c (+129, -0) (Diff)
/source/blender/makesrna/intern/rna_xr.c (+628, -2) (Diff)
/source/blender/python/intern/bpy_app_handlers.c (+1, -0) (Diff)
/source/blender/windowmanager/CMakeLists.txt (+1, -0) (Diff)
/source/blender/windowmanager/intern/wm_event_query.c (+41, -0) (Diff)
/source/blender/windowmanager/intern/wm_event_system.c (+165, -0) (Diff)
/source/blender/windowmanager/intern/wm_operators.c (+1, -1) (Diff)
/source/blender/windowmanager/WM_api.h (+78, -0) (Diff)
/source/blender/windowmanager/wm_event_system.h (+10, -0) (Diff)
/source/blender/windowmanager/wm_event_types.h (+5, -0) (Diff)
/source/blender/windowmanager/wm_surface.h (+3, -0) (Diff)
/source/blender/windowmanager/WM_types.h (+21, -0) (Diff)
/source/blender/windowmanager/xr/intern/wm_xr.c (+12, -3) (Diff)
/source/blender/windowmanager/xr/intern/wm_xr_draw.c (+78, -0) (Diff)
/source/blender/windowmanager/xr/intern/wm_xr_intern.h (+60, -0) (Diff)
/source/blender/windowmanager/xr/intern/wm_xr_session.c (+334, -1) (Diff)
/source/blender/windowmanager/xr/wm_xr.h (+5, -1) (Diff)
/intern/ghost/GHOST_IXrContext.h (+6, -0) (Diff)
/intern/ghost/GHOST_Types.h (+60, -1) (Diff)
/intern/ghost/intern/GHOST_C-api.cpp (+142, -0) (Diff)
/intern/ghost/intern/GHOST_XrContext.cpp (+13, -0) (Diff)
/intern/ghost/intern/GHOST_XrContext.h (+6, -0) (Diff)
/intern/ghost/intern/GHOST_XrException.h (+3, -2) (Diff)
/intern/ghost/intern/GHOST_XRSession.cpp (+791, -0) (Diff)
/intern/ghost/intern/GHOST_XrSession.h (+42, -0) (Diff)
/intern/ghost/intern/GHOST_XR_intern.h (+42, -0) (Diff)
/source/blender/blenkernel/BKE_callbacks.h (+1, -0) (Diff)
/source/blender/draw/intern/draw_manager.c (+22, -0) (Diff)
/source/blender/editors/space_view3d/view3d_draw.c (+21, -15) (Diff)
/source/blender/makesdna/DNA_view3d_enums.h (+1, -0) (Diff)
/source/blender/makesdna/DNA_view3d_types.h (+1, -0) (Diff)
/source/blender/makesrna/intern/rna_wm.c (+129, -0) (Diff)
/source/blender/makesrna/intern/rna_xr.c (+628, -2) (Diff)
/source/blender/python/intern/bpy_app_handlers.c (+1, -0) (Diff)
/source/blender/windowmanager/CMakeLists.txt (+1, -0) (Diff)
/source/blender/windowmanager/intern/wm_event_query.c (+41, -0) (Diff)
/source/blender/windowmanager/intern/wm_event_system.c (+165, -0) (Diff)
/source/blender/windowmanager/intern/wm_operators.c (+1, -1) (Diff)
/source/blender/windowmanager/WM_api.h (+78, -0) (Diff)
/source/blender/windowmanager/wm_event_system.h (+10, -0) (Diff)
/source/blender/windowmanager/wm_event_types.h (+5, -0) (Diff)
/source/blender/windowmanager/wm_surface.h (+3, -0) (Diff)
/source/blender/windowmanager/WM_types.h (+21, -0) (Diff)
/source/blender/windowmanager/xr/intern/wm_xr.c (+12, -3) (Diff)
/source/blender/windowmanager/xr/intern/wm_xr_draw.c (+78, -0) (Diff)
/source/blender/windowmanager/xr/intern/wm_xr_intern.h (+60, -0) (Diff)
/source/blender/windowmanager/xr/intern/wm_xr_session.c (+334, -1) (Diff)
/source/blender/windowmanager/xr/wm_xr.h (+5, -1) (Diff)