├── .clang-format ├── .gitignore ├── .gitmodules ├── .travis.yml ├── 3rdparty ├── basisu │ ├── CMakeLists.txt │ ├── basisu.h │ ├── basisu_file_headers.h │ ├── basisu_global_selector_cb.h │ ├── basisu_global_selector_palette.h │ ├── basisu_transcoder.cpp │ ├── basisu_transcoder.h │ ├── basisu_transcoder_internal.h │ ├── basisu_transcoder_tables_astc.inc │ ├── basisu_transcoder_tables_astc_0_255.inc │ ├── basisu_transcoder_tables_atc_55.inc │ ├── basisu_transcoder_tables_atc_56.inc │ ├── basisu_transcoder_tables_bc7_m5_alpha.inc │ ├── basisu_transcoder_tables_bc7_m5_color.inc │ ├── basisu_transcoder_tables_bc7_m6.inc │ ├── basisu_transcoder_tables_dxt1_5.inc │ ├── basisu_transcoder_tables_dxt1_6.inc │ ├── basisu_transcoder_tables_pvrtc2_45.inc │ └── basisu_transcoder_tables_pvrtc2_alpha_33.inc ├── c89atomic │ ├── README.md │ ├── c89atomic.h │ └── x64 │ │ └── c89atomic.x64.win64.nasm ├── cgltf │ ├── LICENSE │ ├── README.md │ ├── cgltf.h │ └── cgltf_write.h ├── cimgui │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── cimgui.cpp │ ├── cimgui.h │ └── imgui │ │ ├── LICENSE.txt │ │ ├── docs │ │ ├── CHANGELOG.txt │ │ ├── README.md │ │ └── TODO.txt │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h ├── cr │ ├── LICENSE │ ├── README.md │ └── cr.h ├── cute_headers │ └── cute_c2.h ├── dr_libs │ ├── README.md │ └── dr_wav.h ├── find_vstudio │ └── find_vstudio.h ├── flextGL │ ├── CMakeLists.txt │ ├── KHR │ │ └── khrplatform.h │ ├── flextGL.c │ └── flextGL.h ├── fontstash │ ├── fontstash.h │ └── stb_truetype.h ├── gainput │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ └── lib │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ └── gainput │ │ │ ├── GainputAllocator.h │ │ │ ├── GainputContainers.h │ │ │ ├── GainputDebugRenderer.h │ │ │ ├── GainputHelpers.h │ │ │ ├── GainputInputDeltaState.h │ │ │ ├── GainputInputDevice.h │ │ │ ├── GainputInputDeviceBuiltIn.h │ │ │ ├── GainputInputDeviceKeyboard.h │ │ │ ├── GainputInputDeviceMouse.h │ │ │ ├── GainputInputDevicePad.h │ │ │ ├── GainputInputDeviceTouch.h │ │ │ ├── GainputInputListener.h │ │ │ ├── GainputInputManager.h │ │ │ ├── GainputInputMap.h │ │ │ ├── GainputInputState.h │ │ │ ├── GainputIos.h │ │ │ ├── GainputLog.h │ │ │ ├── GainputMapFilters.h │ │ │ ├── gainput.h │ │ │ ├── gestures │ │ │ ├── GainputButtonStickGesture.h │ │ │ ├── GainputDoubleClickGesture.h │ │ │ ├── GainputGestures.h │ │ │ ├── GainputHoldGesture.h │ │ │ ├── GainputPinchGesture.h │ │ │ ├── GainputRotateGesture.h │ │ │ ├── GainputSimultaneouslyDownGesture.h │ │ │ └── GainputTapGesture.h │ │ │ └── recorder │ │ │ ├── GainputInputPlayer.h │ │ │ ├── GainputInputRecorder.h │ │ │ └── GainputInputRecording.h │ │ └── source │ │ └── gainput │ │ ├── GainputAllocator.cpp │ │ ├── GainputHelpersEvdev.h │ │ ├── GainputInputDeltaState.cpp │ │ ├── GainputInputDevice.cpp │ │ ├── GainputInputManager.cpp │ │ ├── GainputInputMap.cpp │ │ ├── GainputInputState.cpp │ │ ├── GainputIos.mm │ │ ├── GainputMac.mm │ │ ├── GainputMapFilters.cpp │ │ ├── GainputWindows.h │ │ ├── builtin │ │ ├── GainputInputDeviceBuiltIn.cpp │ │ ├── GainputInputDeviceBuiltInAndroid.h │ │ ├── GainputInputDeviceBuiltInImpl.h │ │ ├── GainputInputDeviceBuiltInIos.h │ │ ├── GainputInputDeviceBuiltInIos.mm │ │ └── GainputInputDeviceBuiltInNull.h │ │ ├── dev │ │ ├── GainputDev.cpp │ │ ├── GainputDev.h │ │ ├── GainputDevProtocol.h │ │ ├── GainputMemoryStream.cpp │ │ ├── GainputMemoryStream.h │ │ ├── GainputNetAddress.cpp │ │ ├── GainputNetAddress.h │ │ ├── GainputNetConnection.cpp │ │ ├── GainputNetConnection.h │ │ ├── GainputNetListener.cpp │ │ ├── GainputNetListener.h │ │ └── GainputStream.h │ │ ├── gainput.cpp │ │ ├── gestures │ │ ├── GainputButtonStickGesture.cpp │ │ ├── GainputDoubleClickGesture.cpp │ │ ├── GainputHoldGesture.cpp │ │ ├── GainputPinchGesture.cpp │ │ ├── GainputRotateGesture.cpp │ │ ├── GainputSimultaneouslyDownGesture.cpp │ │ └── GainputTapGesture.cpp │ │ ├── keyboard │ │ ├── GainputInputDeviceKeyboard.cpp │ │ ├── GainputInputDeviceKeyboardAndroid.h │ │ ├── GainputInputDeviceKeyboardEvdev.h │ │ ├── GainputInputDeviceKeyboardImpl.h │ │ ├── GainputInputDeviceKeyboardLinux.h │ │ ├── GainputInputDeviceKeyboardMac.cpp │ │ ├── GainputInputDeviceKeyboardMac.h │ │ ├── GainputInputDeviceKeyboardNull.h │ │ ├── GainputInputDeviceKeyboardWin.h │ │ ├── GainputInputDeviceKeyboardWinRaw.h │ │ └── GainputKeyboardKeyNames.h │ │ ├── mouse │ │ ├── GainputInputDeviceMouse.cpp │ │ ├── GainputInputDeviceMouseEvdev.h │ │ ├── GainputInputDeviceMouseImpl.h │ │ ├── GainputInputDeviceMouseLinux.h │ │ ├── GainputInputDeviceMouseMac.h │ │ ├── GainputInputDeviceMouseMac.mm │ │ ├── GainputInputDeviceMouseNull.h │ │ ├── GainputInputDeviceMouseWin.h │ │ ├── GainputInputDeviceMouseWinRaw.h │ │ └── GainputMouseInfo.h │ │ ├── pad │ │ ├── GainputInputDevicePad.cpp │ │ ├── GainputInputDevicePadAndroid.h │ │ ├── GainputInputDevicePadImpl.h │ │ ├── GainputInputDevicePadIos.h │ │ ├── GainputInputDevicePadIos.mm │ │ ├── GainputInputDevicePadLinux.h │ │ ├── GainputInputDevicePadMac.cpp │ │ ├── GainputInputDevicePadMac.h │ │ ├── GainputInputDevicePadNull.h │ │ └── GainputInputDevicePadWin.h │ │ ├── recorder │ │ ├── GainputInputPlayer.cpp │ │ ├── GainputInputRecorder.cpp │ │ └── GainputInputRecording.cpp │ │ └── touch │ │ ├── GainputInputDeviceTouch.cpp │ │ ├── GainputInputDeviceTouchAndroid.h │ │ ├── GainputInputDeviceTouchImpl.h │ │ ├── GainputInputDeviceTouchIos.h │ │ ├── GainputInputDeviceTouchNull.h │ │ └── GainputTouchInfo.h ├── imguizmo │ ├── CMakeLists.txt │ ├── ImGuizmo.cpp │ ├── ImGuizmo.h │ ├── LICENSE │ └── README.md ├── mattias │ └── http.h ├── remotery │ ├── CMakeLists.txt │ ├── LICENSE │ ├── lib │ │ ├── Remotery.c │ │ ├── Remotery.h │ │ └── RemoteryMetal.mm │ ├── readme.md │ └── vis │ │ ├── Code │ │ ├── Console.js │ │ ├── DataViewReader.js │ │ ├── PixelTimeRange.js │ │ ├── Remotery.js │ │ ├── SampleWindow.js │ │ ├── ThreadFrame.js │ │ ├── TimelineRow.js │ │ ├── TimelineWindow.js │ │ ├── TitleWindow.js │ │ └── WebSocketConnection.js │ │ ├── Styles │ │ └── Remotery.css │ │ ├── extern │ │ └── BrowserLib │ │ │ ├── Core │ │ │ └── Code │ │ │ │ ├── Animation.js │ │ │ │ ├── Bind.js │ │ │ │ ├── Convert.js │ │ │ │ ├── Core.js │ │ │ │ ├── DOM.js │ │ │ │ ├── Keyboard.js │ │ │ │ ├── LocalStore.js │ │ │ │ ├── Mouse.js │ │ │ │ └── MurmurHash3.js │ │ │ └── WindowManager │ │ │ ├── Code │ │ │ ├── Button.js │ │ │ ├── ComboBox.js │ │ │ ├── Container.js │ │ │ ├── EditBox.js │ │ │ ├── Grid.js │ │ │ ├── Label.js │ │ │ ├── Treeview.js │ │ │ ├── TreeviewItem.js │ │ │ ├── Window.js │ │ │ └── WindowManager.js │ │ │ └── Styles │ │ │ └── WindowManager.css │ │ ├── index.html │ │ └── indexTWO.html ├── sokol │ ├── LICENSE │ ├── README.md │ ├── sokol_app.h │ ├── sokol_audio.h │ ├── sokol_gfx.h │ └── util │ │ └── sokol_gfx_imgui.h ├── sort │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS.md │ ├── LICENSE.md │ ├── README.md │ └── sort.h └── stb │ ├── README.md │ ├── stb_image.h │ ├── stb_image_resize.h │ ├── stb_image_write.h │ └── stb_vorbis.h ├── CMakeLists.txt ├── LICENSE ├── README.md ├── VERSION ├── cmake ├── AndroidNdkModules.cmake ├── bundle.cmake ├── glslcc.cmake ├── ios.toolchain.cmake ├── ispc.cmake └── rpi.cmake ├── docs ├── css │ ├── base-min.css │ ├── grids-core-min.css │ ├── grids-min.css │ ├── normalize-legacy.css │ ├── normalize.css │ └── styles.css ├── guide │ └── basics │ │ ├── index.md.html │ │ ├── log-console-window.png │ │ ├── rizz-basics-asset-design.png │ │ ├── rizz-basics-build-chart.png │ │ ├── rizz-basics-bundle-model.png │ │ ├── rizz-basics-draw-mt.png │ │ ├── rizz-basics-host-model.png │ │ ├── rizz-basics-plugins.png │ │ ├── rizz-basics-stages-example.png │ │ └── rizz-basics-systems.png └── js │ └── markdeep.min.js ├── examples ├── 01-hello │ └── hello.c ├── 02-quad │ ├── quad.c │ ├── quad.frag │ └── quad.vert ├── 03-drawsprite │ ├── drawsprite.c │ ├── drawsprite.frag │ └── drawsprite.vert ├── 04-animsprite │ └── animsprite.c ├── 05-playsound │ └── playsound.c ├── 06-sdf │ ├── sdf.c │ ├── sdf.frag │ └── sdf.vert ├── 07-nbody │ ├── nbody.c │ ├── nbody.comp │ ├── nbody.frag │ └── nbody.vert ├── 08-draw3d │ ├── cube_multipart.blend │ ├── draw3d.c │ ├── draw3d.frag │ ├── draw3d.vert │ ├── monkey_nodes.blend │ └── torus.blend ├── 09-pathfind │ ├── agent.blend │ ├── cube.blend │ └── pathfind.c ├── 10-collideboxes │ └── collideboxes.c ├── 11-pathspline │ └── pathspline.c ├── 12-boids │ └── boids.c ├── README.md ├── assets │ ├── fonts │ │ └── sponge_bob.ttf │ ├── models │ │ ├── agent.glb │ │ ├── cube.glb │ │ ├── cube_multipart.glb │ │ ├── monkey_nodes.glb │ │ ├── test.gltf │ │ └── torus.glb │ ├── shaders │ │ ├── gles2 │ │ │ └── drawsprite_wire.sgs │ │ ├── gles3 │ │ │ └── drawsprite_wire.sgs │ │ ├── glsl │ │ │ └── drawsprite_wire.sgs │ │ ├── hlsl │ │ │ └── drawsprite_wire.sgs │ │ └── msl │ │ │ └── drawsprite_wire.sgs │ ├── sounds │ │ ├── fish_combo_1.wav │ │ ├── fish_combo_2.wav │ │ ├── fish_combo_3.wav │ │ ├── fish_combo_4.wav │ │ ├── fish_combo_5.wav │ │ ├── fish_combo_6.wav │ │ ├── fish_combo_7.wav │ │ └── fish_combo_8.wav │ └── textures │ │ ├── boy.json │ │ ├── boy.png │ │ ├── handicraft.json │ │ ├── handicraft.png │ │ ├── logo.basis │ │ └── particle.dds ├── common.h └── screenshots │ ├── 02-quad.png │ ├── 03-drawsprite.png │ ├── 04-animsprite.png │ ├── 05-playsound.png │ ├── 06-sdf.png │ ├── 07-nbody.png │ ├── 08-draw3d.png │ ├── 09-pathfind.png │ ├── 10-collideboxes.png │ ├── 11-pathspline.png │ ├── 12-boids.png │ ├── overview.png │ └── preview.png ├── include ├── cj5 │ ├── LICENSE │ ├── README.md │ └── cj5.h ├── compat │ ├── freebsd │ │ ├── alloca.h │ │ ├── dirent.h │ │ ├── malloc.h │ │ └── signal.h │ ├── ios │ │ └── malloc.h │ ├── mingw │ │ ├── alloca.h │ │ ├── dirent.h │ │ ├── sal.h │ │ ├── salieri.h │ │ ├── specstrings_strict.h │ │ └── specstrings_undef.h │ ├── msvc │ │ ├── alloca.h │ │ ├── dirent.h │ │ ├── inttypes.h │ │ ├── pre1600 │ │ │ └── stdint.h │ │ └── stdbool.h │ └── osx │ │ └── malloc.h ├── dds-ktx │ └── dds-ktx.h ├── dmon │ ├── LICENSE │ ├── README.md │ └── dmon.h ├── rizz │ ├── 2dtools.h │ ├── 3dtools.h │ ├── android.h │ ├── astar.h │ ├── collision.h │ ├── config.h │ ├── imgui-extra.h │ ├── imgui.h │ ├── input.h │ ├── ios.h │ ├── json.h │ ├── rizz.h │ ├── sg-types.h │ ├── sound.h │ └── utility.h ├── stackwalkerc │ ├── LICENSE │ ├── README.md │ └── stackwalkerc.h └── sx │ ├── _simd.h │ ├── allocator.h │ ├── array.h │ ├── atomic.h │ ├── bheap.h │ ├── bitarray.h │ ├── cmdline.h │ ├── config.h │ ├── fiber.h │ ├── handle.h │ ├── hash.h │ ├── ini.h │ ├── io.h │ ├── jobs.h │ ├── lin-alloc.h │ ├── linear-buffer.h │ ├── lockless.h │ ├── macros.h │ ├── math-easing.h │ ├── math-scalar.h │ ├── math-types.h │ ├── math-vec.h │ ├── math.h │ ├── os.h │ ├── platform.h │ ├── pool.h │ ├── ringbuffer.h │ ├── rng.h │ ├── simd.h │ ├── string.h │ ├── sx.h │ ├── threads.h │ ├── timer.h │ └── vmem.h ├── misc ├── backup │ └── bmfont.c ├── imgui.natvis ├── rizz.natvis └── sx.natvis ├── plugin.sh ├── profiler.bat ├── rizz.sublime-project ├── scripts ├── build-tools │ ├── android-res.zip │ ├── android.py │ ├── auto-builder.py │ ├── ios-res.zip │ ├── ios.py │ ├── rpi-buster-asound-2.0.0.zip │ ├── rpi-cross-copy-deps.bat │ └── rpi-readme.txt ├── generators │ ├── fake_libc_include.zip │ └── generate-imgui.py └── win-tools │ └── vscode.bat ├── src ├── 2dtools │ ├── 2dtools-internal.h │ ├── 2dtools.c │ ├── CMakeLists.txt │ ├── README.md │ ├── dummy-font.h │ ├── font.c │ ├── font.frag │ ├── font.vert │ ├── sprite.c │ ├── sprite.frag │ └── sprite.vert ├── 3dtools │ ├── 3dtools-internal.h │ ├── 3dtools.c │ ├── CMakeLists.txt │ ├── README.md │ ├── debug3d.c │ ├── debug3d.frag │ ├── debug3d.vert │ ├── debug3d_wire.frag │ ├── debug3d_wire.vert │ └── model.c ├── astar │ ├── CMakeLists.txt │ ├── README.md │ └── astar.c ├── basisut │ ├── CMakeLists.txt │ ├── README.md │ └── basisut.cpp ├── collision │ ├── CMakeLists.txt │ ├── README.md │ └── collision.c ├── imgui │ ├── CMakeLists.txt │ ├── README.md │ ├── font-roboto.h │ ├── imgui-internal.h │ ├── imgui.c │ ├── imgui.frag │ ├── imgui.vert │ ├── imguizmo-wrapper.c │ └── log-window.c ├── input │ ├── CMakeLists.txt │ ├── README.md │ └── input.cpp ├── rizz │ ├── CMakeLists.txt │ ├── android.c │ ├── app.c │ ├── asset.c │ ├── camera.c │ ├── core.c │ ├── demangle.cpp │ ├── graphics.c │ ├── http.c │ ├── internal.h │ ├── ios.m │ ├── json.c │ ├── memory.c │ ├── plugin.cpp │ ├── profiler.c │ ├── reflect.c │ ├── vfs.c │ └── windows.cpp ├── sound │ ├── CMakeLists.txt │ ├── README.md │ ├── beep.h │ ├── sound.c │ └── stb_vorbis.c ├── sx │ ├── 3rdparty │ │ ├── getopt │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── bam.lua │ │ │ ├── example │ │ │ │ └── example.cpp │ │ │ ├── include │ │ │ │ └── getopt │ │ │ │ │ └── getopt.h │ │ │ ├── src │ │ │ │ └── getopt.c │ │ │ └── test │ │ │ │ ├── getopt_tests.cpp │ │ │ │ └── greatest.h │ │ ├── mattias │ │ │ ├── README.md │ │ │ ├── ini.h │ │ │ ├── ini.md │ │ │ └── strpool.h │ │ ├── sokol │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── sokol_time.h │ │ ├── stb │ │ │ └── stb_printf.h │ │ └── xxhash │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── xxhash.c │ │ │ ├── xxhash.h │ │ │ └── xxhash_spec.md │ ├── CMakeLists.txt │ ├── LICENSE │ ├── asm │ │ ├── jump_arm64_aapcs_elf_gas.S │ │ ├── jump_arm64_aapcs_macho_gas.S │ │ ├── jump_arm_aapcs_elf_gas.S │ │ ├── jump_arm_aapcs_macho_gas.S │ │ ├── jump_arm_aapcs_pe_armasm.asm │ │ ├── jump_combined_all_macho_gas.S │ │ ├── jump_combined_sysv_macho_gas.S │ │ ├── jump_i386_ms_pe_clang_gas.S │ │ ├── jump_i386_ms_pe_gas.S │ │ ├── jump_i386_ms_pe_gas.asm │ │ ├── jump_i386_ms_pe_masm.asm │ │ ├── jump_i386_sysv_elf_gas.S │ │ ├── jump_i386_sysv_macho_gas.S │ │ ├── jump_i386_x86_64_sysv_macho_gas.S │ │ ├── jump_mips32_o32_elf_gas.S │ │ ├── jump_mips64_n64_elf_gas.S │ │ ├── jump_ppc32_ppc64_sysv_macho_gas.S │ │ ├── jump_ppc32_sysv_elf_gas.S │ │ ├── jump_ppc32_sysv_macho_gas.S │ │ ├── jump_ppc32_sysv_xcoff_gas.S │ │ ├── jump_ppc64_sysv_elf_gas.S │ │ ├── jump_ppc64_sysv_macho_gas.S │ │ ├── jump_ppc64_sysv_xcoff_gas.S │ │ ├── jump_riscv64_sysv_elf_gas.S │ │ ├── jump_s390x_sysv_elf_gas.S │ │ ├── jump_x86_64_ms_pe_clang_gas.S │ │ ├── jump_x86_64_ms_pe_gas.S │ │ ├── jump_x86_64_ms_pe_gas.asm │ │ ├── jump_x86_64_ms_pe_masm.asm │ │ ├── jump_x86_64_sysv_elf_gas.S │ │ ├── jump_x86_64_sysv_macho_gas.S │ │ ├── make_arm64_aapcs_elf_gas.S │ │ ├── make_arm64_aapcs_macho_gas.S │ │ ├── make_arm_aapcs_elf_gas.S │ │ ├── make_arm_aapcs_macho_gas.S │ │ ├── make_arm_aapcs_pe_armasm.asm │ │ ├── make_combined_all_macho_gas.S │ │ ├── make_combined_sysv_macho_gas.S │ │ ├── make_i386_ms_pe_clang_gas.S │ │ ├── make_i386_ms_pe_gas.S │ │ ├── make_i386_ms_pe_gas.asm │ │ ├── make_i386_ms_pe_masm.asm │ │ ├── make_i386_sysv_elf_gas.S │ │ ├── make_i386_sysv_macho_gas.S │ │ ├── make_i386_x86_64_sysv_macho_gas.S │ │ ├── make_mips32_o32_elf_gas.S │ │ ├── make_mips64_n64_elf_gas.S │ │ ├── make_ppc32_ppc64_sysv_macho_gas.S │ │ ├── make_ppc32_sysv_elf_gas.S │ │ ├── make_ppc32_sysv_macho_gas.S │ │ ├── make_ppc32_sysv_xcoff_gas.S │ │ ├── make_ppc64_sysv_elf_gas.S │ │ ├── make_ppc64_sysv_macho_gas.S │ │ ├── make_ppc64_sysv_xcoff_gas.S │ │ ├── make_riscv64_sysv_elf_gas.S │ │ ├── make_s390x_sysv_elf_gas.S │ │ ├── make_x86_64_ms_pe_clang_gas.S │ │ ├── make_x86_64_ms_pe_gas.S │ │ ├── make_x86_64_ms_pe_gas.asm │ │ ├── make_x86_64_ms_pe_masm.asm │ │ ├── make_x86_64_sysv_elf_gas.S │ │ ├── make_x86_64_sysv_macho_gas.S │ │ ├── ontop_arm64_aapcs_elf_gas.S │ │ ├── ontop_arm64_aapcs_macho_gas.S │ │ ├── ontop_arm_aapcs_elf_gas.S │ │ ├── ontop_arm_aapcs_macho_gas.S │ │ ├── ontop_arm_aapcs_pe_armasm.asm │ │ ├── ontop_combined_all_macho_gas.S │ │ ├── ontop_combined_sysv_macho_gas.S │ │ ├── ontop_i386_ms_pe_clang_gas.S │ │ ├── ontop_i386_ms_pe_gas.S │ │ ├── ontop_i386_ms_pe_gas.asm │ │ ├── ontop_i386_ms_pe_masm.asm │ │ ├── ontop_i386_sysv_elf_gas.S │ │ ├── ontop_i386_sysv_macho_gas.S │ │ ├── ontop_i386_x86_64_sysv_macho_gas.S │ │ ├── ontop_mips32_o32_elf_gas.S │ │ ├── ontop_mips64_n64_elf_gas.S │ │ ├── ontop_ppc32_ppc64_sysv_macho_gas.S │ │ ├── ontop_ppc32_sysv_elf_gas.S │ │ ├── ontop_ppc32_sysv_macho_gas.S │ │ ├── ontop_ppc32_sysv_xcoff_gas.S │ │ ├── ontop_ppc64_sysv_elf_gas.S │ │ ├── ontop_ppc64_sysv_macho_gas.S │ │ ├── ontop_ppc64_sysv_xcoff_gas.S │ │ ├── ontop_riscv64_sysv_elf_gas.S │ │ ├── ontop_s390x_sysv_elf_gas.S │ │ ├── ontop_x86_64_ms_pe_clang_gas.S │ │ ├── ontop_x86_64_ms_pe_gas.S │ │ ├── ontop_x86_64_ms_pe_gas.asm │ │ ├── ontop_x86_64_ms_pe_masm.asm │ │ ├── ontop_x86_64_sysv_elf_gas.S │ │ ├── ontop_x86_64_sysv_macho_gas.S │ │ └── tail_ppc32_sysv_elf_gas.cpp │ └── src │ │ ├── allocator.c │ │ ├── bheap.c │ │ ├── cmdline.c │ │ ├── fiber.c │ │ ├── handle.c │ │ ├── hash.c │ │ ├── ini.c │ │ ├── io.c │ │ ├── jobs.c │ │ ├── lin-alloc.c │ │ ├── lockless.c │ │ ├── math.c │ │ ├── os.c │ │ ├── ringbuffer.c │ │ ├── rng.c │ │ ├── string.c │ │ ├── sx.c │ │ ├── threads.c │ │ ├── timer.c │ │ └── vmem.c └── utility │ ├── CMakeLists.txt │ ├── README.md │ ├── gradient.c │ ├── graph.c │ ├── noise.c │ ├── spline.c │ └── utility.c ├── stamp-version.sh └── tools ├── darwin ├── atlasc └── glslcc ├── linux ├── atlasc └── glslcc └── windows ├── atlasc.exe └── glslcc.exe /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rdparty/basisu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/basisu/basisu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu.h -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_file_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_file_headers.h -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_global_selector_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_global_selector_cb.h -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_global_selector_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_global_selector_palette.h -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder.cpp -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder.h -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_internal.h -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_tables_astc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_tables_astc.inc -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_tables_astc_0_255.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_tables_astc_0_255.inc -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_tables_atc_55.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_tables_atc_55.inc -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_tables_atc_56.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_tables_atc_56.inc -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_tables_bc7_m5_alpha.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_tables_bc7_m5_alpha.inc -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_tables_bc7_m5_color.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_tables_bc7_m5_color.inc -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_tables_bc7_m6.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_tables_bc7_m6.inc -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_tables_dxt1_5.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_tables_dxt1_5.inc -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_tables_dxt1_6.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_tables_dxt1_6.inc -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_tables_pvrtc2_45.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_tables_pvrtc2_45.inc -------------------------------------------------------------------------------- /3rdparty/basisu/basisu_transcoder_tables_pvrtc2_alpha_33.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/basisu/basisu_transcoder_tables_pvrtc2_alpha_33.inc -------------------------------------------------------------------------------- /3rdparty/c89atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/c89atomic/README.md -------------------------------------------------------------------------------- /3rdparty/c89atomic/c89atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/c89atomic/c89atomic.h -------------------------------------------------------------------------------- /3rdparty/c89atomic/x64/c89atomic.x64.win64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/c89atomic/x64/c89atomic.x64.win64.nasm -------------------------------------------------------------------------------- /3rdparty/cgltf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cgltf/LICENSE -------------------------------------------------------------------------------- /3rdparty/cgltf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cgltf/README.md -------------------------------------------------------------------------------- /3rdparty/cgltf/cgltf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cgltf/cgltf.h -------------------------------------------------------------------------------- /3rdparty/cgltf/cgltf_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cgltf/cgltf_write.h -------------------------------------------------------------------------------- /3rdparty/cimgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/cimgui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/LICENSE -------------------------------------------------------------------------------- /3rdparty/cimgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/README.md -------------------------------------------------------------------------------- /3rdparty/cimgui/cimgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/cimgui.cpp -------------------------------------------------------------------------------- /3rdparty/cimgui/cimgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/cimgui.h -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/LICENSE.txt -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/docs/README.md -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/docs/TODO.txt -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/imconfig.h -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/imgui.cpp -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/imgui.h -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/imgui_internal.h -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /3rdparty/cimgui/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cimgui/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /3rdparty/cr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cr/LICENSE -------------------------------------------------------------------------------- /3rdparty/cr/README.md: -------------------------------------------------------------------------------- 1 | cr.h -------------------------------------------------------------------------------- /3rdparty/cr/cr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cr/cr.h -------------------------------------------------------------------------------- /3rdparty/cute_headers/cute_c2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/cute_headers/cute_c2.h -------------------------------------------------------------------------------- /3rdparty/dr_libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/dr_libs/README.md -------------------------------------------------------------------------------- /3rdparty/dr_libs/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/dr_libs/dr_wav.h -------------------------------------------------------------------------------- /3rdparty/find_vstudio/find_vstudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/find_vstudio/find_vstudio.h -------------------------------------------------------------------------------- /3rdparty/flextGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/flextGL/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/flextGL/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/flextGL/KHR/khrplatform.h -------------------------------------------------------------------------------- /3rdparty/flextGL/flextGL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/flextGL/flextGL.c -------------------------------------------------------------------------------- /3rdparty/flextGL/flextGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/flextGL/flextGL.h -------------------------------------------------------------------------------- /3rdparty/fontstash/fontstash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/fontstash/fontstash.h -------------------------------------------------------------------------------- /3rdparty/fontstash/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/fontstash/stb_truetype.h -------------------------------------------------------------------------------- /3rdparty/gainput/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/gainput/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/LICENSE -------------------------------------------------------------------------------- /3rdparty/gainput/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/README.md -------------------------------------------------------------------------------- /3rdparty/gainput/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/gainput/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/LICENSE -------------------------------------------------------------------------------- /3rdparty/gainput/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/README.md -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputAllocator.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputContainers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputContainers.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputDebugRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputDebugRenderer.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputHelpers.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputInputDeltaState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputInputDeltaState.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputInputDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputInputDevice.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputInputDeviceBuiltIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputInputDeviceBuiltIn.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputInputDeviceKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputInputDeviceKeyboard.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputInputDeviceMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputInputDeviceMouse.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputInputDevicePad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputInputDevicePad.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputInputDeviceTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputInputDeviceTouch.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputInputListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputInputListener.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputInputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputInputManager.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputInputMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputInputMap.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputInputState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputInputState.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputIos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputIos.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputLog.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/GainputMapFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/GainputMapFilters.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/gainput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/gainput.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/gestures/GainputButtonStickGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/gestures/GainputButtonStickGesture.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/gestures/GainputDoubleClickGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/gestures/GainputDoubleClickGesture.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/gestures/GainputGestures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/gestures/GainputGestures.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/gestures/GainputHoldGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/gestures/GainputHoldGesture.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/gestures/GainputPinchGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/gestures/GainputPinchGesture.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/gestures/GainputRotateGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/gestures/GainputRotateGesture.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/gestures/GainputSimultaneouslyDownGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/gestures/GainputSimultaneouslyDownGesture.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/gestures/GainputTapGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/gestures/GainputTapGesture.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/recorder/GainputInputPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/recorder/GainputInputPlayer.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/recorder/GainputInputRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/recorder/GainputInputRecorder.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/include/gainput/recorder/GainputInputRecording.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/include/gainput/recorder/GainputInputRecording.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/GainputAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/GainputAllocator.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/GainputHelpersEvdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/GainputHelpersEvdev.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/GainputInputDeltaState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/GainputInputDeltaState.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/GainputInputDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/GainputInputDevice.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/GainputInputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/GainputInputManager.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/GainputInputMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/GainputInputMap.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/GainputInputState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/GainputInputState.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/GainputIos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/GainputIos.mm -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/GainputMac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/GainputMac.mm -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/GainputMapFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/GainputMapFilters.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/GainputWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/GainputWindows.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltIn.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltInAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltInAndroid.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltInImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltInImpl.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltInIos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltInIos.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltInIos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltInIos.mm -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltInNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/builtin/GainputInputDeviceBuiltInNull.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputDev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputDev.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputDev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputDev.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputDevProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputDevProtocol.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputMemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputMemoryStream.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputMemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputMemoryStream.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputNetAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputNetAddress.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputNetAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputNetAddress.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputNetConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputNetConnection.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputNetConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputNetConnection.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputNetListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputNetListener.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputNetListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputNetListener.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/dev/GainputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/dev/GainputStream.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/gainput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/gainput.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/gestures/GainputButtonStickGesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/gestures/GainputButtonStickGesture.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/gestures/GainputDoubleClickGesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/gestures/GainputDoubleClickGesture.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/gestures/GainputHoldGesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/gestures/GainputHoldGesture.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/gestures/GainputPinchGesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/gestures/GainputPinchGesture.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/gestures/GainputRotateGesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/gestures/GainputRotateGesture.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/gestures/GainputSimultaneouslyDownGesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/gestures/GainputSimultaneouslyDownGesture.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/gestures/GainputTapGesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/gestures/GainputTapGesture.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboard.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardAndroid.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardEvdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardEvdev.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardImpl.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardLinux.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardMac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardMac.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardMac.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardNull.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardWin.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardWinRaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/keyboard/GainputInputDeviceKeyboardWinRaw.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/keyboard/GainputKeyboardKeyNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/keyboard/GainputKeyboardKeyNames.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouse.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseEvdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseEvdev.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseImpl.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseLinux.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseMac.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseMac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseMac.mm -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseNull.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseWin.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseWinRaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/mouse/GainputInputDeviceMouseWinRaw.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/mouse/GainputMouseInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/mouse/GainputMouseInfo.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePad.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadAndroid.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadImpl.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadIos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadIos.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadIos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadIos.mm -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadLinux.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadMac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadMac.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadMac.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadNull.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/pad/GainputInputDevicePadWin.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/recorder/GainputInputPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/recorder/GainputInputPlayer.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/recorder/GainputInputRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/recorder/GainputInputRecorder.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/recorder/GainputInputRecording.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/recorder/GainputInputRecording.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/touch/GainputInputDeviceTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/touch/GainputInputDeviceTouch.cpp -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/touch/GainputInputDeviceTouchAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/touch/GainputInputDeviceTouchAndroid.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/touch/GainputInputDeviceTouchImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/touch/GainputInputDeviceTouchImpl.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/touch/GainputInputDeviceTouchIos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/touch/GainputInputDeviceTouchIos.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/touch/GainputInputDeviceTouchNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/touch/GainputInputDeviceTouchNull.h -------------------------------------------------------------------------------- /3rdparty/gainput/lib/source/gainput/touch/GainputTouchInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/gainput/lib/source/gainput/touch/GainputTouchInfo.h -------------------------------------------------------------------------------- /3rdparty/imguizmo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/imguizmo/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/imguizmo/ImGuizmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/imguizmo/ImGuizmo.cpp -------------------------------------------------------------------------------- /3rdparty/imguizmo/ImGuizmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/imguizmo/ImGuizmo.h -------------------------------------------------------------------------------- /3rdparty/imguizmo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/imguizmo/LICENSE -------------------------------------------------------------------------------- /3rdparty/imguizmo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/imguizmo/README.md -------------------------------------------------------------------------------- /3rdparty/mattias/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/mattias/http.h -------------------------------------------------------------------------------- /3rdparty/remotery/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/remotery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/LICENSE -------------------------------------------------------------------------------- /3rdparty/remotery/lib/Remotery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/lib/Remotery.c -------------------------------------------------------------------------------- /3rdparty/remotery/lib/Remotery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/lib/Remotery.h -------------------------------------------------------------------------------- /3rdparty/remotery/lib/RemoteryMetal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/lib/RemoteryMetal.mm -------------------------------------------------------------------------------- /3rdparty/remotery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/readme.md -------------------------------------------------------------------------------- /3rdparty/remotery/vis/Code/Console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/Code/Console.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/Code/DataViewReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/Code/DataViewReader.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/Code/PixelTimeRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/Code/PixelTimeRange.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/Code/Remotery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/Code/Remotery.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/Code/SampleWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/Code/SampleWindow.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/Code/ThreadFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/Code/ThreadFrame.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/Code/TimelineRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/Code/TimelineRow.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/Code/TimelineWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/Code/TimelineWindow.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/Code/TitleWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/Code/TitleWindow.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/Code/WebSocketConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/Code/WebSocketConnection.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/Styles/Remotery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/Styles/Remotery.css -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Animation.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Bind.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Convert.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Core.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/Core/Code/DOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/Core/Code/DOM.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Keyboard.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/Core/Code/LocalStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/Core/Code/LocalStore.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/Core/Code/Mouse.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/Core/Code/MurmurHash3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/Core/Code/MurmurHash3.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Button.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/ComboBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/ComboBox.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Container.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/EditBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/EditBox.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Grid.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Label.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Treeview.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/TreeviewItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/TreeviewItem.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/Window.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/WindowManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Code/WindowManager.js -------------------------------------------------------------------------------- /3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Styles/WindowManager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/extern/BrowserLib/WindowManager/Styles/WindowManager.css -------------------------------------------------------------------------------- /3rdparty/remotery/vis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/index.html -------------------------------------------------------------------------------- /3rdparty/remotery/vis/indexTWO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/remotery/vis/indexTWO.html -------------------------------------------------------------------------------- /3rdparty/sokol/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/sokol/LICENSE -------------------------------------------------------------------------------- /3rdparty/sokol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/sokol/README.md -------------------------------------------------------------------------------- /3rdparty/sokol/sokol_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/sokol/sokol_app.h -------------------------------------------------------------------------------- /3rdparty/sokol/sokol_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/sokol/sokol_audio.h -------------------------------------------------------------------------------- /3rdparty/sokol/sokol_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/sokol/sokol_gfx.h -------------------------------------------------------------------------------- /3rdparty/sokol/util/sokol_gfx_imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/sokol/util/sokol_gfx_imgui.h -------------------------------------------------------------------------------- /3rdparty/sort/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/sort/CONTRIBUTING.md -------------------------------------------------------------------------------- /3rdparty/sort/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/sort/CONTRIBUTORS.md -------------------------------------------------------------------------------- /3rdparty/sort/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/sort/LICENSE.md -------------------------------------------------------------------------------- /3rdparty/sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/sort/README.md -------------------------------------------------------------------------------- /3rdparty/sort/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/sort/sort.h -------------------------------------------------------------------------------- /3rdparty/stb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/stb/README.md -------------------------------------------------------------------------------- /3rdparty/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/stb/stb_image.h -------------------------------------------------------------------------------- /3rdparty/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/stb/stb_image_resize.h -------------------------------------------------------------------------------- /3rdparty/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/stb/stb_image_write.h -------------------------------------------------------------------------------- /3rdparty/stb/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/3rdparty/stb/stb_vorbis.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v0.5-105-g1d38a01 2 | -------------------------------------------------------------------------------- /cmake/AndroidNdkModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/cmake/AndroidNdkModules.cmake -------------------------------------------------------------------------------- /cmake/bundle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/cmake/bundle.cmake -------------------------------------------------------------------------------- /cmake/glslcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/cmake/glslcc.cmake -------------------------------------------------------------------------------- /cmake/ios.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/cmake/ios.toolchain.cmake -------------------------------------------------------------------------------- /cmake/ispc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/cmake/ispc.cmake -------------------------------------------------------------------------------- /cmake/rpi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/cmake/rpi.cmake -------------------------------------------------------------------------------- /docs/css/base-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/css/base-min.css -------------------------------------------------------------------------------- /docs/css/grids-core-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/css/grids-core-min.css -------------------------------------------------------------------------------- /docs/css/grids-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/css/grids-min.css -------------------------------------------------------------------------------- /docs/css/normalize-legacy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/css/normalize-legacy.css -------------------------------------------------------------------------------- /docs/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/css/normalize.css -------------------------------------------------------------------------------- /docs/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/css/styles.css -------------------------------------------------------------------------------- /docs/guide/basics/index.md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/guide/basics/index.md.html -------------------------------------------------------------------------------- /docs/guide/basics/log-console-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/guide/basics/log-console-window.png -------------------------------------------------------------------------------- /docs/guide/basics/rizz-basics-asset-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/guide/basics/rizz-basics-asset-design.png -------------------------------------------------------------------------------- /docs/guide/basics/rizz-basics-build-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/guide/basics/rizz-basics-build-chart.png -------------------------------------------------------------------------------- /docs/guide/basics/rizz-basics-bundle-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/guide/basics/rizz-basics-bundle-model.png -------------------------------------------------------------------------------- /docs/guide/basics/rizz-basics-draw-mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/guide/basics/rizz-basics-draw-mt.png -------------------------------------------------------------------------------- /docs/guide/basics/rizz-basics-host-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/guide/basics/rizz-basics-host-model.png -------------------------------------------------------------------------------- /docs/guide/basics/rizz-basics-plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/guide/basics/rizz-basics-plugins.png -------------------------------------------------------------------------------- /docs/guide/basics/rizz-basics-stages-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/guide/basics/rizz-basics-stages-example.png -------------------------------------------------------------------------------- /docs/guide/basics/rizz-basics-systems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/guide/basics/rizz-basics-systems.png -------------------------------------------------------------------------------- /docs/js/markdeep.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/docs/js/markdeep.min.js -------------------------------------------------------------------------------- /examples/01-hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/01-hello/hello.c -------------------------------------------------------------------------------- /examples/02-quad/quad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/02-quad/quad.c -------------------------------------------------------------------------------- /examples/02-quad/quad.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/02-quad/quad.frag -------------------------------------------------------------------------------- /examples/02-quad/quad.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/02-quad/quad.vert -------------------------------------------------------------------------------- /examples/03-drawsprite/drawsprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/03-drawsprite/drawsprite.c -------------------------------------------------------------------------------- /examples/03-drawsprite/drawsprite.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/03-drawsprite/drawsprite.frag -------------------------------------------------------------------------------- /examples/03-drawsprite/drawsprite.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/03-drawsprite/drawsprite.vert -------------------------------------------------------------------------------- /examples/04-animsprite/animsprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/04-animsprite/animsprite.c -------------------------------------------------------------------------------- /examples/05-playsound/playsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/05-playsound/playsound.c -------------------------------------------------------------------------------- /examples/06-sdf/sdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/06-sdf/sdf.c -------------------------------------------------------------------------------- /examples/06-sdf/sdf.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/06-sdf/sdf.frag -------------------------------------------------------------------------------- /examples/06-sdf/sdf.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/06-sdf/sdf.vert -------------------------------------------------------------------------------- /examples/07-nbody/nbody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/07-nbody/nbody.c -------------------------------------------------------------------------------- /examples/07-nbody/nbody.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/07-nbody/nbody.comp -------------------------------------------------------------------------------- /examples/07-nbody/nbody.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/07-nbody/nbody.frag -------------------------------------------------------------------------------- /examples/07-nbody/nbody.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/07-nbody/nbody.vert -------------------------------------------------------------------------------- /examples/08-draw3d/cube_multipart.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/08-draw3d/cube_multipart.blend -------------------------------------------------------------------------------- /examples/08-draw3d/draw3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/08-draw3d/draw3d.c -------------------------------------------------------------------------------- /examples/08-draw3d/draw3d.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/08-draw3d/draw3d.frag -------------------------------------------------------------------------------- /examples/08-draw3d/draw3d.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/08-draw3d/draw3d.vert -------------------------------------------------------------------------------- /examples/08-draw3d/monkey_nodes.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/08-draw3d/monkey_nodes.blend -------------------------------------------------------------------------------- /examples/08-draw3d/torus.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/08-draw3d/torus.blend -------------------------------------------------------------------------------- /examples/09-pathfind/agent.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/09-pathfind/agent.blend -------------------------------------------------------------------------------- /examples/09-pathfind/cube.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/09-pathfind/cube.blend -------------------------------------------------------------------------------- /examples/09-pathfind/pathfind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/09-pathfind/pathfind.c -------------------------------------------------------------------------------- /examples/10-collideboxes/collideboxes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/10-collideboxes/collideboxes.c -------------------------------------------------------------------------------- /examples/11-pathspline/pathspline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/11-pathspline/pathspline.c -------------------------------------------------------------------------------- /examples/12-boids/boids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/12-boids/boids.c -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/assets/fonts/sponge_bob.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/fonts/sponge_bob.ttf -------------------------------------------------------------------------------- /examples/assets/models/agent.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/models/agent.glb -------------------------------------------------------------------------------- /examples/assets/models/cube.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/models/cube.glb -------------------------------------------------------------------------------- /examples/assets/models/cube_multipart.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/models/cube_multipart.glb -------------------------------------------------------------------------------- /examples/assets/models/monkey_nodes.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/models/monkey_nodes.glb -------------------------------------------------------------------------------- /examples/assets/models/test.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/models/test.gltf -------------------------------------------------------------------------------- /examples/assets/models/torus.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/models/torus.glb -------------------------------------------------------------------------------- /examples/assets/shaders/gles2/drawsprite_wire.sgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/shaders/gles2/drawsprite_wire.sgs -------------------------------------------------------------------------------- /examples/assets/shaders/gles3/drawsprite_wire.sgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/shaders/gles3/drawsprite_wire.sgs -------------------------------------------------------------------------------- /examples/assets/shaders/glsl/drawsprite_wire.sgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/shaders/glsl/drawsprite_wire.sgs -------------------------------------------------------------------------------- /examples/assets/shaders/hlsl/drawsprite_wire.sgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/shaders/hlsl/drawsprite_wire.sgs -------------------------------------------------------------------------------- /examples/assets/shaders/msl/drawsprite_wire.sgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/shaders/msl/drawsprite_wire.sgs -------------------------------------------------------------------------------- /examples/assets/sounds/fish_combo_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/sounds/fish_combo_1.wav -------------------------------------------------------------------------------- /examples/assets/sounds/fish_combo_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/sounds/fish_combo_2.wav -------------------------------------------------------------------------------- /examples/assets/sounds/fish_combo_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/sounds/fish_combo_3.wav -------------------------------------------------------------------------------- /examples/assets/sounds/fish_combo_4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/sounds/fish_combo_4.wav -------------------------------------------------------------------------------- /examples/assets/sounds/fish_combo_5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/sounds/fish_combo_5.wav -------------------------------------------------------------------------------- /examples/assets/sounds/fish_combo_6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/sounds/fish_combo_6.wav -------------------------------------------------------------------------------- /examples/assets/sounds/fish_combo_7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/sounds/fish_combo_7.wav -------------------------------------------------------------------------------- /examples/assets/sounds/fish_combo_8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/sounds/fish_combo_8.wav -------------------------------------------------------------------------------- /examples/assets/textures/boy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/textures/boy.json -------------------------------------------------------------------------------- /examples/assets/textures/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/textures/boy.png -------------------------------------------------------------------------------- /examples/assets/textures/handicraft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/textures/handicraft.json -------------------------------------------------------------------------------- /examples/assets/textures/handicraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/textures/handicraft.png -------------------------------------------------------------------------------- /examples/assets/textures/logo.basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/textures/logo.basis -------------------------------------------------------------------------------- /examples/assets/textures/particle.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/assets/textures/particle.dds -------------------------------------------------------------------------------- /examples/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/common.h -------------------------------------------------------------------------------- /examples/screenshots/02-quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/02-quad.png -------------------------------------------------------------------------------- /examples/screenshots/03-drawsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/03-drawsprite.png -------------------------------------------------------------------------------- /examples/screenshots/04-animsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/04-animsprite.png -------------------------------------------------------------------------------- /examples/screenshots/05-playsound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/05-playsound.png -------------------------------------------------------------------------------- /examples/screenshots/06-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/06-sdf.png -------------------------------------------------------------------------------- /examples/screenshots/07-nbody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/07-nbody.png -------------------------------------------------------------------------------- /examples/screenshots/08-draw3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/08-draw3d.png -------------------------------------------------------------------------------- /examples/screenshots/09-pathfind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/09-pathfind.png -------------------------------------------------------------------------------- /examples/screenshots/10-collideboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/10-collideboxes.png -------------------------------------------------------------------------------- /examples/screenshots/11-pathspline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/11-pathspline.png -------------------------------------------------------------------------------- /examples/screenshots/12-boids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/12-boids.png -------------------------------------------------------------------------------- /examples/screenshots/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/overview.png -------------------------------------------------------------------------------- /examples/screenshots/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/examples/screenshots/preview.png -------------------------------------------------------------------------------- /include/cj5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/cj5/LICENSE -------------------------------------------------------------------------------- /include/cj5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/cj5/README.md -------------------------------------------------------------------------------- /include/cj5/cj5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/cj5/cj5.h -------------------------------------------------------------------------------- /include/compat/freebsd/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/compat/freebsd/alloca.h -------------------------------------------------------------------------------- /include/compat/freebsd/dirent.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/compat/freebsd/malloc.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/compat/freebsd/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/compat/freebsd/signal.h -------------------------------------------------------------------------------- /include/compat/ios/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/compat/ios/malloc.h -------------------------------------------------------------------------------- /include/compat/mingw/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/compat/mingw/alloca.h -------------------------------------------------------------------------------- /include/compat/mingw/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/compat/mingw/dirent.h -------------------------------------------------------------------------------- /include/compat/mingw/sal.h: -------------------------------------------------------------------------------- 1 | #include "salieri.h" 2 | -------------------------------------------------------------------------------- /include/compat/mingw/salieri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/compat/mingw/salieri.h -------------------------------------------------------------------------------- /include/compat/mingw/specstrings_strict.h: -------------------------------------------------------------------------------- 1 | #define __reserved 2 | -------------------------------------------------------------------------------- /include/compat/mingw/specstrings_undef.h: -------------------------------------------------------------------------------- 1 | #undef __reserved 2 | 3 | -------------------------------------------------------------------------------- /include/compat/msvc/alloca.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/compat/msvc/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/compat/msvc/dirent.h -------------------------------------------------------------------------------- /include/compat/msvc/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/compat/msvc/inttypes.h -------------------------------------------------------------------------------- /include/compat/msvc/pre1600/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/compat/msvc/pre1600/stdint.h -------------------------------------------------------------------------------- /include/compat/msvc/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/compat/msvc/stdbool.h -------------------------------------------------------------------------------- /include/compat/osx/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/compat/osx/malloc.h -------------------------------------------------------------------------------- /include/dds-ktx/dds-ktx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/dds-ktx/dds-ktx.h -------------------------------------------------------------------------------- /include/dmon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/dmon/LICENSE -------------------------------------------------------------------------------- /include/dmon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/dmon/README.md -------------------------------------------------------------------------------- /include/dmon/dmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/dmon/dmon.h -------------------------------------------------------------------------------- /include/rizz/2dtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/2dtools.h -------------------------------------------------------------------------------- /include/rizz/3dtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/3dtools.h -------------------------------------------------------------------------------- /include/rizz/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/android.h -------------------------------------------------------------------------------- /include/rizz/astar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/astar.h -------------------------------------------------------------------------------- /include/rizz/collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/collision.h -------------------------------------------------------------------------------- /include/rizz/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/config.h -------------------------------------------------------------------------------- /include/rizz/imgui-extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/imgui-extra.h -------------------------------------------------------------------------------- /include/rizz/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/imgui.h -------------------------------------------------------------------------------- /include/rizz/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/input.h -------------------------------------------------------------------------------- /include/rizz/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/ios.h -------------------------------------------------------------------------------- /include/rizz/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/json.h -------------------------------------------------------------------------------- /include/rizz/rizz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/rizz.h -------------------------------------------------------------------------------- /include/rizz/sg-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/sg-types.h -------------------------------------------------------------------------------- /include/rizz/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/sound.h -------------------------------------------------------------------------------- /include/rizz/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/rizz/utility.h -------------------------------------------------------------------------------- /include/stackwalkerc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/stackwalkerc/LICENSE -------------------------------------------------------------------------------- /include/stackwalkerc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/stackwalkerc/README.md -------------------------------------------------------------------------------- /include/stackwalkerc/stackwalkerc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/stackwalkerc/stackwalkerc.h -------------------------------------------------------------------------------- /include/sx/_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/_simd.h -------------------------------------------------------------------------------- /include/sx/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/allocator.h -------------------------------------------------------------------------------- /include/sx/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/array.h -------------------------------------------------------------------------------- /include/sx/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/atomic.h -------------------------------------------------------------------------------- /include/sx/bheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/bheap.h -------------------------------------------------------------------------------- /include/sx/bitarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/bitarray.h -------------------------------------------------------------------------------- /include/sx/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/cmdline.h -------------------------------------------------------------------------------- /include/sx/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/config.h -------------------------------------------------------------------------------- /include/sx/fiber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/fiber.h -------------------------------------------------------------------------------- /include/sx/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/handle.h -------------------------------------------------------------------------------- /include/sx/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/hash.h -------------------------------------------------------------------------------- /include/sx/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/ini.h -------------------------------------------------------------------------------- /include/sx/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/io.h -------------------------------------------------------------------------------- /include/sx/jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/jobs.h -------------------------------------------------------------------------------- /include/sx/lin-alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/lin-alloc.h -------------------------------------------------------------------------------- /include/sx/linear-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/linear-buffer.h -------------------------------------------------------------------------------- /include/sx/lockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/lockless.h -------------------------------------------------------------------------------- /include/sx/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/macros.h -------------------------------------------------------------------------------- /include/sx/math-easing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/math-easing.h -------------------------------------------------------------------------------- /include/sx/math-scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/math-scalar.h -------------------------------------------------------------------------------- /include/sx/math-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/math-types.h -------------------------------------------------------------------------------- /include/sx/math-vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/math-vec.h -------------------------------------------------------------------------------- /include/sx/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/math.h -------------------------------------------------------------------------------- /include/sx/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/os.h -------------------------------------------------------------------------------- /include/sx/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/platform.h -------------------------------------------------------------------------------- /include/sx/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/pool.h -------------------------------------------------------------------------------- /include/sx/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/ringbuffer.h -------------------------------------------------------------------------------- /include/sx/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/rng.h -------------------------------------------------------------------------------- /include/sx/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/simd.h -------------------------------------------------------------------------------- /include/sx/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/string.h -------------------------------------------------------------------------------- /include/sx/sx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/sx.h -------------------------------------------------------------------------------- /include/sx/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/threads.h -------------------------------------------------------------------------------- /include/sx/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/timer.h -------------------------------------------------------------------------------- /include/sx/vmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/include/sx/vmem.h -------------------------------------------------------------------------------- /misc/backup/bmfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/misc/backup/bmfont.c -------------------------------------------------------------------------------- /misc/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/misc/imgui.natvis -------------------------------------------------------------------------------- /misc/rizz.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/misc/rizz.natvis -------------------------------------------------------------------------------- /misc/sx.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/misc/sx.natvis -------------------------------------------------------------------------------- /plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/plugin.sh -------------------------------------------------------------------------------- /profiler.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/profiler.bat -------------------------------------------------------------------------------- /rizz.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/rizz.sublime-project -------------------------------------------------------------------------------- /scripts/build-tools/android-res.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/scripts/build-tools/android-res.zip -------------------------------------------------------------------------------- /scripts/build-tools/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/scripts/build-tools/android.py -------------------------------------------------------------------------------- /scripts/build-tools/auto-builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/scripts/build-tools/auto-builder.py -------------------------------------------------------------------------------- /scripts/build-tools/ios-res.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/scripts/build-tools/ios-res.zip -------------------------------------------------------------------------------- /scripts/build-tools/ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/scripts/build-tools/ios.py -------------------------------------------------------------------------------- /scripts/build-tools/rpi-buster-asound-2.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/scripts/build-tools/rpi-buster-asound-2.0.0.zip -------------------------------------------------------------------------------- /scripts/build-tools/rpi-cross-copy-deps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/scripts/build-tools/rpi-cross-copy-deps.bat -------------------------------------------------------------------------------- /scripts/build-tools/rpi-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/scripts/build-tools/rpi-readme.txt -------------------------------------------------------------------------------- /scripts/generators/fake_libc_include.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/scripts/generators/fake_libc_include.zip -------------------------------------------------------------------------------- /scripts/generators/generate-imgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/scripts/generators/generate-imgui.py -------------------------------------------------------------------------------- /scripts/win-tools/vscode.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/scripts/win-tools/vscode.bat -------------------------------------------------------------------------------- /src/2dtools/2dtools-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/2dtools/2dtools-internal.h -------------------------------------------------------------------------------- /src/2dtools/2dtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/2dtools/2dtools.c -------------------------------------------------------------------------------- /src/2dtools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/2dtools/CMakeLists.txt -------------------------------------------------------------------------------- /src/2dtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/2dtools/README.md -------------------------------------------------------------------------------- /src/2dtools/dummy-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/2dtools/dummy-font.h -------------------------------------------------------------------------------- /src/2dtools/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/2dtools/font.c -------------------------------------------------------------------------------- /src/2dtools/font.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/2dtools/font.frag -------------------------------------------------------------------------------- /src/2dtools/font.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/2dtools/font.vert -------------------------------------------------------------------------------- /src/2dtools/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/2dtools/sprite.c -------------------------------------------------------------------------------- /src/2dtools/sprite.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/2dtools/sprite.frag -------------------------------------------------------------------------------- /src/2dtools/sprite.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/2dtools/sprite.vert -------------------------------------------------------------------------------- /src/3dtools/3dtools-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/3dtools/3dtools-internal.h -------------------------------------------------------------------------------- /src/3dtools/3dtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/3dtools/3dtools.c -------------------------------------------------------------------------------- /src/3dtools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/3dtools/CMakeLists.txt -------------------------------------------------------------------------------- /src/3dtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/3dtools/README.md -------------------------------------------------------------------------------- /src/3dtools/debug3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/3dtools/debug3d.c -------------------------------------------------------------------------------- /src/3dtools/debug3d.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/3dtools/debug3d.frag -------------------------------------------------------------------------------- /src/3dtools/debug3d.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/3dtools/debug3d.vert -------------------------------------------------------------------------------- /src/3dtools/debug3d_wire.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/3dtools/debug3d_wire.frag -------------------------------------------------------------------------------- /src/3dtools/debug3d_wire.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/3dtools/debug3d_wire.vert -------------------------------------------------------------------------------- /src/3dtools/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/3dtools/model.c -------------------------------------------------------------------------------- /src/astar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/astar/CMakeLists.txt -------------------------------------------------------------------------------- /src/astar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/astar/README.md -------------------------------------------------------------------------------- /src/astar/astar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/astar/astar.c -------------------------------------------------------------------------------- /src/basisut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/basisut/CMakeLists.txt -------------------------------------------------------------------------------- /src/basisut/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/basisut/README.md -------------------------------------------------------------------------------- /src/basisut/basisut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/basisut/basisut.cpp -------------------------------------------------------------------------------- /src/collision/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/collision/CMakeLists.txt -------------------------------------------------------------------------------- /src/collision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/collision/README.md -------------------------------------------------------------------------------- /src/collision/collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/collision/collision.c -------------------------------------------------------------------------------- /src/imgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/imgui/CMakeLists.txt -------------------------------------------------------------------------------- /src/imgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/imgui/README.md -------------------------------------------------------------------------------- /src/imgui/font-roboto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/imgui/font-roboto.h -------------------------------------------------------------------------------- /src/imgui/imgui-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/imgui/imgui-internal.h -------------------------------------------------------------------------------- /src/imgui/imgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/imgui/imgui.c -------------------------------------------------------------------------------- /src/imgui/imgui.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/imgui/imgui.frag -------------------------------------------------------------------------------- /src/imgui/imgui.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/imgui/imgui.vert -------------------------------------------------------------------------------- /src/imgui/imguizmo-wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/imgui/imguizmo-wrapper.c -------------------------------------------------------------------------------- /src/imgui/log-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/imgui/log-window.c -------------------------------------------------------------------------------- /src/input/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/input/CMakeLists.txt -------------------------------------------------------------------------------- /src/input/README.md: -------------------------------------------------------------------------------- 1 | ## Input Plugin 2 | 3 | -------------------------------------------------------------------------------- /src/input/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/input/input.cpp -------------------------------------------------------------------------------- /src/rizz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/CMakeLists.txt -------------------------------------------------------------------------------- /src/rizz/android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/android.c -------------------------------------------------------------------------------- /src/rizz/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/app.c -------------------------------------------------------------------------------- /src/rizz/asset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/asset.c -------------------------------------------------------------------------------- /src/rizz/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/camera.c -------------------------------------------------------------------------------- /src/rizz/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/core.c -------------------------------------------------------------------------------- /src/rizz/demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/demangle.cpp -------------------------------------------------------------------------------- /src/rizz/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/graphics.c -------------------------------------------------------------------------------- /src/rizz/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/http.c -------------------------------------------------------------------------------- /src/rizz/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/internal.h -------------------------------------------------------------------------------- /src/rizz/ios.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/ios.m -------------------------------------------------------------------------------- /src/rizz/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/json.c -------------------------------------------------------------------------------- /src/rizz/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/memory.c -------------------------------------------------------------------------------- /src/rizz/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/plugin.cpp -------------------------------------------------------------------------------- /src/rizz/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/profiler.c -------------------------------------------------------------------------------- /src/rizz/reflect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/reflect.c -------------------------------------------------------------------------------- /src/rizz/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/vfs.c -------------------------------------------------------------------------------- /src/rizz/windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/rizz/windows.cpp -------------------------------------------------------------------------------- /src/sound/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sound/CMakeLists.txt -------------------------------------------------------------------------------- /src/sound/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sound/README.md -------------------------------------------------------------------------------- /src/sound/beep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sound/beep.h -------------------------------------------------------------------------------- /src/sound/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sound/sound.c -------------------------------------------------------------------------------- /src/sound/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sound/stb_vorbis.c -------------------------------------------------------------------------------- /src/sx/3rdparty/getopt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/getopt/.gitignore -------------------------------------------------------------------------------- /src/sx/3rdparty/getopt/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/getopt/.travis.yml -------------------------------------------------------------------------------- /src/sx/3rdparty/getopt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/getopt/LICENSE -------------------------------------------------------------------------------- /src/sx/3rdparty/getopt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/getopt/README.md -------------------------------------------------------------------------------- /src/sx/3rdparty/getopt/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/getopt/appveyor.yml -------------------------------------------------------------------------------- /src/sx/3rdparty/getopt/bam.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/getopt/bam.lua -------------------------------------------------------------------------------- /src/sx/3rdparty/getopt/example/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/getopt/example/example.cpp -------------------------------------------------------------------------------- /src/sx/3rdparty/getopt/include/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/getopt/include/getopt/getopt.h -------------------------------------------------------------------------------- /src/sx/3rdparty/getopt/src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/getopt/src/getopt.c -------------------------------------------------------------------------------- /src/sx/3rdparty/getopt/test/getopt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/getopt/test/getopt_tests.cpp -------------------------------------------------------------------------------- /src/sx/3rdparty/getopt/test/greatest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/getopt/test/greatest.h -------------------------------------------------------------------------------- /src/sx/3rdparty/mattias/README.md: -------------------------------------------------------------------------------- 1 | https://github.com/mattiasgustavsson/libs/ 2 | -------------------------------------------------------------------------------- /src/sx/3rdparty/mattias/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/mattias/ini.h -------------------------------------------------------------------------------- /src/sx/3rdparty/mattias/ini.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/mattias/ini.md -------------------------------------------------------------------------------- /src/sx/3rdparty/mattias/strpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/mattias/strpool.h -------------------------------------------------------------------------------- /src/sx/3rdparty/sokol/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/sokol/LICENSE -------------------------------------------------------------------------------- /src/sx/3rdparty/sokol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/sokol/README.md -------------------------------------------------------------------------------- /src/sx/3rdparty/sokol/sokol_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/sokol/sokol_time.h -------------------------------------------------------------------------------- /src/sx/3rdparty/stb/stb_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/stb/stb_printf.h -------------------------------------------------------------------------------- /src/sx/3rdparty/xxhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/xxhash/LICENSE -------------------------------------------------------------------------------- /src/sx/3rdparty/xxhash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/xxhash/README.md -------------------------------------------------------------------------------- /src/sx/3rdparty/xxhash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/xxhash/xxhash.c -------------------------------------------------------------------------------- /src/sx/3rdparty/xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/xxhash/xxhash.h -------------------------------------------------------------------------------- /src/sx/3rdparty/xxhash/xxhash_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/3rdparty/xxhash/xxhash_spec.md -------------------------------------------------------------------------------- /src/sx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/CMakeLists.txt -------------------------------------------------------------------------------- /src/sx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/LICENSE -------------------------------------------------------------------------------- /src/sx/asm/jump_arm64_aapcs_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_arm64_aapcs_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_arm64_aapcs_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_arm64_aapcs_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_arm_aapcs_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_arm_aapcs_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_arm_aapcs_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_arm_aapcs_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_arm_aapcs_pe_armasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_arm_aapcs_pe_armasm.asm -------------------------------------------------------------------------------- /src/sx/asm/jump_combined_all_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_combined_all_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_combined_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_combined_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_i386_ms_pe_clang_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_i386_ms_pe_clang_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_i386_ms_pe_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_i386_ms_pe_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_i386_ms_pe_gas.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_i386_ms_pe_gas.asm -------------------------------------------------------------------------------- /src/sx/asm/jump_i386_ms_pe_masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_i386_ms_pe_masm.asm -------------------------------------------------------------------------------- /src/sx/asm/jump_i386_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_i386_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_i386_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_i386_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_i386_x86_64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_i386_x86_64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_mips32_o32_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_mips32_o32_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_mips64_n64_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_mips64_n64_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_ppc32_ppc64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_ppc32_ppc64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_ppc32_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_ppc32_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_ppc32_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_ppc32_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_ppc32_sysv_xcoff_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_ppc32_sysv_xcoff_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_ppc64_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_ppc64_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_ppc64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_ppc64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_ppc64_sysv_xcoff_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_ppc64_sysv_xcoff_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_riscv64_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_riscv64_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_s390x_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_s390x_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_x86_64_ms_pe_clang_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_x86_64_ms_pe_clang_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_x86_64_ms_pe_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_x86_64_ms_pe_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_x86_64_ms_pe_gas.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_x86_64_ms_pe_gas.asm -------------------------------------------------------------------------------- /src/sx/asm/jump_x86_64_ms_pe_masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_x86_64_ms_pe_masm.asm -------------------------------------------------------------------------------- /src/sx/asm/jump_x86_64_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_x86_64_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/jump_x86_64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/jump_x86_64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_arm64_aapcs_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_arm64_aapcs_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_arm64_aapcs_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_arm64_aapcs_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_arm_aapcs_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_arm_aapcs_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_arm_aapcs_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_arm_aapcs_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_arm_aapcs_pe_armasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_arm_aapcs_pe_armasm.asm -------------------------------------------------------------------------------- /src/sx/asm/make_combined_all_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_combined_all_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_combined_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_combined_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_i386_ms_pe_clang_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_i386_ms_pe_clang_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_i386_ms_pe_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_i386_ms_pe_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_i386_ms_pe_gas.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_i386_ms_pe_gas.asm -------------------------------------------------------------------------------- /src/sx/asm/make_i386_ms_pe_masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_i386_ms_pe_masm.asm -------------------------------------------------------------------------------- /src/sx/asm/make_i386_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_i386_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_i386_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_i386_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_i386_x86_64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_i386_x86_64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_mips32_o32_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_mips32_o32_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_mips64_n64_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_mips64_n64_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_ppc32_ppc64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_ppc32_ppc64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_ppc32_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_ppc32_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_ppc32_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_ppc32_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_ppc32_sysv_xcoff_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_ppc32_sysv_xcoff_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_ppc64_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_ppc64_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_ppc64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_ppc64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_ppc64_sysv_xcoff_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_ppc64_sysv_xcoff_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_riscv64_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_riscv64_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_s390x_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_s390x_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_x86_64_ms_pe_clang_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_x86_64_ms_pe_clang_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_x86_64_ms_pe_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_x86_64_ms_pe_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_x86_64_ms_pe_gas.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_x86_64_ms_pe_gas.asm -------------------------------------------------------------------------------- /src/sx/asm/make_x86_64_ms_pe_masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_x86_64_ms_pe_masm.asm -------------------------------------------------------------------------------- /src/sx/asm/make_x86_64_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_x86_64_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/make_x86_64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/make_x86_64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_arm64_aapcs_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_arm64_aapcs_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_arm64_aapcs_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_arm64_aapcs_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_arm_aapcs_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_arm_aapcs_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_arm_aapcs_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_arm_aapcs_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_arm_aapcs_pe_armasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_arm_aapcs_pe_armasm.asm -------------------------------------------------------------------------------- /src/sx/asm/ontop_combined_all_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_combined_all_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_combined_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_combined_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_i386_ms_pe_clang_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_i386_ms_pe_clang_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_i386_ms_pe_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_i386_ms_pe_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_i386_ms_pe_gas.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_i386_ms_pe_gas.asm -------------------------------------------------------------------------------- /src/sx/asm/ontop_i386_ms_pe_masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_i386_ms_pe_masm.asm -------------------------------------------------------------------------------- /src/sx/asm/ontop_i386_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_i386_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_i386_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_i386_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_i386_x86_64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_i386_x86_64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_mips32_o32_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_mips32_o32_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_mips64_n64_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_mips64_n64_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_ppc32_ppc64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_ppc32_ppc64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_ppc32_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_ppc32_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_ppc32_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_ppc32_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_ppc32_sysv_xcoff_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_ppc32_sysv_xcoff_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_ppc64_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_ppc64_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_ppc64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_ppc64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_ppc64_sysv_xcoff_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_ppc64_sysv_xcoff_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_riscv64_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_riscv64_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_s390x_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_s390x_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_x86_64_ms_pe_clang_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_x86_64_ms_pe_clang_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_x86_64_ms_pe_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_x86_64_ms_pe_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_x86_64_ms_pe_gas.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_x86_64_ms_pe_gas.asm -------------------------------------------------------------------------------- /src/sx/asm/ontop_x86_64_ms_pe_masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_x86_64_ms_pe_masm.asm -------------------------------------------------------------------------------- /src/sx/asm/ontop_x86_64_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_x86_64_sysv_elf_gas.S -------------------------------------------------------------------------------- /src/sx/asm/ontop_x86_64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/ontop_x86_64_sysv_macho_gas.S -------------------------------------------------------------------------------- /src/sx/asm/tail_ppc32_sysv_elf_gas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/asm/tail_ppc32_sysv_elf_gas.cpp -------------------------------------------------------------------------------- /src/sx/src/allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/allocator.c -------------------------------------------------------------------------------- /src/sx/src/bheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/bheap.c -------------------------------------------------------------------------------- /src/sx/src/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/cmdline.c -------------------------------------------------------------------------------- /src/sx/src/fiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/fiber.c -------------------------------------------------------------------------------- /src/sx/src/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/handle.c -------------------------------------------------------------------------------- /src/sx/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/hash.c -------------------------------------------------------------------------------- /src/sx/src/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/ini.c -------------------------------------------------------------------------------- /src/sx/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/io.c -------------------------------------------------------------------------------- /src/sx/src/jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/jobs.c -------------------------------------------------------------------------------- /src/sx/src/lin-alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/lin-alloc.c -------------------------------------------------------------------------------- /src/sx/src/lockless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/lockless.c -------------------------------------------------------------------------------- /src/sx/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/math.c -------------------------------------------------------------------------------- /src/sx/src/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/os.c -------------------------------------------------------------------------------- /src/sx/src/ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/ringbuffer.c -------------------------------------------------------------------------------- /src/sx/src/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/rng.c -------------------------------------------------------------------------------- /src/sx/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/string.c -------------------------------------------------------------------------------- /src/sx/src/sx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/sx.c -------------------------------------------------------------------------------- /src/sx/src/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/threads.c -------------------------------------------------------------------------------- /src/sx/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/timer.c -------------------------------------------------------------------------------- /src/sx/src/vmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/sx/src/vmem.c -------------------------------------------------------------------------------- /src/utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/utility/CMakeLists.txt -------------------------------------------------------------------------------- /src/utility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/utility/README.md -------------------------------------------------------------------------------- /src/utility/gradient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/utility/gradient.c -------------------------------------------------------------------------------- /src/utility/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/utility/graph.c -------------------------------------------------------------------------------- /src/utility/noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/utility/noise.c -------------------------------------------------------------------------------- /src/utility/spline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/utility/spline.c -------------------------------------------------------------------------------- /src/utility/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/src/utility/utility.c -------------------------------------------------------------------------------- /stamp-version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git describe --tags > VERSION -------------------------------------------------------------------------------- /tools/darwin/atlasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/tools/darwin/atlasc -------------------------------------------------------------------------------- /tools/darwin/glslcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/tools/darwin/glslcc -------------------------------------------------------------------------------- /tools/linux/atlasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/tools/linux/atlasc -------------------------------------------------------------------------------- /tools/linux/glslcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/tools/linux/glslcc -------------------------------------------------------------------------------- /tools/windows/atlasc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/tools/windows/atlasc.exe -------------------------------------------------------------------------------- /tools/windows/glslcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/septag/rizz/HEAD/tools/windows/glslcc.exe --------------------------------------------------------------------------------