├── .clang-format ├── .clang-tidy ├── .github ├── FUNDING.yml └── workflows │ ├── Linux.yml │ ├── Win64.yml │ └── cmake.yml ├── .gitignore ├── .gitmodules ├── 3rdparty ├── BuildInc │ ├── BuildInc.c │ ├── CMakeLists.txt │ ├── LICENSE │ └── README.md ├── IDLLoader │ ├── IDLLoader.h │ ├── Unix │ │ └── DLLoader.h │ └── Windows │ │ └── DLLoader.h ├── glad │ ├── .gitignore │ ├── README.md │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ ├── glad.h │ │ │ ├── glad_egl.h │ │ │ ├── glad_glx.h │ │ │ └── glad_wgl.h │ └── src │ │ ├── glad.c │ │ ├── glad_egl.c │ │ ├── glad_glx.c │ │ └── glad_wgl.c ├── glfw │ ├── .editorconfig │ ├── .github │ │ ├── CODEOWNERS │ │ └── workflows │ │ │ └── build.yml │ ├── .mailmap │ ├── CMake │ │ ├── GenerateMappings.cmake │ │ ├── Info.plist.in │ │ ├── cmake_uninstall.cmake.in │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── i686-w64-mingw32-clang.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindEpollShim.cmake │ │ │ └── FindOSMesa.cmake │ │ ├── x86_64-w64-mingw32-clang.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── CONTRIBUTORS.md │ ├── LICENSE.md │ ├── README.md │ ├── deps │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad │ │ │ ├── gl.h │ │ │ ├── gles2.h │ │ │ └── vulkan.h │ │ ├── linmath.h │ │ ├── mingw │ │ │ ├── _mingw_dxhelper.h │ │ │ ├── dinput.h │ │ │ └── xinput.h │ │ ├── nuklear.h │ │ ├── nuklear_glfw_gl2.h │ │ ├── stb_image_write.h │ │ ├── tinycthread.c │ │ ├── tinycthread.h │ │ └── wayland │ │ │ ├── fractional-scale-v1.xml │ │ │ ├── idle-inhibit-unstable-v1.xml │ │ │ ├── pointer-constraints-unstable-v1.xml │ │ │ ├── relative-pointer-unstable-v1.xml │ │ │ ├── viewporter.xml │ │ │ ├── wayland.xml │ │ │ ├── xdg-activation-v1.xml │ │ │ ├── xdg-decoration-unstable-v1.xml │ │ │ └── xdg-shell.xml │ ├── docs │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── Doxyfile.in │ │ ├── DoxygenLayout.xml │ │ ├── SUPPORT.md │ │ ├── build.md │ │ ├── compat.md │ │ ├── compile.md │ │ ├── context.md │ │ ├── extra.css │ │ ├── extra.css.map │ │ ├── extra.scss │ │ ├── footer.html │ │ ├── header.html │ │ ├── input.md │ │ ├── internal.md │ │ ├── intro.md │ │ ├── main.md │ │ ├── monitor.md │ │ ├── moving.md │ │ ├── news.md │ │ ├── quick.md │ │ ├── spaces.svg │ │ ├── vulkan.md │ │ └── window.md │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── boing.c │ │ ├── gears.c │ │ ├── glfw.icns │ │ ├── glfw.ico │ │ ├── glfw.rc │ │ ├── heightmap.c │ │ ├── offscreen.c │ │ ├── particles.c │ │ ├── sharing.c │ │ ├── splitview.c │ │ ├── triangle-opengl.c │ │ ├── triangle-opengles.c │ │ ├── wave.c │ │ └── windows.c │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.h │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_time.h │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── glfw.rc.in │ │ ├── glx_context.c │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mappings.h │ │ ├── mappings.h.in │ │ ├── monitor.c │ │ ├── nsgl_context.m │ │ ├── null_init.c │ │ ├── null_joystick.c │ │ ├── null_joystick.h │ │ ├── null_monitor.c │ │ ├── null_platform.h │ │ ├── null_window.c │ │ ├── osmesa_context.c │ │ ├── platform.c │ │ ├── platform.h │ │ ├── posix_module.c │ │ ├── posix_poll.c │ │ ├── posix_poll.h │ │ ├── posix_thread.c │ │ ├── posix_thread.h │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── vulkan.c │ │ ├── wgl_context.c │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_joystick.h │ │ ├── win32_module.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_thread.c │ │ ├── win32_thread.h │ │ ├── win32_time.c │ │ ├── win32_time.h │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── allocator.c │ │ ├── clipboard.c │ │ ├── cursor.c │ │ ├── empty.c │ │ ├── events.c │ │ ├── gamma.c │ │ ├── glfwinfo.c │ │ ├── icon.c │ │ ├── iconify.c │ │ ├── inputlag.c │ │ ├── joysticks.c │ │ ├── monitors.c │ │ ├── msaa.c │ │ ├── reopen.c │ │ ├── tearing.c │ │ ├── threads.c │ │ ├── timeout.c │ │ ├── title.c │ │ ├── triangle-vulkan.c │ │ └── window.c └── sqlite3 │ ├── include │ ├── sqlite3.h │ └── sqlite3ext.h │ ├── sqlite3.hpp │ └── src │ ├── shell.c │ └── sqlite3.c ├── CHANGELOG ├── CMakeLists.txt ├── LICENSE ├── README.md ├── VERSION ├── apis ├── ILayoutPane.h └── LtgPluginApi.h ├── cmake ├── 3rdparty.cmake ├── Maintained │ ├── ezlibs.cmake │ ├── iagp.cmake │ ├── imguipack.cmake │ └── maintained.cmake └── NotMaintained │ ├── glad.cmake │ ├── glfw.cmake │ ├── notmaintained.cmake │ └── sqlite3.cmake ├── doc ├── ImGuiFontStudio.exe ├── SQLiteSpy.exe ├── gifs │ ├── Open_lua_and_log_file_then_analyse_them.gif │ ├── display_a_diff_list_of_signal_between_two_frame_time_markers.gif │ ├── display_a_list_of_signal_at_the_mouse_hovered_frametime.gif │ ├── display_a_minimal_view_of_all_signals_graph.gif │ ├── graph_navigation.gif │ ├── group_some_signals_on_the_same_graph.gif │ ├── measure_delta_time_between_two_time_marks.gif │ ├── save_project.gif │ └── show_graph_of_some_signals.gif ├── log_parsing.lua ├── log_sample.log ├── samples.ltg └── wxLuaEdit.exe ├── main.cpp ├── plugins ├── CMakeLists.txt ├── LuaScripting │ ├── 3rdparty │ │ ├── luajit │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cmake │ │ │ │ └── modules │ │ │ │ │ ├── DetectArchitecture.c │ │ │ │ │ ├── DetectArchitecture.cmake │ │ │ │ │ ├── DetectFPUApi.cmake │ │ │ │ │ └── DetectFpuAbi.c │ │ │ ├── doc │ │ │ │ ├── bluequad-print.css │ │ │ │ ├── bluequad.css │ │ │ │ ├── contact.html │ │ │ │ ├── ext_buffer.html │ │ │ │ ├── ext_c_api.html │ │ │ │ ├── ext_ffi.html │ │ │ │ ├── ext_ffi_api.html │ │ │ │ ├── ext_ffi_semantics.html │ │ │ │ ├── ext_ffi_tutorial.html │ │ │ │ ├── ext_jit.html │ │ │ │ ├── ext_profiler.html │ │ │ │ ├── extensions.html │ │ │ │ ├── faq.html │ │ │ │ ├── img │ │ │ │ │ └── contact.png │ │ │ │ ├── install.html │ │ │ │ ├── luajit.html │ │ │ │ ├── running.html │ │ │ │ └── status.html │ │ │ ├── dynasm │ │ │ │ ├── dasm_arm.h │ │ │ │ ├── dasm_arm.lua │ │ │ │ ├── dasm_arm64.h │ │ │ │ ├── dasm_arm64.lua │ │ │ │ ├── dasm_mips.h │ │ │ │ ├── dasm_mips.lua │ │ │ │ ├── dasm_mips64.lua │ │ │ │ ├── dasm_ppc.h │ │ │ │ ├── dasm_ppc.lua │ │ │ │ ├── dasm_proto.h │ │ │ │ ├── dasm_x64.lua │ │ │ │ ├── dasm_x86.h │ │ │ │ ├── dasm_x86.lua │ │ │ │ └── dynasm.lua │ │ │ ├── etc │ │ │ │ ├── luajit.1 │ │ │ │ └── luajit.pc │ │ │ └── src │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.dep │ │ │ │ ├── host │ │ │ │ ├── README │ │ │ │ ├── buildvm.c │ │ │ │ ├── buildvm.h │ │ │ │ ├── buildvm_asm.c │ │ │ │ ├── buildvm_fold.c │ │ │ │ ├── buildvm_lib.c │ │ │ │ ├── buildvm_libbc.h │ │ │ │ ├── buildvm_peobj.c │ │ │ │ ├── cmake │ │ │ │ │ ├── buildvm │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ └── minilua │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── genlibbc.lua │ │ │ │ ├── genminilua.lua │ │ │ │ └── minilua.c │ │ │ │ ├── jit │ │ │ │ ├── .gitignore │ │ │ │ ├── bc.lua │ │ │ │ ├── bcsave.lua │ │ │ │ ├── dis_arm.lua │ │ │ │ ├── dis_arm64.lua │ │ │ │ ├── dis_arm64be.lua │ │ │ │ ├── dis_mips.lua │ │ │ │ ├── dis_mips64.lua │ │ │ │ ├── dis_mips64el.lua │ │ │ │ ├── dis_mips64r6.lua │ │ │ │ ├── dis_mips64r6el.lua │ │ │ │ ├── dis_mipsel.lua │ │ │ │ ├── dis_ppc.lua │ │ │ │ ├── dis_x64.lua │ │ │ │ ├── dis_x86.lua │ │ │ │ ├── dump.lua │ │ │ │ ├── p.lua │ │ │ │ ├── v.lua │ │ │ │ └── zone.lua │ │ │ │ ├── lauxlib.h │ │ │ │ ├── lib_aux.c │ │ │ │ ├── lib_base.c │ │ │ │ ├── lib_bit.c │ │ │ │ ├── lib_buffer.c │ │ │ │ ├── lib_debug.c │ │ │ │ ├── lib_ffi.c │ │ │ │ ├── lib_init.c │ │ │ │ ├── lib_io.c │ │ │ │ ├── lib_jit.c │ │ │ │ ├── lib_math.c │ │ │ │ ├── lib_os.c │ │ │ │ ├── lib_package.c │ │ │ │ ├── lib_string.c │ │ │ │ ├── lib_table.c │ │ │ │ ├── lj_alloc.c │ │ │ │ ├── lj_alloc.h │ │ │ │ ├── lj_api.c │ │ │ │ ├── lj_arch.h │ │ │ │ ├── lj_asm.c │ │ │ │ ├── lj_asm.h │ │ │ │ ├── lj_asm_arm.h │ │ │ │ ├── lj_asm_arm64.h │ │ │ │ ├── lj_asm_mips.h │ │ │ │ ├── lj_asm_ppc.h │ │ │ │ ├── lj_asm_x86.h │ │ │ │ ├── lj_assert.c │ │ │ │ ├── lj_bc.c │ │ │ │ ├── lj_bc.h │ │ │ │ ├── lj_bcdump.h │ │ │ │ ├── lj_bcread.c │ │ │ │ ├── lj_bcwrite.c │ │ │ │ ├── lj_buf.c │ │ │ │ ├── lj_buf.h │ │ │ │ ├── lj_carith.c │ │ │ │ ├── lj_carith.h │ │ │ │ ├── lj_ccall.c │ │ │ │ ├── lj_ccall.h │ │ │ │ ├── lj_ccallback.c │ │ │ │ ├── lj_ccallback.h │ │ │ │ ├── lj_cconv.c │ │ │ │ ├── lj_cconv.h │ │ │ │ ├── lj_cdata.c │ │ │ │ ├── lj_cdata.h │ │ │ │ ├── lj_char.c │ │ │ │ ├── lj_char.h │ │ │ │ ├── lj_clib.c │ │ │ │ ├── lj_clib.h │ │ │ │ ├── lj_cparse.c │ │ │ │ ├── lj_cparse.h │ │ │ │ ├── lj_crecord.c │ │ │ │ ├── lj_crecord.h │ │ │ │ ├── lj_ctype.c │ │ │ │ ├── lj_ctype.h │ │ │ │ ├── lj_debug.c │ │ │ │ ├── lj_debug.h │ │ │ │ ├── lj_def.h │ │ │ │ ├── lj_dispatch.c │ │ │ │ ├── lj_dispatch.h │ │ │ │ ├── lj_emit_arm.h │ │ │ │ ├── lj_emit_arm64.h │ │ │ │ ├── lj_emit_mips.h │ │ │ │ ├── lj_emit_ppc.h │ │ │ │ ├── lj_emit_x86.h │ │ │ │ ├── lj_err.c │ │ │ │ ├── lj_err.h │ │ │ │ ├── lj_errmsg.h │ │ │ │ ├── lj_ff.h │ │ │ │ ├── lj_ffrecord.c │ │ │ │ ├── lj_ffrecord.h │ │ │ │ ├── lj_fopen.c │ │ │ │ ├── lj_fopen.h │ │ │ │ ├── lj_frame.h │ │ │ │ ├── lj_func.c │ │ │ │ ├── lj_func.h │ │ │ │ ├── lj_gc.c │ │ │ │ ├── lj_gc.h │ │ │ │ ├── lj_gdbjit.c │ │ │ │ ├── lj_gdbjit.h │ │ │ │ ├── lj_ir.c │ │ │ │ ├── lj_ir.h │ │ │ │ ├── lj_ircall.h │ │ │ │ ├── lj_iropt.h │ │ │ │ ├── lj_jit.h │ │ │ │ ├── lj_lex.c │ │ │ │ ├── lj_lex.h │ │ │ │ ├── lj_lib.c │ │ │ │ ├── lj_lib.h │ │ │ │ ├── lj_load.c │ │ │ │ ├── lj_mcode.c │ │ │ │ ├── lj_mcode.h │ │ │ │ ├── lj_meta.c │ │ │ │ ├── lj_meta.h │ │ │ │ ├── lj_obj.c │ │ │ │ ├── lj_obj.h │ │ │ │ ├── lj_opt_dce.c │ │ │ │ ├── lj_opt_fold.c │ │ │ │ ├── lj_opt_loop.c │ │ │ │ ├── lj_opt_mem.c │ │ │ │ ├── lj_opt_narrow.c │ │ │ │ ├── lj_opt_sink.c │ │ │ │ ├── lj_opt_split.c │ │ │ │ ├── lj_parse.c │ │ │ │ ├── lj_parse.h │ │ │ │ ├── lj_prng.c │ │ │ │ ├── lj_prng.h │ │ │ │ ├── lj_profile.c │ │ │ │ ├── lj_profile.h │ │ │ │ ├── lj_record.c │ │ │ │ ├── lj_record.h │ │ │ │ ├── lj_serialize.c │ │ │ │ ├── lj_serialize.h │ │ │ │ ├── lj_snap.c │ │ │ │ ├── lj_snap.h │ │ │ │ ├── lj_state.c │ │ │ │ ├── lj_state.h │ │ │ │ ├── lj_str.c │ │ │ │ ├── lj_str.h │ │ │ │ ├── lj_strfmt.c │ │ │ │ ├── lj_strfmt.h │ │ │ │ ├── lj_strfmt_num.c │ │ │ │ ├── lj_strscan.c │ │ │ │ ├── lj_strscan.h │ │ │ │ ├── lj_tab.c │ │ │ │ ├── lj_tab.h │ │ │ │ ├── lj_target.h │ │ │ │ ├── lj_target_arm.h │ │ │ │ ├── lj_target_arm64.h │ │ │ │ ├── lj_target_mips.h │ │ │ │ ├── lj_target_ppc.h │ │ │ │ ├── lj_target_x86.h │ │ │ │ ├── lj_trace.c │ │ │ │ ├── lj_trace.h │ │ │ │ ├── lj_traceerr.h │ │ │ │ ├── lj_udata.c │ │ │ │ ├── lj_udata.h │ │ │ │ ├── lj_vm.h │ │ │ │ ├── lj_vmevent.c │ │ │ │ ├── lj_vmevent.h │ │ │ │ ├── lj_vmmath.c │ │ │ │ ├── ljamalg.c │ │ │ │ ├── lua.h │ │ │ │ ├── lua.hpp │ │ │ │ ├── luaconf.h │ │ │ │ ├── luajit.c │ │ │ │ ├── luajit.h │ │ │ │ ├── lualib.h │ │ │ │ ├── msvcbuild.bat │ │ │ │ ├── msvcbuild_utf8open.bat │ │ │ │ ├── nxbuild.bat │ │ │ │ ├── ps4build.bat │ │ │ │ ├── ps5build.bat │ │ │ │ ├── psvitabuild.bat │ │ │ │ ├── vm_arm.dasc │ │ │ │ ├── vm_arm64.dasc │ │ │ │ ├── vm_mips.dasc │ │ │ │ ├── vm_mips64.dasc │ │ │ │ ├── vm_ppc.dasc │ │ │ │ ├── vm_x64.dasc │ │ │ │ ├── vm_x86.dasc │ │ │ │ ├── xb1build.bat │ │ │ │ └── xedkbuild.bat │ │ └── sol2 │ │ │ ├── .clang-format │ │ │ ├── .dockerignore │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── workflows │ │ │ │ ├── macos.yml │ │ │ │ ├── ubuntu.yml │ │ │ │ └── windows.yml │ │ │ ├── .gitignore │ │ │ ├── .style.yapf │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── cmake │ │ │ ├── Includes │ │ │ │ └── Project.cmake │ │ │ ├── Modules │ │ │ │ ├── CheckCompilerDiagnostic.cmake │ │ │ │ ├── CheckCompilerFlag.cmake │ │ │ │ ├── Common │ │ │ │ │ └── Core.cmake │ │ │ │ └── FindVersion.cmake │ │ │ ├── Packages │ │ │ │ ├── FindKaguyaBuild.cmake │ │ │ │ ├── FindLua │ │ │ │ │ ├── set_version_vars.cmake │ │ │ │ │ └── version_check.cmake │ │ │ │ ├── FindLuaBridgeBuild.cmake │ │ │ │ ├── FindLuaBuild.cmake │ │ │ │ ├── FindLuaBuild │ │ │ │ │ ├── LuaJIT.cmake │ │ │ │ │ └── LuaVanilla.cmake │ │ │ │ ├── FindLuwraBuild.cmake │ │ │ │ ├── FindSphinx.cmake │ │ │ │ └── FindToLuappBuild.cmake │ │ │ └── sol2-config.cmake.in │ │ │ ├── documentation │ │ │ ├── .clang-format │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── presentations │ │ │ │ ├── 2016.10.14 - ThePhD - No Overhead C Abstraction.pdf │ │ │ │ ├── 2017.11.08 - ThePhD - Wrapping Lua C in C++.pdf │ │ │ │ ├── 2018.02.06 - ThePhD - Biting the CMake Bullet.pdf │ │ │ │ ├── 2018.05.10 - ThePhD - Compile Fast, Run Faster, Scale Forever.pdf │ │ │ │ ├── 2018.09.28 - ThePhD - Scripting at the Speed of Thought.pdf │ │ │ │ └── 2019.05.10 - ThePhD - The Plan for Tomorrow - Compile-Time Extension Points in C++.pdf │ │ │ ├── requirements.txt │ │ │ └── source │ │ │ │ ├── _themes │ │ │ │ └── sol2 │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── static │ │ │ │ │ ├── search-fix.js_t │ │ │ │ │ └── sol2.css_t │ │ │ │ │ └── theme.conf │ │ │ │ ├── api │ │ │ │ ├── api-top.rst │ │ │ │ ├── as_args.rst │ │ │ │ ├── as_container.rst │ │ │ │ ├── as_function.rst │ │ │ │ ├── as_returns.rst │ │ │ │ ├── as_table.rst │ │ │ │ ├── c_call.rst │ │ │ │ ├── compatibility.rst │ │ │ │ ├── coroutine.rst │ │ │ │ ├── environment.rst │ │ │ │ ├── error.rst │ │ │ │ ├── function.rst │ │ │ │ ├── lua_value.rst │ │ │ │ ├── make_reference.rst │ │ │ │ ├── metatable_key.rst │ │ │ │ ├── nested.rst │ │ │ │ ├── new_table.rst │ │ │ │ ├── object.rst │ │ │ │ ├── optional.rst │ │ │ │ ├── overload.rst │ │ │ │ ├── policies.rst │ │ │ │ ├── property.rst │ │ │ │ ├── protect.rst │ │ │ │ ├── protected_function.rst │ │ │ │ ├── proxy.rst │ │ │ │ ├── readonly.rst │ │ │ │ ├── reference.rst │ │ │ │ ├── resolve.rst │ │ │ │ ├── stack.rst │ │ │ │ ├── stack_reference.rst │ │ │ │ ├── state.rst │ │ │ │ ├── table.rst │ │ │ │ ├── table_traversal_keys.rst │ │ │ │ ├── this_environment.rst │ │ │ │ ├── this_state.rst │ │ │ │ ├── thread.rst │ │ │ │ ├── tie.rst │ │ │ │ ├── types.rst │ │ │ │ ├── unique_usertype_traits.rst │ │ │ │ ├── user.rst │ │ │ │ ├── userdata.rst │ │ │ │ ├── usertype.rst │ │ │ │ ├── usertype_memory.rst │ │ │ │ ├── var.rst │ │ │ │ ├── variadic_args.rst │ │ │ │ ├── variadic_results.rst │ │ │ │ └── yielding.rst │ │ │ │ ├── benchmarks.rst │ │ │ │ ├── build.rst │ │ │ │ ├── codecvt.rst │ │ │ │ ├── compilation.rst │ │ │ │ ├── conf.py │ │ │ │ ├── containers.rst │ │ │ │ ├── errors.rst │ │ │ │ ├── exceptions.rst │ │ │ │ ├── features.rst │ │ │ │ ├── functions.rst │ │ │ │ ├── index.rst │ │ │ │ ├── licenses.rst │ │ │ │ ├── media │ │ │ │ ├── Ko-fi_Blue.png │ │ │ │ ├── become_a_patron_button.png │ │ │ │ ├── bench │ │ │ │ │ ├── base_derived.png │ │ │ │ │ ├── c_function.png │ │ │ │ │ ├── c_function_through_lua_in_c.png │ │ │ │ │ ├── implicit_inheritance.png │ │ │ │ │ ├── lua_bindings_shootout.json │ │ │ │ │ ├── lua_function_in_c.png │ │ │ │ │ ├── member_function_call.png │ │ │ │ │ ├── multi_return.png │ │ │ │ │ ├── multi_return_lua.png │ │ │ │ │ ├── optional_failure.png │ │ │ │ │ ├── optional_half_failure.png │ │ │ │ │ ├── optional_success.png │ │ │ │ │ ├── return_userdata.png │ │ │ │ │ ├── stateful_function_object.png │ │ │ │ │ ├── table_chained_get.png │ │ │ │ │ ├── table_chained_set.png │ │ │ │ │ ├── table_get.png │ │ │ │ │ ├── table_global_string_get.png │ │ │ │ │ ├── table_global_string_set.png │ │ │ │ │ ├── table_set.png │ │ │ │ │ ├── userdata_variable_access.png │ │ │ │ │ ├── userdata_variable_access_large.png │ │ │ │ │ └── userdata_variable_access_last.png │ │ │ │ ├── discord_logo_wordmark.png │ │ │ │ ├── eevee_code_after.jpg │ │ │ │ ├── eevee_code_before.jpg │ │ │ │ ├── github_logo.png │ │ │ │ ├── github_sponsors_logo.png │ │ │ │ ├── liberapay_logo.png │ │ │ │ ├── pp_cc_mark_111x69.jpg │ │ │ │ ├── sol.png │ │ │ │ └── sol.psd │ │ │ │ ├── mentions.rst │ │ │ │ ├── origin.rst │ │ │ │ ├── performance.rst │ │ │ │ ├── rtti.rst │ │ │ │ ├── safety.rst │ │ │ │ ├── threading.rst │ │ │ │ ├── traits.rst │ │ │ │ ├── tutorial │ │ │ │ ├── all-the-things.rst │ │ │ │ ├── customization.rst │ │ │ │ ├── cxx-in-lua.rst │ │ │ │ ├── existing.rst │ │ │ │ ├── functions.rst │ │ │ │ ├── getting-started.rst │ │ │ │ ├── ownership.rst │ │ │ │ ├── tutorial-top.rst │ │ │ │ └── variables.rst │ │ │ │ └── usertypes.rst │ │ │ ├── examples │ │ │ ├── .clang-format │ │ │ ├── CMakeLists.txt │ │ │ ├── customization │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ ├── entity.hpp │ │ │ │ │ ├── lua_interop.hpp │ │ │ │ │ ├── lua_zm_interop.hpp │ │ │ │ │ └── zm │ │ │ │ │ │ └── vec3.hpp │ │ │ │ └── source │ │ │ │ │ ├── lua_interop.cpp │ │ │ │ │ ├── lua_zm_interop.cpp │ │ │ │ │ └── main.cpp │ │ │ ├── interop │ │ │ │ ├── LuaBridge │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── source │ │ │ │ │ │ └── LuaBridge.cpp │ │ │ │ ├── kaguya │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── source │ │ │ │ │ │ └── kaguya.cpp │ │ │ │ ├── luwra │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── source │ │ │ │ │ │ └── luwra.cpp │ │ │ │ └── tolua │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── source │ │ │ │ │ ├── Player.h │ │ │ │ │ ├── Player.pkg │ │ │ │ │ ├── tolua.cpp │ │ │ │ │ └── tolua_Player.h │ │ │ ├── require_dll_example │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── my_object │ │ │ │ │ │ ├── my_object.hpp │ │ │ │ │ │ └── my_object_api.hpp │ │ │ │ └── source │ │ │ │ │ ├── my_object.cpp │ │ │ │ │ └── require_from_dll.cpp │ │ │ └── source │ │ │ │ ├── allocation_limit.cpp │ │ │ │ ├── any_return.cpp │ │ │ │ ├── args_from_container.cpp │ │ │ │ ├── as_returns.cpp │ │ │ │ ├── basic.cpp │ │ │ │ ├── c_array.cpp │ │ │ │ ├── c_call.cpp │ │ │ │ ├── calling_lua_functions.cpp │ │ │ │ ├── config.cpp │ │ │ │ ├── config.lua │ │ │ │ ├── container_usertype_as_container.cpp │ │ │ │ ├── container_with_pairs.cpp │ │ │ │ ├── containers.cpp │ │ │ │ ├── containers_as_table.cpp │ │ │ │ ├── coroutine.cpp │ │ │ │ ├── coroutine_multiple_stacks.cpp │ │ │ │ ├── coroutine_state.cpp │ │ │ │ ├── custom_reader.cpp │ │ │ │ ├── customization_base_object_catch.cpp │ │ │ │ ├── customization_convert_on_get.cpp │ │ │ │ ├── customization_global_transparent_argument.cpp │ │ │ │ ├── customization_multiple.cpp │ │ │ │ ├── docs │ │ │ │ ├── as_function.cpp │ │ │ │ ├── as_function_usertype_member_variable.cpp │ │ │ │ ├── as_table_ipairs.cpp │ │ │ │ ├── coroutine_main.cpp │ │ │ │ ├── coroutine_thread.cpp │ │ │ │ ├── inheritance.cpp │ │ │ │ ├── my_panic.cpp │ │ │ │ ├── preparing_environments.cpp │ │ │ │ ├── references_in_lambdas.cpp │ │ │ │ ├── runtime_extension.cpp │ │ │ │ ├── simple_functions.cpp │ │ │ │ ├── simple_structs.cpp │ │ │ │ ├── state_script_safe.cpp │ │ │ │ ├── state_transfer.cpp │ │ │ │ └── std_thread.cpp │ │ │ │ ├── dump.cpp │ │ │ │ ├── dynamic_object.cpp │ │ │ │ ├── environment_snooping.cpp │ │ │ │ ├── environment_state.cpp │ │ │ │ ├── environment_state_2.cpp │ │ │ │ ├── environments.cpp │ │ │ │ ├── environments_on_functions.cpp │ │ │ │ ├── error_handler.cpp │ │ │ │ ├── exception_handler.cpp │ │ │ │ ├── functions.cpp │ │ │ │ ├── functions_empty_arguments.cpp │ │ │ │ ├── index_and_newindex_usertype.cpp │ │ │ │ ├── indirect_function_calls.cpp │ │ │ │ ├── lua_stream.cpp │ │ │ │ ├── lua_value.cpp │ │ │ │ ├── metatable_customization.cpp │ │ │ │ ├── metatable_key_low_level.cpp │ │ │ │ ├── multi_results.cpp │ │ │ │ ├── optional_with_iteration.cpp │ │ │ │ ├── overloading.cpp │ │ │ │ ├── overloading_with_fallback.cpp │ │ │ │ ├── overloading_with_members.cpp │ │ │ │ ├── overridable_function_members.cpp │ │ │ │ ├── pairs.cpp │ │ │ │ ├── pairs_with_raw_functions.cpp │ │ │ │ ├── player_script.lua │ │ │ │ ├── property.cpp │ │ │ │ ├── protect.cpp │ │ │ │ ├── protected_functions.cpp │ │ │ │ ├── read_only.cpp │ │ │ │ ├── require.cpp │ │ │ │ ├── require_override_behavior.cpp │ │ │ │ ├── runtime_additions.cpp │ │ │ │ ├── script_error_handling.cpp │ │ │ │ ├── self_from_lua.cpp │ │ │ │ ├── shared_ptr.cpp │ │ │ │ ├── shared_ptr_inheritance.cpp │ │ │ │ ├── shared_ptr_modify_in_place.cpp │ │ │ │ ├── singleton.cpp │ │ │ │ ├── stack_aligned_function.cpp │ │ │ │ ├── stack_aligned_stack_handler_function.cpp │ │ │ │ ├── static_variables.cpp │ │ │ │ ├── table_as_container.cpp │ │ │ │ ├── table_create_if_nil.cpp │ │ │ │ ├── table_proxy.cpp │ │ │ │ ├── tables.cpp │ │ │ │ ├── this_state.cpp │ │ │ │ ├── tie.cpp │ │ │ │ ├── tutorials │ │ │ │ ├── erase_demo.cpp │ │ │ │ ├── first_snippet.cpp │ │ │ │ ├── lazy_demo.cpp │ │ │ │ ├── multiple_return.cpp │ │ │ │ ├── object_lifetime.cpp │ │ │ │ ├── open_multiple_libraries.cpp │ │ │ │ ├── pointer_lifetime.cpp │ │ │ │ ├── quick_n_dirty │ │ │ │ │ ├── arguments_to_scripts.cpp │ │ │ │ │ ├── functions_all.cpp │ │ │ │ │ ├── functions_easy.cpp │ │ │ │ │ ├── make_tables.cpp │ │ │ │ │ ├── multiple_returns_from_lua.cpp │ │ │ │ │ ├── multiple_returns_to_lua.cpp │ │ │ │ │ ├── namespacing.cpp │ │ │ │ │ ├── opening_a_state.cpp │ │ │ │ │ ├── opening_state_on_raw_lua.cpp │ │ │ │ │ ├── running_lua_code.cpp │ │ │ │ │ ├── running_lua_code_low_level.cpp │ │ │ │ │ ├── running_lua_code_safely.cpp │ │ │ │ │ ├── self_call.cpp │ │ │ │ │ ├── set_and_get_variables.cpp │ │ │ │ │ ├── set_and_get_variables_exists.cpp │ │ │ │ │ ├── tables_and_nesting.cpp │ │ │ │ │ ├── userdata.cpp │ │ │ │ │ ├── userdata_memory_reference.cpp │ │ │ │ │ └── usertypes.cpp │ │ │ │ ├── reading_functions.cpp │ │ │ │ ├── variables_demo.cpp │ │ │ │ ├── write_variables_demo.cpp │ │ │ │ ├── writing_functions.cpp │ │ │ │ ├── writing_member_functions.cpp │ │ │ │ ├── writing_overloaded_template_functions.cpp │ │ │ │ └── writing_template_functions.cpp │ │ │ │ ├── unique_ptr.cpp │ │ │ │ ├── usertype.cpp │ │ │ │ ├── usertype_advanced.cpp │ │ │ │ ├── usertype_automatic_operators.cpp │ │ │ │ ├── usertype_basics.cpp │ │ │ │ ├── usertype_bitfields.cpp │ │ │ │ ├── usertype_call_from_c++.cpp │ │ │ │ ├── usertype_constructors.cpp │ │ │ │ ├── usertype_dynamic_get_set.cpp │ │ │ │ ├── usertype_initializers.cpp │ │ │ │ ├── usertype_special_functions.cpp │ │ │ │ ├── usertype_var.cpp │ │ │ │ ├── variables.cpp │ │ │ │ ├── variadic_args.cpp │ │ │ │ ├── variadic_args_into_lua.cpp │ │ │ │ ├── variadic_args_shifted.cpp │ │ │ │ ├── variadic_args_storage.cpp │ │ │ │ └── wip │ │ │ │ └── lua_inheritance.cpp │ │ │ ├── include │ │ │ └── sol │ │ │ │ ├── as_args.hpp │ │ │ │ ├── as_returns.hpp │ │ │ │ ├── assert.hpp │ │ │ │ ├── base_traits.hpp │ │ │ │ ├── bind_traits.hpp │ │ │ │ ├── bytecode.hpp │ │ │ │ ├── call.hpp │ │ │ │ ├── compatibility.hpp │ │ │ │ ├── compatibility │ │ │ │ ├── compat-5.3.c.h │ │ │ │ ├── compat-5.3.h │ │ │ │ ├── compat-5.4.h │ │ │ │ └── lua_version.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── coroutine.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── demangle.hpp │ │ │ │ ├── deprecate.hpp │ │ │ │ ├── detail │ │ │ │ └── build_version.hpp │ │ │ │ ├── dump_handler.hpp │ │ │ │ ├── ebco.hpp │ │ │ │ ├── environment.hpp │ │ │ │ ├── epilogue.hpp │ │ │ │ ├── error.hpp │ │ │ │ ├── error_handler.hpp │ │ │ │ ├── forward.hpp │ │ │ │ ├── forward_detail.hpp │ │ │ │ ├── function.hpp │ │ │ │ ├── function_result.hpp │ │ │ │ ├── function_types.hpp │ │ │ │ ├── function_types_core.hpp │ │ │ │ ├── function_types_overloaded.hpp │ │ │ │ ├── function_types_stateful.hpp │ │ │ │ ├── function_types_stateless.hpp │ │ │ │ ├── function_types_templated.hpp │ │ │ │ ├── in_place.hpp │ │ │ │ ├── inheritance.hpp │ │ │ │ ├── load_result.hpp │ │ │ │ ├── lua_table.hpp │ │ │ │ ├── lua_value.hpp │ │ │ │ ├── make_reference.hpp │ │ │ │ ├── metatable.hpp │ │ │ │ ├── object.hpp │ │ │ │ ├── object_base.hpp │ │ │ │ ├── optional.hpp │ │ │ │ ├── optional_implementation.hpp │ │ │ │ ├── overload.hpp │ │ │ │ ├── packaged_coroutine.hpp │ │ │ │ ├── pairs_iterator.hpp │ │ │ │ ├── pointer_like.hpp │ │ │ │ ├── policies.hpp │ │ │ │ ├── prologue.hpp │ │ │ │ ├── property.hpp │ │ │ │ ├── protect.hpp │ │ │ │ ├── protected_function.hpp │ │ │ │ ├── protected_function_result.hpp │ │ │ │ ├── protected_handler.hpp │ │ │ │ ├── proxy_base.hpp │ │ │ │ ├── raii.hpp │ │ │ │ ├── reference.hpp │ │ │ │ ├── resolve.hpp │ │ │ │ ├── sol.hpp │ │ │ │ ├── stack.hpp │ │ │ │ ├── stack │ │ │ │ └── detail │ │ │ │ │ └── pairs.hpp │ │ │ │ ├── stack_check.hpp │ │ │ │ ├── stack_check_get.hpp │ │ │ │ ├── stack_check_get_qualified.hpp │ │ │ │ ├── stack_check_get_unqualified.hpp │ │ │ │ ├── stack_check_qualified.hpp │ │ │ │ ├── stack_check_unqualified.hpp │ │ │ │ ├── stack_core.hpp │ │ │ │ ├── stack_field.hpp │ │ │ │ ├── stack_get.hpp │ │ │ │ ├── stack_get_qualified.hpp │ │ │ │ ├── stack_get_unqualified.hpp │ │ │ │ ├── stack_guard.hpp │ │ │ │ ├── stack_iterator.hpp │ │ │ │ ├── stack_pop.hpp │ │ │ │ ├── stack_probe.hpp │ │ │ │ ├── stack_proxy.hpp │ │ │ │ ├── stack_proxy_base.hpp │ │ │ │ ├── stack_push.hpp │ │ │ │ ├── stack_reference.hpp │ │ │ │ ├── state.hpp │ │ │ │ ├── state_handling.hpp │ │ │ │ ├── state_view.hpp │ │ │ │ ├── string_view.hpp │ │ │ │ ├── table.hpp │ │ │ │ ├── table_core.hpp │ │ │ │ ├── table_iterator.hpp │ │ │ │ ├── table_proxy.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── tie.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── trampoline.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── types.hpp │ │ │ │ ├── unicode.hpp │ │ │ │ ├── unique_usertype_traits.hpp │ │ │ │ ├── unsafe_function.hpp │ │ │ │ ├── unsafe_function_result.hpp │ │ │ │ ├── userdata.hpp │ │ │ │ ├── usertype.hpp │ │ │ │ ├── usertype_container.hpp │ │ │ │ ├── usertype_container_launch.hpp │ │ │ │ ├── usertype_core.hpp │ │ │ │ ├── usertype_proxy.hpp │ │ │ │ ├── usertype_storage.hpp │ │ │ │ ├── usertype_traits.hpp │ │ │ │ ├── variadic_args.hpp │ │ │ │ ├── variadic_results.hpp │ │ │ │ ├── version.hpp │ │ │ │ └── wrapper.hpp │ │ │ ├── list_headers.py │ │ │ ├── meson.build │ │ │ ├── meson_options.txt │ │ │ ├── scripts │ │ │ ├── build.linux.sh │ │ │ ├── preparation.linux.sh │ │ │ ├── preparation.osx.sh │ │ │ ├── push.linux.sh │ │ │ ├── run.linux.sh │ │ │ └── run.osx.sh │ │ │ ├── single │ │ │ ├── CMakeLists.txt │ │ │ └── single.py │ │ │ ├── sol2.natvis │ │ │ ├── sol2.pc.in │ │ │ ├── subprojects │ │ │ └── lua.wrap │ │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── config_tests │ │ │ ├── CMakeLists.txt │ │ │ ├── function_pointers │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── source │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── retrieval.cpp │ │ │ └── integer_value_fits │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── source │ │ │ │ ├── main.cpp │ │ │ │ └── negative_size_t.cpp │ │ │ ├── enum │ │ │ ├── CMakeLists.txt │ │ │ └── source │ │ │ │ ├── main.cpp │ │ │ │ └── read_only_iteration.cpp │ │ │ ├── environment │ │ │ ├── CMakeLists.txt │ │ │ └── source │ │ │ │ ├── get.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── sandboxing.cpp │ │ │ │ ├── shadowing.cpp │ │ │ │ └── this_environment.cpp │ │ │ ├── exceptions │ │ │ ├── CMakeLists.txt │ │ │ └── source │ │ │ │ ├── functions.cpp │ │ │ │ ├── functions.noexcept.cpp │ │ │ │ ├── functions.yielding.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── usertypes.cpp │ │ │ │ └── usertypes.yielding.cpp │ │ │ ├── inclusion │ │ │ ├── CMakeLists.txt │ │ │ └── source │ │ │ │ ├── as_args.cpp │ │ │ │ ├── as_returns.cpp │ │ │ │ ├── base_traits.cpp │ │ │ │ ├── bind_traits.cpp │ │ │ │ ├── bytecode.cpp │ │ │ │ ├── call.cpp │ │ │ │ ├── compatibility.cpp │ │ │ │ ├── compatibility │ │ │ │ ├── compat-5.3.cpp │ │ │ │ └── lua_version.cpp │ │ │ │ ├── config.cpp │ │ │ │ ├── coroutine.cpp │ │ │ │ ├── debug.cpp │ │ │ │ ├── demangle.cpp │ │ │ │ ├── deprecate.cpp │ │ │ │ ├── detail │ │ │ │ └── build_version.cpp │ │ │ │ ├── ebco.cpp │ │ │ │ ├── environment.cpp │ │ │ │ ├── error.cpp │ │ │ │ ├── error_handler.cpp │ │ │ │ ├── forward.cpp │ │ │ │ ├── forward_detail.cpp │ │ │ │ ├── function.cpp │ │ │ │ ├── function_result.cpp │ │ │ │ ├── function_types.cpp │ │ │ │ ├── function_types_core.cpp │ │ │ │ ├── function_types_overloaded.cpp │ │ │ │ ├── function_types_stateful.cpp │ │ │ │ ├── function_types_stateless.cpp │ │ │ │ ├── function_types_templated.cpp │ │ │ │ ├── in_place.cpp │ │ │ │ ├── inheritance.cpp │ │ │ │ ├── load_result.cpp │ │ │ │ ├── lua_table.cpp │ │ │ │ ├── lua_value.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── make_reference.cpp │ │ │ │ ├── metatable.cpp │ │ │ │ ├── object.cpp │ │ │ │ ├── object_base.cpp │ │ │ │ ├── optional.cpp │ │ │ │ ├── optional_implementation.cpp │ │ │ │ ├── overload.cpp │ │ │ │ ├── packaged_coroutine.cpp │ │ │ │ ├── pairs_iterator.cpp │ │ │ │ ├── pointer_like.cpp │ │ │ │ ├── policies.cpp │ │ │ │ ├── property.cpp │ │ │ │ ├── protect.cpp │ │ │ │ ├── protected_function.cpp │ │ │ │ ├── protected_function_result.cpp │ │ │ │ ├── protected_handler.cpp │ │ │ │ ├── proxy.cpp │ │ │ │ ├── proxy_base.cpp │ │ │ │ ├── raii.cpp │ │ │ │ ├── reference.cpp │ │ │ │ ├── resolve.cpp │ │ │ │ ├── sol.cpp │ │ │ │ ├── stack.cpp │ │ │ │ ├── stack │ │ │ │ └── detail │ │ │ │ │ └── pairs.cpp │ │ │ │ ├── stack_check.cpp │ │ │ │ ├── stack_check_get.cpp │ │ │ │ ├── stack_check_get_qualified.cpp │ │ │ │ ├── stack_check_get_unqualified.cpp │ │ │ │ ├── stack_check_qualified.cpp │ │ │ │ ├── stack_check_unqualified.cpp │ │ │ │ ├── stack_core.cpp │ │ │ │ ├── stack_field.cpp │ │ │ │ ├── stack_get.cpp │ │ │ │ ├── stack_get_qualified.cpp │ │ │ │ ├── stack_get_unqualified.cpp │ │ │ │ ├── stack_guard.cpp │ │ │ │ ├── stack_iterator.cpp │ │ │ │ ├── stack_pop.cpp │ │ │ │ ├── stack_probe.cpp │ │ │ │ ├── stack_proxy.cpp │ │ │ │ ├── stack_proxy_base.cpp │ │ │ │ ├── stack_push.cpp │ │ │ │ ├── stack_reference.cpp │ │ │ │ ├── state.cpp │ │ │ │ ├── state_handling.cpp │ │ │ │ ├── state_view.cpp │ │ │ │ ├── string_view.cpp │ │ │ │ ├── table.cpp │ │ │ │ ├── table_core.cpp │ │ │ │ ├── table_iterator.cpp │ │ │ │ ├── thread.cpp │ │ │ │ ├── tie.cpp │ │ │ │ ├── traits.cpp │ │ │ │ ├── trampoline.cpp │ │ │ │ ├── tuple.cpp │ │ │ │ ├── types.cpp │ │ │ │ ├── unicode.cpp │ │ │ │ ├── unique_usertype_traits.cpp │ │ │ │ ├── unsafe_function.cpp │ │ │ │ ├── unsafe_function_result.cpp │ │ │ │ ├── userdata.cpp │ │ │ │ ├── usertype.cpp │ │ │ │ ├── usertype_container.cpp │ │ │ │ ├── usertype_container_launch.cpp │ │ │ │ ├── usertype_core.cpp │ │ │ │ ├── usertype_proxy.cpp │ │ │ │ ├── usertype_storage.cpp │ │ │ │ ├── usertype_traits.cpp │ │ │ │ ├── variadic_args.cpp │ │ │ │ ├── variadic_results.cpp │ │ │ │ ├── version.cpp │ │ │ │ └── wrapper.cpp │ │ │ ├── lua_lifetime │ │ │ ├── CMakeLists.txt │ │ │ └── source │ │ │ │ └── main.cpp │ │ │ ├── numerics │ │ │ ├── CMakeLists.txt │ │ │ └── source │ │ │ │ ├── large.cpp │ │ │ │ └── main.cpp │ │ │ ├── regression_tests │ │ │ ├── 1011 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── source │ │ │ │ │ └── 1011 - release mode crash MSVC.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── simple │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── source │ │ │ │ ├── 1000 - readonly warning.cpp │ │ │ │ ├── 1008 - as_function binding triggers correctly.cpp │ │ │ │ ├── 1067 - optional bindings.cpp │ │ │ │ ├── 1072 - capture exception propagation.cpp │ │ │ │ ├── 1087 - readonly property error checking.cpp │ │ │ │ ├── 1095 - raw_get from global table fails.cpp │ │ │ │ ├── 1096 - functions binding wrong.cpp │ │ │ │ ├── 1144 - type destructed from non-destructed memory.cpp │ │ │ │ ├── 1149 - static method gets const-morphed in internals.cpp │ │ │ │ ├── 1192 - incorrect alignment calculation.cpp │ │ │ │ ├── 1211 - protected_function_result nullptr.cpp │ │ │ │ ├── 1266 - add method in Lua 5.4 showing freelist.cpp │ │ │ │ ├── 1315 - keep-alive memory.cpp │ │ │ │ └── main.cpp │ │ │ └── run_time │ │ │ ├── CMakeLists.txt │ │ │ └── source │ │ │ ├── basic.cpp │ │ │ ├── common_classes.hpp │ │ │ ├── container.usertype_check.cpp │ │ │ ├── container_semantics.cpp │ │ │ ├── container_semantics.custom.cpp │ │ │ ├── container_semantics.ordered.cpp │ │ │ ├── container_semantics.unordered.cpp │ │ │ ├── container_shims.cpp │ │ │ ├── container_table.cpp │ │ │ ├── containers.cpp │ │ │ ├── containers.roundtrip.cpp │ │ │ ├── containers.table.cpp │ │ │ ├── coroutines.cpp │ │ │ ├── customizations.cpp │ │ │ ├── customizations_private.cpp │ │ │ ├── dump.cpp │ │ │ ├── functions.cpp │ │ │ ├── functions.std.cpp │ │ │ ├── gc.cpp │ │ │ ├── lua_value.cpp │ │ │ ├── main.cpp │ │ │ ├── operators.cpp │ │ │ ├── overflow.cpp │ │ │ ├── plain_types.cpp │ │ │ ├── policies.cpp │ │ │ ├── proxies.cpp │ │ │ ├── sol_test.hpp │ │ │ ├── state.cpp │ │ │ ├── storage.cpp │ │ │ ├── strings.cpp │ │ │ ├── tables.checks.cpp │ │ │ ├── tables.clear.cpp │ │ │ ├── tables.cpp │ │ │ ├── tables.enums.cpp │ │ │ ├── tables.indexing.cpp │ │ │ ├── tables.insertion.cpp │ │ │ ├── tables.traversal.cpp │ │ │ ├── usertypes.auxiliary_keys.cpp │ │ │ ├── usertypes.basic.cpp │ │ │ ├── usertypes.constructors.cpp │ │ │ ├── usertypes.cpp │ │ │ ├── usertypes.inheritance.cpp │ │ │ ├── usertypes.inheritance.multi.cpp │ │ │ ├── usertypes.member_variables.cpp │ │ │ ├── usertypes.overload.cpp │ │ │ ├── usertypes.properties.cpp │ │ │ ├── usertypes.runtime.cpp │ │ │ ├── usertypes.unique.cpp │ │ │ ├── usertypes.unregister.cpp │ │ │ ├── utility.cpp │ │ │ └── variadics.cpp │ ├── CMakeLists.txt │ ├── README.md │ ├── cmake │ │ ├── luajit.cmake │ │ └── sol2.cmake │ └── src │ │ ├── LuaScripting.cpp │ │ ├── LuaScripting.h │ │ ├── headers │ │ └── LuaScriptingBuild.h │ │ ├── modules │ │ ├── LuaDatasModel.cpp │ │ ├── LuaDatasModel.h │ │ ├── Module.cpp │ │ └── Module.h │ │ └── settings │ │ ├── Settings.cpp │ │ └── Settings.h └── PythonScripting │ ├── 3rdparty │ └── python-cmake-buildsystem │ │ ├── .circleci │ │ └── config.yml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── CTestConfig.cmake │ │ ├── LICENSE_Apache_20 │ │ ├── README.rst │ │ ├── appveyor.yml │ │ ├── cmake │ │ ├── ConfigureChecks.cmake │ │ ├── Extensions.cmake │ │ ├── FindPatch.cmake │ │ ├── PC │ │ │ └── bdist_wininst │ │ │ │ └── CMakeLists.txt │ │ ├── PlatformTest.cmake │ │ ├── PythonApplyPatches.cmake │ │ ├── PythonAutoDetectOSX.cmake │ │ ├── PythonConfig.cmake.in │ │ ├── PythonExtractVersionInfo.cmake │ │ ├── UnitTests.cmake │ │ ├── UpdateSysconfig.cmake │ │ ├── config-mingw │ │ │ ├── errmap.h │ │ │ └── pyconfig.h │ │ ├── config-unix │ │ │ └── pyconfig.h.in │ │ ├── config_2.c.in │ │ ├── config_3.c.in │ │ ├── empty.c │ │ ├── extensions │ │ │ └── CMakeLists.txt │ │ ├── ffi.h │ │ ├── fficonfig.h.in │ │ ├── include │ │ │ └── CMakeLists.txt │ │ ├── lib │ │ │ └── CMakeLists.txt │ │ ├── libpython │ │ │ ├── CMakeLists.txt │ │ │ └── generate_libpythonstub_def.cmake │ │ ├── makefile-variables.in │ │ ├── patches │ │ │ └── 01-readline-libedit.patch │ │ ├── platform.c │ │ ├── python.pc.in │ │ ├── python │ │ │ └── CMakeLists.txt │ │ └── tools │ │ │ └── CMakeLists.txt │ │ └── patches │ │ ├── 2.7.13 │ │ ├── Windows-GNU │ │ │ ├── 0001-MinGW-support-Add-patches-win32-01-dynload_win.patch.patch │ │ │ ├── 0002-MinGW-support-Add-patches-win32-02-signalmodule.patc.patch │ │ │ ├── 0003-MinGW-support-Add-patches-win32-03-mingw32.patch.patch │ │ │ └── 0004-MinGW-support-Add-patches-win32-05-libffi-latest.pat.patch │ │ └── Windows-MSVC │ │ │ ├── 1600 │ │ │ └── 0001-VS2010-Support-Backport-Fix-13210.-Port-the-Windows-.patch │ │ │ ├── 1700 │ │ │ └── 0001-VS2010-Support-Backport-Fix-13210.-Port-the-Windows-.patch │ │ │ ├── 1800 │ │ │ └── 0001-VS2010-Support-Backport-Fix-13210.-Port-the-Windows-.patch │ │ │ ├── 1900 │ │ │ ├── 0001-VS2010-Support-Backport-Fix-13210.-Port-the-Windows-.patch │ │ │ ├── 0002-VS2015-Support-Backport-Issue-22919-Windows-build-up.patch │ │ │ └── 0003-VS2015-Support-Backport-of-Issue-23524-Replace-_PyVe.patch │ │ │ └── README.rst │ │ ├── 2.7.15 │ │ ├── Windows-GNU │ │ │ ├── 0001-MinGW-support-Add-patches-win32-01-dynload_win.patch.patch │ │ │ ├── 0002-MinGW-support-Add-patches-win32-02-signalmodule.patc.patch │ │ │ ├── 0003-MinGW-support-Add-patches-win32-03-mingw32.patch.patch │ │ │ └── 0004-MinGW-support-Add-patches-win32-05-libffi-latest.pat.patch │ │ └── Windows-MSVC │ │ │ ├── 1600 │ │ │ └── 0001-VS2010-Support-Backport-Fix-13210.-Port-the-Windows-.patch │ │ │ ├── 1700 │ │ │ └── 0001-VS2010-Support-Backport-Fix-13210.-Port-the-Windows-.patch │ │ │ ├── 1800 │ │ │ └── 0001-VS2010-Support-Backport-Fix-13210.-Port-the-Windows-.patch │ │ │ ├── 1900 │ │ │ ├── 0001-VS2010-Support-Backport-Fix-13210.-Port-the-Windows-.patch │ │ │ ├── 0002-VS2015-Support-Backport-Issue-22919-Windows-build-up.patch │ │ │ └── 0003-VS2015-Support-Backport-of-Issue-23524-Replace-_PyVe.patch │ │ │ └── README.rst │ │ ├── 2.7.3 │ │ ├── 0001-Backport-Issue-20374-Fix-build-with-GNU-readline-6.3.patch │ │ ├── 0002-Backport-new-plan-just-remove-typecasts-closes-20374.patch │ │ ├── 0003-Backport-Issue-20374-Avoid-compiler-warnings-when-co.patch │ │ ├── README.rst │ │ └── Windows-GNU │ │ │ ├── 0001-MinGW-support-Add-patches-win32-01-dynload_win.patch.patch │ │ │ ├── 0002-MinGW-support-Add-patches-win32-02-signalmodule.patc.patch │ │ │ ├── 0003-MinGW-support-Add-patches-win32-03-mingw32.patch.patch │ │ │ └── 0004-MinGW-support-Add-patches-win32-05-libffi-latest.pat.patch │ │ ├── 2.7.5 │ │ ├── 0001-Backport-Issue-20374-Fix-build-with-GNU-readline-6.3.patch │ │ ├── 0002-Backport-new-plan-just-remove-typecasts-closes-20374.patch │ │ ├── 0003-Backport-Issue-20374-Avoid-compiler-warnings-when-co.patch │ │ ├── README.rst │ │ └── Windows-GNU │ │ │ ├── 0001-MinGW-support-Add-patches-win32-01-dynload_win.patch.patch │ │ │ ├── 0002-MinGW-support-Add-patches-win32-02-signalmodule.patc.patch │ │ │ ├── 0003-MinGW-support-Add-patches-win32-03-mingw32.patch.patch │ │ │ └── 0004-MinGW-support-Add-patches-win32-05-libffi-latest.pat.patch │ │ ├── 3.5 │ │ ├── 0001-Prevent-incorrect-include-of-io.h-and-memory.h-found.patch │ │ ├── 0002-Prevent-duplicated-OverlappedType-symbols-with-built.patch │ │ ├── 0003-mpdecimal-Export-inlined-functions-to-support-extens.patch │ │ └── README.rst │ │ ├── 3.6 │ │ ├── 0001-Prevent-incorrect-include-of-io.h-found-in-libmpdec-.patch │ │ ├── 0002-Prevent-duplicated-OverlappedType-symbols-with-built.patch │ │ ├── 0003-mpdecimal-Export-inlined-functions-to-support-extens.patch │ │ ├── 0004-Fix-Windows-build-of-Python-for-latest-WinSDK.patch │ │ └── README.rst │ │ └── README.rst │ ├── CMakeLists.txt │ ├── README.md │ ├── cmake │ └── python.cmake │ └── src │ ├── Headers │ └── PythonScriptingBuild.h │ ├── Modules │ ├── Module.cpp │ └── Module.h │ ├── PythonScripting.cpp │ ├── PythonScripting.h │ └── Settings │ ├── Settings.cpp │ └── Settings.h ├── res ├── appicon.bmp ├── appicon.ico ├── appicon.png └── appicon.rc ├── src ├── App.cpp ├── App.h ├── backend │ ├── MainBackend.cpp │ └── MainBackend.h ├── frontend │ ├── Components │ │ ├── CodeEditor.cpp │ │ └── CodeEditor.h │ ├── ImGuiThemes.cpp │ ├── MainFrontend.cpp │ └── MainFrontend.h ├── headers │ ├── CustomImGuiConfig.h │ ├── CustomImGuiFileDialogConfig.h │ ├── CustomImGuiThemeHelperConfigHeader.h │ ├── CustomImWidgetsConfig.h │ ├── CustomInAppGpuProfiler.h │ ├── CustomLtgBackendConfig.h │ ├── DatasDef.h │ ├── IconsMaterialDesign.h │ └── LogToGraphBuild.h ├── models │ ├── database │ │ ├── DataBase.cpp │ │ └── DataBase.h │ ├── graphs │ │ ├── GraphAnnotation.cpp │ │ ├── GraphAnnotation.h │ │ ├── GraphAnnotationModel.cpp │ │ ├── GraphAnnotationModel.h │ │ ├── GraphGroup.cpp │ │ ├── GraphGroup.h │ │ ├── GraphView.cpp │ │ └── GraphView.h │ ├── log │ │ ├── LogEngine.cpp │ │ ├── LogEngine.h │ │ ├── SignalSerie.cpp │ │ ├── SignalSerie.h │ │ ├── SignalTag.cpp │ │ ├── SignalTag.h │ │ ├── SignalTick.cpp │ │ ├── SignalTick.h │ │ ├── SignalTree.cpp │ │ ├── SignalTree.h │ │ ├── SourceFile.cpp │ │ └── SourceFile.h │ └── script │ │ ├── ScriptingEngine.cpp │ │ └── ScriptingEngine.h ├── panes │ ├── AnnotationPane.cpp │ ├── AnnotationPane.h │ ├── CodePane.cpp │ ├── CodePane.h │ ├── ConsolePane.cpp │ ├── ConsolePane.h │ ├── GraphGroupPane.cpp │ ├── GraphGroupPane.h │ ├── GraphListPane.cpp │ ├── GraphListPane.h │ ├── GraphPane.cpp │ ├── GraphPane.h │ ├── LogPane.cpp │ ├── LogPane.h │ ├── LogPaneSecondView.cpp │ ├── LogPaneSecondView.h │ ├── ProfilerPane.cpp │ ├── ProfilerPane.h │ ├── SignalsHoveredDiff.cpp │ ├── SignalsHoveredDiff.h │ ├── SignalsHoveredList.cpp │ ├── SignalsHoveredList.h │ ├── SignalsHoveredMap.cpp │ ├── SignalsHoveredMap.h │ ├── SignalsPreview.cpp │ ├── SignalsPreview.h │ ├── ToolPane.cpp │ └── ToolPane.h ├── project │ ├── ProjectFile.cpp │ └── ProjectFile.h ├── res │ ├── Roboto_Medium.cpp │ ├── Roboto_Medium.h │ ├── Roboto_Medium.png │ ├── fontIcons.cpp │ ├── fontIcons.h │ ├── fontIcons.png │ └── fonts │ │ ├── FONT.ifs │ │ └── MaterialDesignIcons.ttf └── systems │ ├── FrameActionSystem.cpp │ ├── FrameActionSystem.h │ ├── PluginManager.cpp │ ├── PluginManager.h │ ├── SettingsDialog.cpp │ ├── SettingsDialog.h │ ├── TranslationHelper.cpp │ └── TranslationHelper.h └── submodules.init.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: aiekick 2 | -------------------------------------------------------------------------------- /.github/workflows/Linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/.github/workflows/Linux.yml -------------------------------------------------------------------------------- /.github/workflows/Win64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/.github/workflows/Win64.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/BuildInc/BuildInc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/BuildInc/BuildInc.c -------------------------------------------------------------------------------- /3rdparty/BuildInc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/BuildInc/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/BuildInc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/BuildInc/LICENSE -------------------------------------------------------------------------------- /3rdparty/BuildInc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/BuildInc/README.md -------------------------------------------------------------------------------- /3rdparty/IDLLoader/IDLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/IDLLoader/IDLLoader.h -------------------------------------------------------------------------------- /3rdparty/IDLLoader/Unix/DLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/IDLLoader/Unix/DLLoader.h -------------------------------------------------------------------------------- /3rdparty/IDLLoader/Windows/DLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/IDLLoader/Windows/DLLoader.h -------------------------------------------------------------------------------- /3rdparty/glad/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glad/.gitignore -------------------------------------------------------------------------------- /3rdparty/glad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glad/README.md -------------------------------------------------------------------------------- /3rdparty/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /3rdparty/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glad/include/glad/glad.h -------------------------------------------------------------------------------- /3rdparty/glad/include/glad/glad_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glad/include/glad/glad_egl.h -------------------------------------------------------------------------------- /3rdparty/glad/include/glad/glad_glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glad/include/glad/glad_glx.h -------------------------------------------------------------------------------- /3rdparty/glad/include/glad/glad_wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glad/include/glad/glad_wgl.h -------------------------------------------------------------------------------- /3rdparty/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glad/src/glad.c -------------------------------------------------------------------------------- /3rdparty/glad/src/glad_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glad/src/glad_egl.c -------------------------------------------------------------------------------- /3rdparty/glad/src/glad_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glad/src/glad_glx.c -------------------------------------------------------------------------------- /3rdparty/glad/src/glad_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glad/src/glad_wgl.c -------------------------------------------------------------------------------- /3rdparty/glfw/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/.editorconfig -------------------------------------------------------------------------------- /3rdparty/glfw/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/.github/CODEOWNERS -------------------------------------------------------------------------------- /3rdparty/glfw/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/.github/workflows/build.yml -------------------------------------------------------------------------------- /3rdparty/glfw/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/.mailmap -------------------------------------------------------------------------------- /3rdparty/glfw/CMake/GenerateMappings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMake/GenerateMappings.cmake -------------------------------------------------------------------------------- /3rdparty/glfw/CMake/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMake/Info.plist.in -------------------------------------------------------------------------------- /3rdparty/glfw/CMake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /3rdparty/glfw/CMake/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMake/glfw3.pc.in -------------------------------------------------------------------------------- /3rdparty/glfw/CMake/glfw3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMake/glfw3Config.cmake.in -------------------------------------------------------------------------------- /3rdparty/glfw/CMake/i686-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMake/i686-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /3rdparty/glfw/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /3rdparty/glfw/CMake/modules/FindEpollShim.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMake/modules/FindEpollShim.cmake -------------------------------------------------------------------------------- /3rdparty/glfw/CMake/modules/FindOSMesa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMake/modules/FindOSMesa.cmake -------------------------------------------------------------------------------- /3rdparty/glfw/CMake/x86_64-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMake/x86_64-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /3rdparty/glfw/CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /3rdparty/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/glfw/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/CONTRIBUTORS.md -------------------------------------------------------------------------------- /3rdparty/glfw/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/LICENSE.md -------------------------------------------------------------------------------- /3rdparty/glfw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/README.md -------------------------------------------------------------------------------- /3rdparty/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/getopt.c -------------------------------------------------------------------------------- /3rdparty/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/getopt.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/glad/gl.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/glad/gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/glad/gles2.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/glad/vulkan.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/linmath.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/mingw/_mingw_dxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/mingw/_mingw_dxhelper.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/mingw/dinput.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/mingw/xinput.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/nuklear.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/stb_image_write.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /3rdparty/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /3rdparty/glfw/deps/wayland/fractional-scale-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/wayland/fractional-scale-v1.xml -------------------------------------------------------------------------------- /3rdparty/glfw/deps/wayland/idle-inhibit-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/wayland/idle-inhibit-unstable-v1.xml -------------------------------------------------------------------------------- /3rdparty/glfw/deps/wayland/pointer-constraints-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/wayland/pointer-constraints-unstable-v1.xml -------------------------------------------------------------------------------- /3rdparty/glfw/deps/wayland/relative-pointer-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/wayland/relative-pointer-unstable-v1.xml -------------------------------------------------------------------------------- /3rdparty/glfw/deps/wayland/viewporter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/wayland/viewporter.xml -------------------------------------------------------------------------------- /3rdparty/glfw/deps/wayland/wayland.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/wayland/wayland.xml -------------------------------------------------------------------------------- /3rdparty/glfw/deps/wayland/xdg-activation-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/wayland/xdg-activation-v1.xml -------------------------------------------------------------------------------- /3rdparty/glfw/deps/wayland/xdg-decoration-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/wayland/xdg-decoration-unstable-v1.xml -------------------------------------------------------------------------------- /3rdparty/glfw/deps/wayland/xdg-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/deps/wayland/xdg-shell.xml -------------------------------------------------------------------------------- /3rdparty/glfw/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/glfw/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/Doxyfile.in -------------------------------------------------------------------------------- /3rdparty/glfw/docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /3rdparty/glfw/docs/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/SUPPORT.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/build.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/compat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/compat.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/compile.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/context.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/extra.css -------------------------------------------------------------------------------- /3rdparty/glfw/docs/extra.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/extra.css.map -------------------------------------------------------------------------------- /3rdparty/glfw/docs/extra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/extra.scss -------------------------------------------------------------------------------- /3rdparty/glfw/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/footer.html -------------------------------------------------------------------------------- /3rdparty/glfw/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/header.html -------------------------------------------------------------------------------- /3rdparty/glfw/docs/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/input.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/internal.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/intro.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/main.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/monitor.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/moving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/moving.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/news.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/quick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/quick.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/spaces.svg -------------------------------------------------------------------------------- /3rdparty/glfw/docs/vulkan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/vulkan.md -------------------------------------------------------------------------------- /3rdparty/glfw/docs/window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/docs/window.md -------------------------------------------------------------------------------- /3rdparty/glfw/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/glfw/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/boing.c -------------------------------------------------------------------------------- /3rdparty/glfw/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/gears.c -------------------------------------------------------------------------------- /3rdparty/glfw/examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/glfw.icns -------------------------------------------------------------------------------- /3rdparty/glfw/examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/glfw.ico -------------------------------------------------------------------------------- /3rdparty/glfw/examples/glfw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/glfw.rc -------------------------------------------------------------------------------- /3rdparty/glfw/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/heightmap.c -------------------------------------------------------------------------------- /3rdparty/glfw/examples/offscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/offscreen.c -------------------------------------------------------------------------------- /3rdparty/glfw/examples/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/particles.c -------------------------------------------------------------------------------- /3rdparty/glfw/examples/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/sharing.c -------------------------------------------------------------------------------- /3rdparty/glfw/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/splitview.c -------------------------------------------------------------------------------- /3rdparty/glfw/examples/triangle-opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/triangle-opengl.c -------------------------------------------------------------------------------- /3rdparty/glfw/examples/triangle-opengles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/triangle-opengles.c -------------------------------------------------------------------------------- /3rdparty/glfw/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/wave.c -------------------------------------------------------------------------------- /3rdparty/glfw/examples/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/examples/windows.c -------------------------------------------------------------------------------- /3rdparty/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /3rdparty/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /3rdparty/glfw/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/cocoa_joystick.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/cocoa_joystick.m -------------------------------------------------------------------------------- /3rdparty/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /3rdparty/glfw/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/cocoa_platform.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/cocoa_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/cocoa_time.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /3rdparty/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/context.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/egl_context.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/glfw.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/glfw.rc.in -------------------------------------------------------------------------------- /3rdparty/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/glx_context.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/init.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/input.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/internal.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/linux_joystick.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/linux_joystick.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/mappings.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/mappings.h.in -------------------------------------------------------------------------------- /3rdparty/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/monitor.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /3rdparty/glfw/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/null_init.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/null_joystick.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/null_joystick.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/null_monitor.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/null_platform.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/null_window.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/osmesa_context.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/platform.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/platform.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/posix_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/posix_module.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/posix_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/posix_poll.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/posix_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/posix_poll.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/posix_thread.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/posix_thread.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/posix_time.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/posix_time.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/vulkan.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/win32_init.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/win32_joystick.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/win32_joystick.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/win32_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/win32_module.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/win32_platform.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/win32_thread.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/win32_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/win32_thread.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/win32_time.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/win32_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/win32_time.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/win32_window.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/window.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/wl_init.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/wl_window.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/x11_init.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /3rdparty/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/x11_window.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /3rdparty/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /3rdparty/glfw/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/glfw/tests/allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/allocator.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/clipboard.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/cursor.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/empty.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/events.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/gamma.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/glfwinfo.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/icon.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/iconify.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/inputlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/inputlag.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/joysticks.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/monitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/monitors.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/msaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/msaa.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/reopen.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/tearing.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/threads.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/timeout.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/title.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/triangle-vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/triangle-vulkan.c -------------------------------------------------------------------------------- /3rdparty/glfw/tests/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/glfw/tests/window.c -------------------------------------------------------------------------------- /3rdparty/sqlite3/include/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/sqlite3/include/sqlite3.h -------------------------------------------------------------------------------- /3rdparty/sqlite3/include/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/sqlite3/include/sqlite3ext.h -------------------------------------------------------------------------------- /3rdparty/sqlite3/sqlite3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/sqlite3/sqlite3.hpp -------------------------------------------------------------------------------- /3rdparty/sqlite3/src/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/sqlite3/src/shell.c -------------------------------------------------------------------------------- /3rdparty/sqlite3/src/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/3rdparty/sqlite3/src/sqlite3.c -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | LogToGraph_Windows_Debug_x64_v0.3.3628 2 | -------------------------------------------------------------------------------- /apis/ILayoutPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/apis/ILayoutPane.h -------------------------------------------------------------------------------- /apis/LtgPluginApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/apis/LtgPluginApi.h -------------------------------------------------------------------------------- /cmake/3rdparty.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/cmake/3rdparty.cmake -------------------------------------------------------------------------------- /cmake/Maintained/ezlibs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/cmake/Maintained/ezlibs.cmake -------------------------------------------------------------------------------- /cmake/Maintained/iagp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/cmake/Maintained/iagp.cmake -------------------------------------------------------------------------------- /cmake/Maintained/imguipack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/cmake/Maintained/imguipack.cmake -------------------------------------------------------------------------------- /cmake/Maintained/maintained.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/cmake/Maintained/maintained.cmake -------------------------------------------------------------------------------- /cmake/NotMaintained/glad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/cmake/NotMaintained/glad.cmake -------------------------------------------------------------------------------- /cmake/NotMaintained/glfw.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/cmake/NotMaintained/glfw.cmake -------------------------------------------------------------------------------- /cmake/NotMaintained/notmaintained.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/cmake/NotMaintained/notmaintained.cmake -------------------------------------------------------------------------------- /cmake/NotMaintained/sqlite3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/cmake/NotMaintained/sqlite3.cmake -------------------------------------------------------------------------------- /doc/ImGuiFontStudio.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/ImGuiFontStudio.exe -------------------------------------------------------------------------------- /doc/SQLiteSpy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/SQLiteSpy.exe -------------------------------------------------------------------------------- /doc/gifs/Open_lua_and_log_file_then_analyse_them.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/gifs/Open_lua_and_log_file_then_analyse_them.gif -------------------------------------------------------------------------------- /doc/gifs/display_a_list_of_signal_at_the_mouse_hovered_frametime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/gifs/display_a_list_of_signal_at_the_mouse_hovered_frametime.gif -------------------------------------------------------------------------------- /doc/gifs/display_a_minimal_view_of_all_signals_graph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/gifs/display_a_minimal_view_of_all_signals_graph.gif -------------------------------------------------------------------------------- /doc/gifs/graph_navigation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/gifs/graph_navigation.gif -------------------------------------------------------------------------------- /doc/gifs/group_some_signals_on_the_same_graph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/gifs/group_some_signals_on_the_same_graph.gif -------------------------------------------------------------------------------- /doc/gifs/measure_delta_time_between_two_time_marks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/gifs/measure_delta_time_between_two_time_marks.gif -------------------------------------------------------------------------------- /doc/gifs/save_project.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/gifs/save_project.gif -------------------------------------------------------------------------------- /doc/gifs/show_graph_of_some_signals.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/gifs/show_graph_of_some_signals.gif -------------------------------------------------------------------------------- /doc/log_parsing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/log_parsing.lua -------------------------------------------------------------------------------- /doc/log_sample.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/log_sample.log -------------------------------------------------------------------------------- /doc/samples.ltg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/samples.ltg -------------------------------------------------------------------------------- /doc/wxLuaEdit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/doc/wxLuaEdit.exe -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/main.cpp -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/.gitattributes: -------------------------------------------------------------------------------- 1 | *.bat binary 2 | -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/.gitignore -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/COPYRIGHT -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/Makefile -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/README -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/cmake/modules/DetectFpuAbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/cmake/modules/DetectFpuAbi.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/bluequad-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/bluequad-print.css -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/bluequad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/bluequad.css -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/contact.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/ext_buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/ext_buffer.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/ext_c_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/ext_c_api.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/ext_ffi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/ext_ffi.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/ext_ffi_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/ext_ffi_api.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/ext_ffi_semantics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/ext_ffi_semantics.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/ext_ffi_tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/ext_ffi_tutorial.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/ext_jit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/ext_jit.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/ext_profiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/ext_profiler.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/extensions.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/faq.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/img/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/img/contact.png -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/install.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/luajit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/luajit.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/running.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/running.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/doc/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/doc/status.html -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_arm.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_arm.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_arm64.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_arm64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_arm64.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_mips.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_mips.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_mips64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_mips64.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_ppc.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_ppc.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_proto.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_x64.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_x86.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_x86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dasm_x86.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/dynasm/dynasm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/dynasm/dynasm.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/etc/luajit.1 -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/etc/luajit.pc -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/.gitignore -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/Makefile -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/Makefile.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/Makefile.dep -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/host/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/host/README -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/host/buildvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/host/buildvm.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/host/buildvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/host/buildvm.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/host/buildvm_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/host/buildvm_asm.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/host/buildvm_fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/host/buildvm_fold.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/host/buildvm_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/host/buildvm_lib.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/host/buildvm_libbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/host/buildvm_libbc.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/host/buildvm_peobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/host/buildvm_peobj.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/host/genlibbc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/host/genlibbc.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/host/genminilua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/host/genminilua.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/host/minilua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/host/minilua.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/.gitignore: -------------------------------------------------------------------------------- 1 | vmdef.lua 2 | -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/bc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/bc.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/bcsave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/bcsave.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_arm.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_arm64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_arm64.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_arm64be.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_arm64be.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mips.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mips64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mips64.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mips64el.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mips64el.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mips64r6.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mips64r6.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mips64r6el.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mips64r6el.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mipsel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_mipsel.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_ppc.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_x64.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dis_x86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dis_x86.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/dump.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/p.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/p.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/v.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/jit/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/jit/zone.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lauxlib.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_aux.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_base.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_bit.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_buffer.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_debug.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_ffi.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_init.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_io.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_jit.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_math.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_os.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_package.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_package.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_string.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lib_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lib_table.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_alloc.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_alloc.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_api.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_arch.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_asm.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_asm.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_asm_arm.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_asm_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_asm_arm64.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_asm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_asm_mips.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_asm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_asm_ppc.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_asm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_asm_x86.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_assert.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_bc.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_bc.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_bcdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_bcdump.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_bcread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_bcread.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_bcwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_bcwrite.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_buf.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_buf.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_carith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_carith.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_carith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_carith.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ccall.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ccall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ccall.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ccallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ccallback.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ccallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ccallback.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_cconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_cconv.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_cconv.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_cdata.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_cdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_cdata.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_char.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_char.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_clib.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_clib.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_cparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_cparse.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_cparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_cparse.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_crecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_crecord.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_crecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_crecord.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ctype.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ctype.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_debug.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_debug.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_def.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_dispatch.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_dispatch.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_emit_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_emit_arm.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_emit_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_emit_arm64.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_emit_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_emit_mips.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_emit_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_emit_ppc.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_emit_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_emit_x86.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_err.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_err.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_errmsg.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ff.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ffrecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ffrecord.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ffrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ffrecord.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_fopen.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_fopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_fopen.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_frame.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_func.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_func.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_gc.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_gc.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_gdbjit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_gdbjit.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_gdbjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_gdbjit.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ir.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ir.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_ircall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_ircall.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_iropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_iropt.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_jit.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_lex.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_lex.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_lib.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_lib.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_load.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_mcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_mcode.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_mcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_mcode.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_meta.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_meta.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_obj.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_obj.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_opt_dce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_opt_dce.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_opt_fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_opt_fold.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_opt_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_opt_loop.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_opt_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_opt_mem.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_opt_narrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_opt_narrow.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_opt_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_opt_sink.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_opt_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_opt_split.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_parse.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_parse.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_prng.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_prng.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_profile.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_profile.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_record.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_record.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_serialize.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_serialize.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_snap.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_snap.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_state.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_state.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_str.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_str.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_strfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_strfmt.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_strfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_strfmt.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_strfmt_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_strfmt_num.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_strscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_strscan.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_strscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_strscan.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_tab.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_tab.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_target.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_target_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_target_arm.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_target_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_target_arm64.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_target_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_target_mips.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_target_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_target_ppc.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_target_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_target_x86.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_trace.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_trace.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_traceerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_traceerr.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_udata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_udata.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_udata.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_vm.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_vmevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_vmevent.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_vmevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_vmevent.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lj_vmmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lj_vmmath.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/ljamalg.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lua.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lua.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/luaconf.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/luajit.c -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/luajit.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/lualib.h -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/msvcbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/msvcbuild.bat -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/msvcbuild_utf8open.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/msvcbuild_utf8open.bat -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/nxbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/nxbuild.bat -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/ps4build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/ps4build.bat -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/ps5build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/ps5build.bat -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/psvitabuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/psvitabuild.bat -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/vm_arm.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/vm_arm.dasc -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/vm_arm64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/vm_arm64.dasc -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/vm_mips.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/vm_mips.dasc -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/vm_mips64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/vm_mips64.dasc -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/vm_ppc.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/vm_ppc.dasc -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/vm_x64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/vm_x64.dasc -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/vm_x86.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/vm_x86.dasc -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/xb1build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/xb1build.bat -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/luajit/src/xedkbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/luajit/src/xedkbuild.bat -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/.clang-format -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/.dockerignore -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/.github/workflows/macos.yml -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/.github/workflows/windows.yml -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/.gitignore -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/.style.yapf -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/CONTRIBUTING.md -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/CONTRIBUTORS.md -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/Dockerfile -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/LICENSE.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/README.md -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/VERSION: -------------------------------------------------------------------------------- 1 | tag v3.3.1 -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/cmake/Includes/Project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/cmake/Includes/Project.cmake -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/cmake/Modules/Common/Core.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/cmake/Modules/Common/Core.cmake -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/cmake/Modules/FindVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/cmake/Modules/FindVersion.cmake -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/cmake/Packages/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/cmake/Packages/FindSphinx.cmake -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/cmake/sol2-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/cmake/sol2-config.cmake.in -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/.clang-format -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/Doxyfile.in -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/Makefile -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/make.bat -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/requirements.txt: -------------------------------------------------------------------------------- 1 | breathe 2 | cmake 3 | ninja 4 | -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/source/api/tie.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/source/api/tie.rst -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/source/api/var.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/source/api/var.rst -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/source/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/source/build.rst -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/source/codecvt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/source/codecvt.rst -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/source/conf.py -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/source/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/source/errors.rst -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/source/index.rst -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/source/origin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/source/origin.rst -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/source/rtti.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/source/rtti.rst -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/source/safety.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/source/safety.rst -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/documentation/source/traits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/documentation/source/traits.rst -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/.clang-format -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/any_return.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/any_return.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/as_returns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/as_returns.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/basic.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/c_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/c_array.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/c_call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/c_call.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/config.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/config.lua -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/containers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/containers.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/coroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/coroutine.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/dump.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/environments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/environments.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/functions.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/lua_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/lua_stream.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/lua_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/lua_value.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/overloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/overloading.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/pairs.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/property.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/protect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/protect.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/read_only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/read_only.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/require.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/require.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/shared_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/shared_ptr.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/singleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/singleton.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/table_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/table_proxy.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/tables.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/this_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/this_state.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/tie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/tie.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/unique_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/unique_ptr.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/usertype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/usertype.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/usertype_var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/usertype_var.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/examples/source/variables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/examples/source/variables.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/as_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/as_args.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/as_returns.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/as_returns.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/assert.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/base_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/base_traits.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/bind_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/bind_traits.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/bytecode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/bytecode.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/call.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/compatibility.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/config.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/coroutine.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/debug.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/demangle.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/deprecate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/deprecate.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/dump_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/dump_handler.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/ebco.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/ebco.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/environment.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/epilogue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/epilogue.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/error.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/error_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/error_handler.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/forward.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/forward_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/forward_detail.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/function.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/function_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/function_result.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/function_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/function_types.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/in_place.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/in_place.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/inheritance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/inheritance.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/load_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/load_result.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/lua_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/lua_table.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/lua_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/lua_value.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/make_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/make_reference.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/metatable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/metatable.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/object.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/object_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/object_base.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/optional.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/overload.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/pairs_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/pairs_iterator.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/pointer_like.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/pointer_like.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/policies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/policies.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/prologue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/prologue.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/property.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/protect.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/proxy_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/proxy_base.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/raii.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/raii.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/reference.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/resolve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/resolve.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/sol.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_check.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_check_get.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_check_get.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_core.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_field.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_get.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_get.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_guard.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_iterator.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_pop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_pop.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_probe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_probe.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_proxy.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_proxy_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_proxy_base.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_push.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_push.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/stack_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/stack_reference.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/state.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/state_handling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/state_handling.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/state_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/state_view.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/string_view.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/table.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/table_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/table_core.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/table_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/table_iterator.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/table_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/table_proxy.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/thread.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/tie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/tie.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/traits.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/trampoline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/trampoline.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/tuple.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/types.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/unicode.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/unsafe_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/unsafe_function.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/userdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/userdata.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/usertype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/usertype.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/usertype_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/usertype_core.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/usertype_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/usertype_proxy.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/usertype_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/usertype_storage.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/usertype_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/usertype_traits.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/variadic_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/variadic_args.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/variadic_results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/variadic_results.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/version.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/include/sol/wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/include/sol/wrapper.hpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/list_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/list_headers.py -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/meson.build -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/meson_options.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/scripts/build.linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/scripts/build.linux.sh -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/scripts/preparation.linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/scripts/preparation.linux.sh -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/scripts/preparation.osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/scripts/preparation.osx.sh -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/scripts/push.linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/scripts/push.linux.sh -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/scripts/run.linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/scripts/run.linux.sh -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/scripts/run.osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/scripts/run.osx.sh -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/single/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/single/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/single/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/single/single.py -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/sol2.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/sol2.natvis -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/sol2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/sol2.pc.in -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/subprojects/lua.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/subprojects/lua.wrap -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/enum/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/enum/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/enum/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/enum/source/main.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/environment/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/environment/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/environment/source/get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/environment/source/get.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/exceptions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/exceptions/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/exceptions/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/exceptions/source/main.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/call.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/debug.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/ebco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/ebco.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/error.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/main.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/proxy.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/raii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/raii.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/sol.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/stack.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/state.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/state_view.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/table.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/tie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/tie.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/tuple.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/inclusion/source/types.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/numerics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/numerics/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/numerics/source/large.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/numerics/source/large.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/numerics/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/numerics/source/main.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/run_time/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/run_time/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/basic.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/dump.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/gc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/gc.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/main.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/state.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/3rdparty/sol2/tests/run_time/source/tables.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LuaScripting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/README.md -------------------------------------------------------------------------------- /plugins/LuaScripting/cmake/luajit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/cmake/luajit.cmake -------------------------------------------------------------------------------- /plugins/LuaScripting/cmake/sol2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/cmake/sol2.cmake -------------------------------------------------------------------------------- /plugins/LuaScripting/src/LuaScripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/src/LuaScripting.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/src/LuaScripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/src/LuaScripting.h -------------------------------------------------------------------------------- /plugins/LuaScripting/src/headers/LuaScriptingBuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/src/headers/LuaScriptingBuild.h -------------------------------------------------------------------------------- /plugins/LuaScripting/src/modules/LuaDatasModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/src/modules/LuaDatasModel.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/src/modules/LuaDatasModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/src/modules/LuaDatasModel.h -------------------------------------------------------------------------------- /plugins/LuaScripting/src/modules/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/src/modules/Module.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/src/modules/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/src/modules/Module.h -------------------------------------------------------------------------------- /plugins/LuaScripting/src/settings/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/src/settings/Settings.cpp -------------------------------------------------------------------------------- /plugins/LuaScripting/src/settings/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/LuaScripting/src/settings/Settings.h -------------------------------------------------------------------------------- /plugins/PythonScripting/3rdparty/python-cmake-buildsystem/.gitattributes: -------------------------------------------------------------------------------- 1 | *.patch text eol=lf 2 | -------------------------------------------------------------------------------- /plugins/PythonScripting/3rdparty/python-cmake-buildsystem/cmake/config-mingw/errmap.h: -------------------------------------------------------------------------------- 1 | #include "../PC/errmap.h" 2 | -------------------------------------------------------------------------------- /plugins/PythonScripting/3rdparty/python-cmake-buildsystem/cmake/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/PythonScripting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/PythonScripting/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/PythonScripting/README.md: -------------------------------------------------------------------------------- 1 | # Python Scripting 2 | 3 | -------------------------------------------------------------------------------- /plugins/PythonScripting/cmake/python.cmake: -------------------------------------------------------------------------------- 1 | 2 | set(BUILD_STATIC ON CACHE BOOL "" FORCE) 3 | 4 | add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/python-cmake-buildsystem) 5 | -------------------------------------------------------------------------------- /plugins/PythonScripting/src/Headers/PythonScriptingBuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/PythonScripting/src/Headers/PythonScriptingBuild.h -------------------------------------------------------------------------------- /plugins/PythonScripting/src/Modules/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/PythonScripting/src/Modules/Module.cpp -------------------------------------------------------------------------------- /plugins/PythonScripting/src/Modules/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/PythonScripting/src/Modules/Module.h -------------------------------------------------------------------------------- /plugins/PythonScripting/src/PythonScripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/PythonScripting/src/PythonScripting.cpp -------------------------------------------------------------------------------- /plugins/PythonScripting/src/PythonScripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/PythonScripting/src/PythonScripting.h -------------------------------------------------------------------------------- /plugins/PythonScripting/src/Settings/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/PythonScripting/src/Settings/Settings.cpp -------------------------------------------------------------------------------- /plugins/PythonScripting/src/Settings/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/plugins/PythonScripting/src/Settings/Settings.h -------------------------------------------------------------------------------- /res/appicon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/res/appicon.bmp -------------------------------------------------------------------------------- /res/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/res/appicon.ico -------------------------------------------------------------------------------- /res/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/res/appicon.png -------------------------------------------------------------------------------- /res/appicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/res/appicon.rc -------------------------------------------------------------------------------- /src/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/App.cpp -------------------------------------------------------------------------------- /src/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/App.h -------------------------------------------------------------------------------- /src/backend/MainBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/backend/MainBackend.cpp -------------------------------------------------------------------------------- /src/backend/MainBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/backend/MainBackend.h -------------------------------------------------------------------------------- /src/frontend/Components/CodeEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/frontend/Components/CodeEditor.cpp -------------------------------------------------------------------------------- /src/frontend/Components/CodeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/frontend/Components/CodeEditor.h -------------------------------------------------------------------------------- /src/frontend/ImGuiThemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/frontend/ImGuiThemes.cpp -------------------------------------------------------------------------------- /src/frontend/MainFrontend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/frontend/MainFrontend.cpp -------------------------------------------------------------------------------- /src/frontend/MainFrontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/frontend/MainFrontend.h -------------------------------------------------------------------------------- /src/headers/CustomImGuiConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/headers/CustomImGuiConfig.h -------------------------------------------------------------------------------- /src/headers/CustomImGuiFileDialogConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/headers/CustomImGuiFileDialogConfig.h -------------------------------------------------------------------------------- /src/headers/CustomImGuiThemeHelperConfigHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/headers/CustomImGuiThemeHelperConfigHeader.h -------------------------------------------------------------------------------- /src/headers/CustomImWidgetsConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/headers/CustomImWidgetsConfig.h -------------------------------------------------------------------------------- /src/headers/CustomInAppGpuProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/headers/CustomInAppGpuProfiler.h -------------------------------------------------------------------------------- /src/headers/CustomLtgBackendConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/headers/CustomLtgBackendConfig.h -------------------------------------------------------------------------------- /src/headers/DatasDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/headers/DatasDef.h -------------------------------------------------------------------------------- /src/headers/IconsMaterialDesign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/headers/IconsMaterialDesign.h -------------------------------------------------------------------------------- /src/headers/LogToGraphBuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/headers/LogToGraphBuild.h -------------------------------------------------------------------------------- /src/models/database/DataBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/database/DataBase.cpp -------------------------------------------------------------------------------- /src/models/database/DataBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/database/DataBase.h -------------------------------------------------------------------------------- /src/models/graphs/GraphAnnotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/graphs/GraphAnnotation.cpp -------------------------------------------------------------------------------- /src/models/graphs/GraphAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/graphs/GraphAnnotation.h -------------------------------------------------------------------------------- /src/models/graphs/GraphAnnotationModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/graphs/GraphAnnotationModel.cpp -------------------------------------------------------------------------------- /src/models/graphs/GraphAnnotationModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/graphs/GraphAnnotationModel.h -------------------------------------------------------------------------------- /src/models/graphs/GraphGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/graphs/GraphGroup.cpp -------------------------------------------------------------------------------- /src/models/graphs/GraphGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/graphs/GraphGroup.h -------------------------------------------------------------------------------- /src/models/graphs/GraphView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/graphs/GraphView.cpp -------------------------------------------------------------------------------- /src/models/graphs/GraphView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/graphs/GraphView.h -------------------------------------------------------------------------------- /src/models/log/LogEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/LogEngine.cpp -------------------------------------------------------------------------------- /src/models/log/LogEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/LogEngine.h -------------------------------------------------------------------------------- /src/models/log/SignalSerie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/SignalSerie.cpp -------------------------------------------------------------------------------- /src/models/log/SignalSerie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/SignalSerie.h -------------------------------------------------------------------------------- /src/models/log/SignalTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/SignalTag.cpp -------------------------------------------------------------------------------- /src/models/log/SignalTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/SignalTag.h -------------------------------------------------------------------------------- /src/models/log/SignalTick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/SignalTick.cpp -------------------------------------------------------------------------------- /src/models/log/SignalTick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/SignalTick.h -------------------------------------------------------------------------------- /src/models/log/SignalTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/SignalTree.cpp -------------------------------------------------------------------------------- /src/models/log/SignalTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/SignalTree.h -------------------------------------------------------------------------------- /src/models/log/SourceFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/SourceFile.cpp -------------------------------------------------------------------------------- /src/models/log/SourceFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/log/SourceFile.h -------------------------------------------------------------------------------- /src/models/script/ScriptingEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/script/ScriptingEngine.cpp -------------------------------------------------------------------------------- /src/models/script/ScriptingEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/models/script/ScriptingEngine.h -------------------------------------------------------------------------------- /src/panes/AnnotationPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/AnnotationPane.cpp -------------------------------------------------------------------------------- /src/panes/AnnotationPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/AnnotationPane.h -------------------------------------------------------------------------------- /src/panes/CodePane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/CodePane.cpp -------------------------------------------------------------------------------- /src/panes/CodePane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/CodePane.h -------------------------------------------------------------------------------- /src/panes/ConsolePane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/ConsolePane.cpp -------------------------------------------------------------------------------- /src/panes/ConsolePane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/ConsolePane.h -------------------------------------------------------------------------------- /src/panes/GraphGroupPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/GraphGroupPane.cpp -------------------------------------------------------------------------------- /src/panes/GraphGroupPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/GraphGroupPane.h -------------------------------------------------------------------------------- /src/panes/GraphListPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/GraphListPane.cpp -------------------------------------------------------------------------------- /src/panes/GraphListPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/GraphListPane.h -------------------------------------------------------------------------------- /src/panes/GraphPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/GraphPane.cpp -------------------------------------------------------------------------------- /src/panes/GraphPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/GraphPane.h -------------------------------------------------------------------------------- /src/panes/LogPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/LogPane.cpp -------------------------------------------------------------------------------- /src/panes/LogPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/LogPane.h -------------------------------------------------------------------------------- /src/panes/LogPaneSecondView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/LogPaneSecondView.cpp -------------------------------------------------------------------------------- /src/panes/LogPaneSecondView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/LogPaneSecondView.h -------------------------------------------------------------------------------- /src/panes/ProfilerPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/ProfilerPane.cpp -------------------------------------------------------------------------------- /src/panes/ProfilerPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/ProfilerPane.h -------------------------------------------------------------------------------- /src/panes/SignalsHoveredDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/SignalsHoveredDiff.cpp -------------------------------------------------------------------------------- /src/panes/SignalsHoveredDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/SignalsHoveredDiff.h -------------------------------------------------------------------------------- /src/panes/SignalsHoveredList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/SignalsHoveredList.cpp -------------------------------------------------------------------------------- /src/panes/SignalsHoveredList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/SignalsHoveredList.h -------------------------------------------------------------------------------- /src/panes/SignalsHoveredMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/SignalsHoveredMap.cpp -------------------------------------------------------------------------------- /src/panes/SignalsHoveredMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/SignalsHoveredMap.h -------------------------------------------------------------------------------- /src/panes/SignalsPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/SignalsPreview.cpp -------------------------------------------------------------------------------- /src/panes/SignalsPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/SignalsPreview.h -------------------------------------------------------------------------------- /src/panes/ToolPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/ToolPane.cpp -------------------------------------------------------------------------------- /src/panes/ToolPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/panes/ToolPane.h -------------------------------------------------------------------------------- /src/project/ProjectFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/project/ProjectFile.cpp -------------------------------------------------------------------------------- /src/project/ProjectFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/project/ProjectFile.h -------------------------------------------------------------------------------- /src/res/Roboto_Medium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/res/Roboto_Medium.cpp -------------------------------------------------------------------------------- /src/res/Roboto_Medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/res/Roboto_Medium.h -------------------------------------------------------------------------------- /src/res/Roboto_Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/res/Roboto_Medium.png -------------------------------------------------------------------------------- /src/res/fontIcons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/res/fontIcons.cpp -------------------------------------------------------------------------------- /src/res/fontIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/res/fontIcons.h -------------------------------------------------------------------------------- /src/res/fontIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/res/fontIcons.png -------------------------------------------------------------------------------- /src/res/fonts/FONT.ifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/res/fonts/FONT.ifs -------------------------------------------------------------------------------- /src/res/fonts/MaterialDesignIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/res/fonts/MaterialDesignIcons.ttf -------------------------------------------------------------------------------- /src/systems/FrameActionSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/systems/FrameActionSystem.cpp -------------------------------------------------------------------------------- /src/systems/FrameActionSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/systems/FrameActionSystem.h -------------------------------------------------------------------------------- /src/systems/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/systems/PluginManager.cpp -------------------------------------------------------------------------------- /src/systems/PluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/systems/PluginManager.h -------------------------------------------------------------------------------- /src/systems/SettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/systems/SettingsDialog.cpp -------------------------------------------------------------------------------- /src/systems/SettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/systems/SettingsDialog.h -------------------------------------------------------------------------------- /src/systems/TranslationHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/systems/TranslationHelper.cpp -------------------------------------------------------------------------------- /src/systems/TranslationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/src/systems/TranslationHelper.h -------------------------------------------------------------------------------- /submodules.init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/LogToGraph/HEAD/submodules.init.txt --------------------------------------------------------------------------------