├── .clang-format ├── .gitattributes ├── .github ├── Doxyfile ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── format.js ├── funding.yml └── workflows │ ├── android-opengl.yml │ ├── android-vulkan.yml │ ├── doxygen.yml │ ├── emscripten-webgl.yml │ ├── emscripten-webgpu.yml │ ├── format-v2.yml │ ├── format.yml │ ├── ios-metal.yml │ ├── ios-opengl.yml │ ├── linux-arm-opengl.yml │ ├── linux-opengl.yml │ ├── linux-vulkan.yml │ ├── macos-metal.yml │ ├── macos-opengl.yml │ ├── update-samples.yml │ ├── update-v3.yml │ ├── uwp.yml │ ├── wasm.yml │ ├── windows-direct3d11.yml │ ├── windows-direct3d12.yml │ ├── windows-opengl.yml │ └── windows-vulkan.yml ├── .gitignore ├── .gitmodules ├── backends ├── audio │ ├── directsound │ │ └── sources │ │ │ └── DirectSound.cpp │ ├── wasapi │ │ └── sources │ │ │ └── wasapi.c │ └── wasapi_winrt │ │ └── sources │ │ └── WASAPI.winrt.cpp ├── gpu │ ├── direct3d11 │ │ ├── includes │ │ │ └── kore3 │ │ │ │ └── direct3d11 │ │ │ │ ├── buffer_functions.h │ │ │ │ ├── buffer_structs.h │ │ │ │ ├── commandlist_functions.h │ │ │ │ ├── commandlist_structs.h │ │ │ │ ├── descriptorset_functions.h │ │ │ │ ├── descriptorset_structs.h │ │ │ │ ├── device_functions.h │ │ │ │ ├── device_structs.h │ │ │ │ ├── fence_functions.h │ │ │ │ ├── fence_structs.h │ │ │ │ ├── pipeline_functions.h │ │ │ │ ├── pipeline_structs.h │ │ │ │ ├── raytracing_functions.h │ │ │ │ ├── raytracing_structs.h │ │ │ │ ├── sampler_functions.h │ │ │ │ ├── sampler_structs.h │ │ │ │ ├── texture_functions.h │ │ │ │ └── texture_structs.h │ │ └── sources │ │ │ ├── buffer.c │ │ │ ├── commandlist.c │ │ │ ├── d3d11unit.c │ │ │ ├── d3d11unit.h │ │ │ ├── descriptorset.c │ │ │ ├── device.c │ │ │ ├── fence.c │ │ │ ├── pipeline.c │ │ │ ├── raytracing.c │ │ │ ├── sampler.c │ │ │ └── texture.c │ ├── direct3d12 │ │ ├── includes │ │ │ └── kore3 │ │ │ │ └── direct3d12 │ │ │ │ ├── buffer_functions.h │ │ │ │ ├── buffer_structs.h │ │ │ │ ├── commandlist_functions.h │ │ │ │ ├── commandlist_structs.h │ │ │ │ ├── d3d12mini.h │ │ │ │ ├── descriptorset_functions.h │ │ │ │ ├── descriptorset_structs.h │ │ │ │ ├── device_functions.h │ │ │ │ ├── device_structs.h │ │ │ │ ├── fence_functions.h │ │ │ │ ├── fence_structs.h │ │ │ │ ├── pipeline_functions.h │ │ │ │ ├── pipeline_structs.h │ │ │ │ ├── raytracing_functions.h │ │ │ │ ├── raytracing_structs.h │ │ │ │ ├── sampler_functions.h │ │ │ │ ├── sampler_structs.h │ │ │ │ ├── texture_functions.h │ │ │ │ └── texture_structs.h │ │ ├── libs │ │ │ ├── .clang-format │ │ │ └── pix │ │ │ │ ├── Include │ │ │ │ └── WinPixEventRuntime │ │ │ │ │ ├── PIXEvents.h │ │ │ │ │ ├── PIXEventsCommon.h │ │ │ │ │ ├── PIXEventsLegacy.h │ │ │ │ │ ├── pix3.h │ │ │ │ │ └── pix3_win.h │ │ │ │ ├── ThirdPartyNotices.txt │ │ │ │ ├── bin │ │ │ │ └── x64 │ │ │ │ │ ├── WinPixEventRuntime.dll │ │ │ │ │ └── WinPixEventRuntime.lib │ │ │ │ └── license.txt │ │ └── sources │ │ │ ├── buffer.c │ │ │ ├── commandlist.c │ │ │ ├── d3d12unit.c │ │ │ ├── d3d12unit.h │ │ │ ├── d3dx12.h │ │ │ ├── descriptorset.c │ │ │ ├── device.c │ │ │ ├── fence.c │ │ │ ├── pipeline.c │ │ │ ├── raytracing.c │ │ │ ├── sampler.c │ │ │ └── texture.c │ ├── metal │ │ ├── includes │ │ │ └── kore3 │ │ │ │ └── metal │ │ │ │ ├── buffer_functions.h │ │ │ │ ├── buffer_structs.h │ │ │ │ ├── commandlist_functions.h │ │ │ │ ├── commandlist_structs.h │ │ │ │ ├── descriptorset_functions.h │ │ │ │ ├── descriptorset_structs.h │ │ │ │ ├── device_functions.h │ │ │ │ ├── device_structs.h │ │ │ │ ├── fence_functions.h │ │ │ │ ├── fence_structs.h │ │ │ │ ├── pipeline_functions.h │ │ │ │ ├── pipeline_structs.h │ │ │ │ ├── raytracing_functions.h │ │ │ │ ├── raytracing_structs.h │ │ │ │ ├── sampler_functions.h │ │ │ │ ├── sampler_structs.h │ │ │ │ ├── texture_functions.h │ │ │ │ └── texture_structs.h │ │ └── sources │ │ │ ├── buffer.m │ │ │ ├── commandlist.m │ │ │ ├── descriptorset.m │ │ │ ├── device.m │ │ │ ├── fence.m │ │ │ ├── metalunit.h │ │ │ ├── metalunit.m │ │ │ ├── pipeline.m │ │ │ ├── raytracing.m │ │ │ ├── sampler.m │ │ │ └── texture.m │ ├── opengl │ │ ├── includes │ │ │ ├── GL │ │ │ │ ├── .clang-format │ │ │ │ ├── eglew.h │ │ │ │ ├── glew.h │ │ │ │ ├── glxew.h │ │ │ │ └── wglew.h │ │ │ └── kore3 │ │ │ │ └── opengl │ │ │ │ ├── buffer_functions.h │ │ │ │ ├── buffer_structs.h │ │ │ │ ├── commandlist_functions.h │ │ │ │ ├── commandlist_structs.h │ │ │ │ ├── descriptorset_functions.h │ │ │ │ ├── descriptorset_structs.h │ │ │ │ ├── device_functions.h │ │ │ │ ├── device_structs.h │ │ │ │ ├── fence_functions.h │ │ │ │ ├── fence_structs.h │ │ │ │ ├── pipeline_functions.h │ │ │ │ ├── pipeline_structs.h │ │ │ │ ├── raytracing_functions.h │ │ │ │ ├── raytracing_structs.h │ │ │ │ ├── sampler_functions.h │ │ │ │ ├── sampler_structs.h │ │ │ │ ├── texture_functions.h │ │ │ │ └── texture_structs.h │ │ ├── libs │ │ │ ├── .clang-format │ │ │ └── glew │ │ │ │ └── glew.c │ │ └── sources │ │ │ ├── buffer.c │ │ │ ├── commandlist.c │ │ │ ├── copy.c │ │ │ ├── descriptorset.c │ │ │ ├── device.c │ │ │ ├── fence.c │ │ │ ├── flip.c │ │ │ ├── openglunit.c │ │ │ ├── openglunit.h │ │ │ ├── pipeline.c │ │ │ ├── raytracing.c │ │ │ ├── sampler.c │ │ │ └── texture.c │ ├── vulkan │ │ ├── includes │ │ │ └── kore3 │ │ │ │ └── vulkan │ │ │ │ ├── buffer_functions.h │ │ │ │ ├── buffer_structs.h │ │ │ │ ├── commandlist_functions.h │ │ │ │ ├── commandlist_structs.h │ │ │ │ ├── descriptorset_functions.h │ │ │ │ ├── descriptorset_structs.h │ │ │ │ ├── device_functions.h │ │ │ │ ├── device_structs.h │ │ │ │ ├── fence_functions.h │ │ │ │ ├── fence_structs.h │ │ │ │ ├── pipeline_functions.h │ │ │ │ ├── pipeline_structs.h │ │ │ │ ├── raytracing_functions.h │ │ │ │ ├── raytracing_structs.h │ │ │ │ ├── sampler_functions.h │ │ │ │ ├── sampler_structs.h │ │ │ │ ├── texture_functions.h │ │ │ │ ├── texture_structs.h │ │ │ │ └── vulkanmini.h │ │ └── sources │ │ │ ├── buffer.c │ │ │ ├── commandlist.c │ │ │ ├── descriptorset.c │ │ │ ├── device.c │ │ │ ├── fence.c │ │ │ ├── pipeline.c │ │ │ ├── raytracing.c │ │ │ ├── renderpasses.c │ │ │ ├── sampler.c │ │ │ ├── texture.c │ │ │ ├── vulkanunit.c │ │ │ └── vulkanunit.h │ └── webgpu │ │ ├── includes │ │ └── kore3 │ │ │ └── webgpu │ │ │ ├── buffer_functions.h │ │ │ ├── buffer_structs.h │ │ │ ├── commandlist_functions.h │ │ │ ├── commandlist_structs.h │ │ │ ├── descriptorset_functions.h │ │ │ ├── descriptorset_structs.h │ │ │ ├── device_functions.h │ │ │ ├── device_structs.h │ │ │ ├── fence_functions.h │ │ │ ├── fence_structs.h │ │ │ ├── pipeline_functions.h │ │ │ ├── pipeline_structs.h │ │ │ ├── raytracing_functions.h │ │ │ ├── raytracing_structs.h │ │ │ ├── sampler_functions.h │ │ │ ├── sampler_structs.h │ │ │ ├── texture_functions.h │ │ │ ├── texture_structs.h │ │ │ └── webgpu.h │ │ └── sources │ │ ├── buffer.c │ │ ├── commandlist.c │ │ ├── descriptorset.c │ │ ├── device.c │ │ ├── fence.c │ │ ├── pipeline.c │ │ ├── raytracing.c │ │ ├── sampler.c │ │ ├── texture.c │ │ ├── webgpuunit.c │ │ └── webgpuunit.h └── system │ ├── android │ ├── includes │ │ └── kore3 │ │ │ └── backend │ │ │ ├── android.h │ │ │ ├── android_native_app_glue.h │ │ │ ├── video.h │ │ │ └── vr.h │ ├── java-sources │ │ └── tech │ │ │ └── kore │ │ │ ├── KoreActivity.kt │ │ │ ├── KoreMoviePlayer.kt │ │ │ └── KoreMovieTexture.kt │ └── sources │ │ ├── android_native_app_glue.c │ │ ├── androidunit.c │ │ ├── audio.c │ │ ├── display.c │ │ ├── system.c │ │ ├── video.c │ │ ├── vr.c │ │ └── window.c │ ├── apple │ ├── includes │ │ └── kore3 │ │ │ └── backend │ │ │ └── video.h │ └── sources │ │ ├── appleunit.m │ │ ├── http.m │ │ ├── system.m │ │ ├── thread.m │ │ └── video.m │ ├── emscripten │ ├── includes │ │ └── kore3 │ │ │ └── backend │ │ │ ├── atomic.h │ │ │ ├── event.h │ │ │ ├── mutex.h │ │ │ ├── semaphore.h │ │ │ ├── thread.h │ │ │ ├── threadlocal.h │ │ │ └── video.h │ └── sources │ │ ├── audio.c │ │ ├── display.c │ │ ├── emscriptenunit.c │ │ ├── event.c │ │ ├── gamepad.c │ │ ├── mouse.c │ │ ├── mutex.c │ │ ├── semaphore.c │ │ ├── system.c │ │ ├── thread.c │ │ ├── threadlocal.c │ │ ├── video.c │ │ └── window.c │ ├── freebsd │ ├── includes │ │ └── kore3 │ │ │ └── backend │ │ │ └── gamepad.h │ └── sources │ │ ├── bsdunit.cpp │ │ └── gamepad.cpp │ ├── ios │ ├── includes │ │ └── kore3 │ │ │ └── backend │ │ │ ├── GLView.h │ │ │ ├── GLViewController.h │ │ │ ├── KoreAppDelegate.h │ │ │ └── motion.h │ └── sources │ │ ├── GLView.m │ │ ├── GLViewController.m │ │ ├── KoreAppDelegate.m │ │ ├── LaunchScreen.storyboard │ │ ├── audio.m │ │ ├── display.m │ │ ├── ios.plist │ │ ├── iosunit.m │ │ ├── motion.m │ │ ├── mouse.c │ │ ├── system.m │ │ └── window.c │ ├── linux │ ├── includes │ │ └── kore3 │ │ │ └── backend │ │ │ ├── funcs.h │ │ │ ├── gamepad.h │ │ │ ├── linux.h │ │ │ ├── video.h │ │ │ ├── wayland-funs.h │ │ │ ├── wayland.h │ │ │ └── x11.h │ └── sources │ │ ├── display-wayland.c │ │ ├── display-x11.c │ │ ├── display.c │ │ ├── gamepad.c │ │ ├── linuxunit.c │ │ ├── mouse.c │ │ ├── sound.c │ │ ├── system-wayland.c │ │ ├── system-x11.c │ │ ├── system.c │ │ ├── video.c │ │ ├── window-wayland.c │ │ ├── window-x11.c │ │ └── window.c │ ├── macos │ ├── includes │ │ └── kore3 │ │ │ └── backend │ │ │ ├── BasicOpenGLView.h │ │ │ ├── HIDGamepad.h │ │ │ └── HIDManager.h │ └── sources │ │ ├── BasicOpenGLView.m │ │ ├── HIDGamepad.c │ │ ├── HIDManager.c │ │ ├── audio.c │ │ ├── display.m │ │ ├── mac.plist │ │ ├── macosunit.m │ │ ├── mouse.m │ │ ├── system.c │ │ ├── system.m │ │ └── window.c │ ├── microsoft │ ├── includes │ │ └── kore3 │ │ │ └── backend │ │ │ ├── atomic.h │ │ │ ├── event.h │ │ │ ├── fiber.h │ │ │ ├── microsoft.h │ │ │ ├── mutex.h │ │ │ ├── semaphore.h │ │ │ ├── thread.h │ │ │ ├── threadlocal.h │ │ │ └── windowsmini.h │ └── sources │ │ ├── event.c │ │ ├── fiber.c │ │ ├── microsoft.c │ │ ├── microsoftunit.c │ │ ├── mutex.c │ │ ├── semaphore.c │ │ ├── thread.c │ │ └── threadlocal.c │ ├── posix │ ├── includes │ │ └── kore3 │ │ │ └── backend │ │ │ ├── atomic.h │ │ │ ├── event.h │ │ │ ├── mutex.h │ │ │ ├── semaphore.h │ │ │ ├── thread.h │ │ │ └── threadlocal.h │ └── sources │ │ ├── event.c │ │ ├── mutex.c │ │ ├── posixunit.c │ │ ├── semaphore.c │ │ ├── thread.c │ │ └── threadlocal.c │ ├── wasm │ ├── includes │ │ ├── GL │ │ │ └── gl.h │ │ └── kore3 │ │ │ └── backend │ │ │ ├── atomic.h │ │ │ ├── event.h │ │ │ ├── mutex.h │ │ │ ├── semaphore.h │ │ │ ├── thread.h │ │ │ ├── threadlocal.h │ │ │ └── video.h │ ├── js-sources │ │ ├── audio-thread.js │ │ ├── index.html │ │ ├── start.js │ │ └── thread_starter.js │ └── sources │ │ ├── audio.c │ │ ├── display.c │ │ ├── event.c │ │ ├── mouse.c │ │ ├── mutex.c │ │ ├── semaphore.c │ │ ├── system.c │ │ ├── thread.c │ │ ├── threadlocal.c │ │ ├── video.c │ │ ├── wasmunit.c │ │ └── window.c │ ├── windows │ ├── includes │ │ └── kore3 │ │ │ └── backend │ │ │ ├── video.h │ │ │ └── windows.h │ ├── libs │ │ ├── .clang-format │ │ ├── directshow │ │ │ └── BaseClasses │ │ │ │ ├── amextra.cpp │ │ │ │ ├── amextra.h │ │ │ │ ├── amfilter.cpp │ │ │ │ ├── amfilter.h │ │ │ │ ├── amvideo.cpp │ │ │ │ ├── arithutil.cpp │ │ │ │ ├── cache.h │ │ │ │ ├── checkbmi.h │ │ │ │ ├── combase.cpp │ │ │ │ ├── combase.h │ │ │ │ ├── cprop.cpp │ │ │ │ ├── cprop.h │ │ │ │ ├── ctlutil.cpp │ │ │ │ ├── ctlutil.h │ │ │ │ ├── ddmm.cpp │ │ │ │ ├── ddmm.h │ │ │ │ ├── dllentry.cpp │ │ │ │ ├── dllsetup.cpp │ │ │ │ ├── dllsetup.h │ │ │ │ ├── dxmperf.h │ │ │ │ ├── fourcc.h │ │ │ │ ├── measure.h │ │ │ │ ├── msgthrd.h │ │ │ │ ├── mtype.cpp │ │ │ │ ├── mtype.h │ │ │ │ ├── outputq.cpp │ │ │ │ ├── outputq.h │ │ │ │ ├── perflog.cpp │ │ │ │ ├── perflog.h │ │ │ │ ├── perfstruct.h │ │ │ │ ├── pstream.cpp │ │ │ │ ├── pstream.h │ │ │ │ ├── pullpin.cpp │ │ │ │ ├── pullpin.h │ │ │ │ ├── refclock.cpp │ │ │ │ ├── refclock.h │ │ │ │ ├── reftime.h │ │ │ │ ├── renbase.cpp │ │ │ │ ├── renbase.h │ │ │ │ ├── schedule.cpp │ │ │ │ ├── schedule.h │ │ │ │ ├── seekpt.cpp │ │ │ │ ├── seekpt.h │ │ │ │ ├── source.cpp │ │ │ │ ├── source.h │ │ │ │ ├── streams.h │ │ │ │ ├── strmctl.cpp │ │ │ │ ├── strmctl.h │ │ │ │ ├── sysclock.cpp │ │ │ │ ├── sysclock.h │ │ │ │ ├── transfrm.cpp │ │ │ │ ├── transfrm.h │ │ │ │ ├── transip.cpp │ │ │ │ ├── transip.h │ │ │ │ ├── videoctl.cpp │ │ │ │ ├── videoctl.h │ │ │ │ ├── vtrans.cpp │ │ │ │ ├── vtrans.h │ │ │ │ ├── winctrl.cpp │ │ │ │ ├── winctrl.h │ │ │ │ ├── winutil.cpp │ │ │ │ ├── winutil.h │ │ │ │ ├── wxdebug.cpp │ │ │ │ ├── wxdebug.h │ │ │ │ ├── wxlist.cpp │ │ │ │ ├── wxlist.h │ │ │ │ ├── wxutil.cpp │ │ │ │ └── wxutil.h │ │ ├── oculus │ │ │ ├── LICENSE.txt │ │ │ ├── LibOVR │ │ │ │ ├── Client │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Windows │ │ │ │ │ │ ├── Oculus.ico │ │ │ │ │ │ └── resource.h │ │ │ │ ├── Include │ │ │ │ │ ├── Extras │ │ │ │ │ │ ├── OVR_CAPI_Util.h │ │ │ │ │ │ ├── OVR_Math.h │ │ │ │ │ │ └── OVR_StereoProjection.h │ │ │ │ │ ├── OVR_CAPI.h │ │ │ │ │ ├── OVR_CAPI_Audio.h │ │ │ │ │ ├── OVR_CAPI_D3D.h │ │ │ │ │ ├── OVR_CAPI_GL.h │ │ │ │ │ ├── OVR_CAPI_Keys.h │ │ │ │ │ ├── OVR_CAPI_Vk.h │ │ │ │ │ ├── OVR_ErrorCode.h │ │ │ │ │ └── OVR_Version.h │ │ │ │ ├── Lib │ │ │ │ │ └── Windows │ │ │ │ │ │ ├── Win32 │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ └── VS2017 │ │ │ │ │ │ │ └── LibOVR.lib │ │ │ │ │ │ └── x64 │ │ │ │ │ │ └── Release │ │ │ │ │ │ └── VS2017 │ │ │ │ │ │ └── LibOVR.lib │ │ │ │ └── Shim │ │ │ │ │ ├── OVR_CAPIShim.c │ │ │ │ │ ├── OVR_CAPI_Prototypes.h │ │ │ │ │ ├── OVR_CAPI_Util.cpp │ │ │ │ │ └── OVR_StereoProjection.cpp │ │ │ ├── LibOVRKernel │ │ │ │ └── Src │ │ │ │ │ ├── GL │ │ │ │ │ ├── CAPI_GLE.cpp │ │ │ │ │ ├── CAPI_GLE.h │ │ │ │ │ └── CAPI_GLE_GL.h │ │ │ │ │ ├── Kernel │ │ │ │ │ ├── OVR_Alg.cpp │ │ │ │ │ ├── OVR_Alg.h │ │ │ │ │ ├── OVR_Allocator.cpp │ │ │ │ │ ├── OVR_Allocator.h │ │ │ │ │ ├── OVR_Array.h │ │ │ │ │ ├── OVR_Atomic.cpp │ │ │ │ │ ├── OVR_Atomic.h │ │ │ │ │ ├── OVR_Callbacks.cpp │ │ │ │ │ ├── OVR_Callbacks.h │ │ │ │ │ ├── OVR_CallbacksInternal.h │ │ │ │ │ ├── OVR_Color.h │ │ │ │ │ ├── OVR_Compiler.h │ │ │ │ │ ├── OVR_ContainerAllocator.h │ │ │ │ │ ├── OVR_DLLHelper.h │ │ │ │ │ ├── OVR_DebugHelp.cpp │ │ │ │ │ ├── OVR_DebugHelp.h │ │ │ │ │ ├── OVR_Delegates.h │ │ │ │ │ ├── OVR_Deque.h │ │ │ │ │ ├── OVR_Error.cpp │ │ │ │ │ ├── OVR_Error.h │ │ │ │ │ ├── OVR_File.cpp │ │ │ │ │ ├── OVR_File.h │ │ │ │ │ ├── OVR_FileFILE.cpp │ │ │ │ │ ├── OVR_Hash.h │ │ │ │ │ ├── OVR_JSON.cpp │ │ │ │ │ ├── OVR_JSON.h │ │ │ │ │ ├── OVR_KeyCodes.h │ │ │ │ │ ├── OVR_List.h │ │ │ │ │ ├── OVR_Lockless.h │ │ │ │ │ ├── OVR_Log.cpp │ │ │ │ │ ├── OVR_Log.h │ │ │ │ │ ├── OVR_NewOverride.inl │ │ │ │ │ ├── OVR_Nullptr.h │ │ │ │ │ ├── OVR_RefCount.cpp │ │ │ │ │ ├── OVR_RefCount.h │ │ │ │ │ ├── OVR_SharedMemory.cpp │ │ │ │ │ ├── OVR_SharedMemory.h │ │ │ │ │ ├── OVR_Std.cpp │ │ │ │ │ ├── OVR_Std.h │ │ │ │ │ ├── OVR_String.cpp │ │ │ │ │ ├── OVR_String.h │ │ │ │ │ ├── OVR_StringHash.h │ │ │ │ │ ├── OVR_String_FormatUtil.cpp │ │ │ │ │ ├── OVR_String_PathUtil.cpp │ │ │ │ │ ├── OVR_SysFile.cpp │ │ │ │ │ ├── OVR_SysFile.h │ │ │ │ │ ├── OVR_System.cpp │ │ │ │ │ ├── OVR_System.h │ │ │ │ │ ├── OVR_Threads.h │ │ │ │ │ ├── OVR_ThreadsPthread.cpp │ │ │ │ │ ├── OVR_ThreadsWinAPI.cpp │ │ │ │ │ ├── OVR_Timer.cpp │ │ │ │ │ ├── OVR_Timer.h │ │ │ │ │ ├── OVR_Types.h │ │ │ │ │ ├── OVR_UTF8Util.cpp │ │ │ │ │ ├── OVR_UTF8Util.h │ │ │ │ │ ├── OVR_Win32_IncludeWindows.h │ │ │ │ │ ├── OVR_mach_exc_OSX.c │ │ │ │ │ ├── OVR_mach_exc_OSX.h │ │ │ │ │ └── WindowsAFunctions.h │ │ │ │ │ ├── Tracing │ │ │ │ │ ├── LibOVREvents.h │ │ │ │ │ ├── LibOVREvents.man │ │ │ │ │ ├── LibOVREvents.rc │ │ │ │ │ ├── LibOVREventsTEMP.BIN │ │ │ │ │ ├── LibOVREvents_MSG00001.bin │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Tracing.h │ │ │ │ │ ├── build.cmd │ │ │ │ │ ├── clean.cmd │ │ │ │ │ └── install.cmd │ │ │ │ │ └── Util │ │ │ │ │ ├── Shaders │ │ │ │ │ ├── Blt_ps.hlsl │ │ │ │ │ ├── Blt_ps_ms2.hlsl │ │ │ │ │ ├── Blt_vs.hlsl │ │ │ │ │ └── GrayBlt_ps.hlsl │ │ │ │ │ ├── Util_D3D11_Blitter.cpp │ │ │ │ │ ├── Util_D3D11_Blitter.h │ │ │ │ │ ├── Util_Direct3D.cpp │ │ │ │ │ ├── Util_Direct3D.h │ │ │ │ │ ├── Util_GL_Blitter.cpp │ │ │ │ │ ├── Util_GL_Blitter.h │ │ │ │ │ ├── Util_ImageWindow.cpp │ │ │ │ │ ├── Util_ImageWindow.h │ │ │ │ │ ├── Util_LongPollThread.cpp │ │ │ │ │ ├── Util_LongPollThread.h │ │ │ │ │ ├── Util_SystemGUI.cpp │ │ │ │ │ ├── Util_SystemGUI.h │ │ │ │ │ ├── Util_SystemInfo.cpp │ │ │ │ │ ├── Util_SystemInfo.h │ │ │ │ │ ├── Util_Watchdog.cpp │ │ │ │ │ └── Util_Watchdog.h │ │ │ └── THIRD_PARTY_NOTICES.txt │ │ └── steamvr │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── headers │ │ │ ├── openvr.h │ │ │ ├── openvr_api.cs │ │ │ ├── openvr_api.json │ │ │ ├── openvr_capi.h │ │ │ └── openvr_driver.h │ │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── ivrclientcore.h │ │ │ ├── json │ │ │ ├── json-forwards.h │ │ │ └── json.h │ │ │ ├── jsoncpp.cpp │ │ │ ├── openvr_api_public.cpp │ │ │ └── vrcommon │ │ │ ├── dirtools_public.cpp │ │ │ ├── dirtools_public.h │ │ │ ├── envvartools_public.cpp │ │ │ ├── envvartools_public.h │ │ │ ├── hmderrors_public.cpp │ │ │ ├── hmderrors_public.h │ │ │ ├── pathtools_public.cpp │ │ │ ├── pathtools_public.h │ │ │ ├── sharedlibtools_public.cpp │ │ │ ├── sharedlibtools_public.h │ │ │ ├── strtools_public.cpp │ │ │ ├── strtools_public.h │ │ │ ├── vrpathregistry_public.cpp │ │ │ └── vrpathregistry_public.h │ └── sources │ │ ├── base.c │ │ ├── display.c │ │ ├── http.c │ │ ├── mouse.c │ │ ├── steamvr.cpp │ │ ├── system.c │ │ ├── video.c │ │ ├── window.c │ │ ├── windows.c │ │ └── windowsunit.c │ └── windowsapp │ ├── includes │ └── kore3 │ │ └── backend │ │ └── video.h │ └── sources │ ├── display.c │ ├── mouse.c │ ├── system.winrt.cpp │ ├── video.c │ ├── window.c │ ├── windowsrtcppunit.winrt.cpp │ └── windowsrtunit.c ├── get_dlc ├── get_dlc.bat ├── get_dlc_dangerously ├── get_dlc_dangerously.bat ├── includes └── kore3 │ ├── 2d │ └── 2d.h │ ├── audio │ └── audio.h │ ├── color.h │ ├── display.h │ ├── error.h │ ├── framebuffer │ └── framebuffer.h │ ├── global.h │ ├── gpu │ ├── api.h │ ├── buffer.h │ ├── commandlist.h │ ├── device.h │ ├── fence.h │ ├── gpu.h │ ├── raytracing.h │ ├── sampler.h │ ├── texture.h │ └── textureformat.h │ ├── image.h │ ├── input │ ├── acceleration.h │ ├── gamepad.h │ ├── keyboard.h │ ├── mouse.h │ ├── pen.h │ ├── rotation.h │ └── surface.h │ ├── io │ ├── filereader.h │ └── filewriter.h │ ├── libs │ ├── .clang-format │ ├── lz4 │ │ ├── lz4.h │ │ ├── lz4frame.h │ │ ├── lz4frame_static.h │ │ ├── lz4hc.h │ │ ├── lz4opt.h │ │ └── xxhash.h │ ├── lz4x.h │ ├── neon_mathfun.h │ ├── offalloc │ │ └── offalloc.h │ ├── sse_mathfun.h │ ├── stb_image.h │ └── stb_vorbis.h │ ├── log.h │ ├── math │ ├── core.h │ ├── matrix.h │ ├── quaternion.h │ ├── random.h │ └── vector.h │ ├── mixer │ ├── mixer.h │ ├── sound.h │ └── soundstream.h │ ├── network │ ├── http.h │ └── socket.h │ ├── simd │ ├── float32x4.h │ ├── int16x8.h │ ├── int32x4.h │ ├── int8x16.h │ ├── type_conversions.h │ ├── types.h │ ├── uint16x8.h │ ├── uint32x4.h │ └── uint8x16.h │ ├── system.h │ ├── threads │ ├── atomic.h │ ├── event.h │ ├── fiber.h │ ├── mutex.h │ ├── semaphore.h │ ├── thread.h │ └── threadlocal.h │ ├── util │ ├── align.h │ ├── cpucompute.h │ └── indexallocator.h │ ├── video.h │ ├── vr │ └── vr.h │ └── window.h ├── kfile.js ├── licenses.txt ├── make ├── make.bat ├── miniclib ├── assert.h ├── errno.h ├── math.c ├── math.h ├── memory.c ├── memory.h ├── stdbool.h ├── stdio.c ├── stdio.h ├── stdlib.c ├── stdlib.h ├── string.c ├── string.h └── time.h ├── msbuild.rsp ├── readme.md ├── shaders ├── g1.kong └── g2.kong ├── sources ├── 2d │ ├── 2d_kore.cpp │ ├── 2d_soft.c │ ├── 2dunit.c │ ├── colored_painter.c │ ├── graphics.c │ ├── image_painter.c │ └── text_painter.c ├── audio │ └── audio.c ├── framebuffer │ └── framebuffer.c ├── gpu │ ├── buffer.c │ ├── commandlist.c │ ├── device.c │ ├── fence.c │ ├── gpu.c │ ├── gpuunit.c │ ├── gpuunit.h │ ├── raytracing.c │ ├── sampler.c │ ├── texture.c │ └── textureformat.c ├── input │ ├── acceleration.c │ ├── gamepad.c │ ├── inputunit.c │ ├── keyboard.c │ ├── mouse.c │ ├── pen.c │ ├── rotation.c │ └── surface.c ├── io │ ├── filereader.c │ ├── filewriter.c │ └── iounit.c ├── libs │ ├── .clang-format │ ├── lz4 │ │ ├── LICENSE │ │ ├── lz4.c │ │ ├── lz4frame.c │ │ ├── lz4hc.c │ │ └── xxhash.c │ └── offalloc │ │ ├── LICENSE │ │ ├── README.md │ │ └── offalloc.c ├── math │ ├── core.c │ ├── mathunit.c │ ├── matrix.c │ └── random.c ├── mixer │ ├── mixer.c │ ├── mixerunit.c │ ├── sound.c │ └── soundstream.c ├── network │ ├── http.c │ ├── networkunit.c │ └── socket.c ├── root │ ├── color.c │ ├── error.c │ ├── image.c │ ├── log.c │ ├── rootcppunit.cpp │ ├── rootunit.c │ ├── system.c │ └── window.c └── util │ ├── align.c │ ├── cpucompute.c │ ├── indexallocator.c │ └── utilunit.c ├── tests ├── display │ ├── deployment │ │ └── keepme │ ├── kfile.js │ └── sources │ │ └── display.c ├── empty │ ├── deployment │ │ └── keepme.txt │ ├── kfile.js │ ├── shaders │ │ └── keepme.txt │ └── sources │ │ └── shader.c ├── input │ ├── deployment │ │ └── keepme.txt │ ├── kfile.js │ └── sources │ │ └── input.c ├── multiwindow │ ├── deployment │ │ └── keepme │ ├── kfile.js │ └── sources │ │ ├── multiwindow.c │ │ ├── shader.frag.glsl │ │ └── shader.vert.glsl ├── shader-g5 │ ├── deployment │ │ └── keepme │ ├── kfile.js │ ├── shaders │ │ ├── shader.frag.glsl │ │ └── shader.vert.glsl │ └── sources │ │ └── shader.c ├── shader │ ├── deployment │ │ └── keepme │ ├── kfile.js │ ├── reference.png │ ├── shaders │ │ ├── shader.frag.glsl │ │ └── shader.vert.glsl │ └── sources │ │ ├── shader.c │ │ └── stb_image_write.h └── simd │ ├── deployment │ └── keepme.txt │ ├── kfile.js │ └── sources │ └── simd.c ├── tools └── platform.sh └── updates.md /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/Doxyfile -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/format.js -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.github/workflows/android-opengl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/android-opengl.yml -------------------------------------------------------------------------------- /.github/workflows/android-vulkan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/android-vulkan.yml -------------------------------------------------------------------------------- /.github/workflows/doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/doxygen.yml -------------------------------------------------------------------------------- /.github/workflows/emscripten-webgl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/emscripten-webgl.yml -------------------------------------------------------------------------------- /.github/workflows/emscripten-webgpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/emscripten-webgpu.yml -------------------------------------------------------------------------------- /.github/workflows/format-v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/format-v2.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/ios-metal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/ios-metal.yml -------------------------------------------------------------------------------- /.github/workflows/ios-opengl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/ios-opengl.yml -------------------------------------------------------------------------------- /.github/workflows/linux-arm-opengl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/linux-arm-opengl.yml -------------------------------------------------------------------------------- /.github/workflows/linux-opengl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/linux-opengl.yml -------------------------------------------------------------------------------- /.github/workflows/linux-vulkan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/linux-vulkan.yml -------------------------------------------------------------------------------- /.github/workflows/macos-metal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/macos-metal.yml -------------------------------------------------------------------------------- /.github/workflows/macos-opengl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/macos-opengl.yml -------------------------------------------------------------------------------- /.github/workflows/update-samples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/update-samples.yml -------------------------------------------------------------------------------- /.github/workflows/update-v3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/update-v3.yml -------------------------------------------------------------------------------- /.github/workflows/uwp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/uwp.yml -------------------------------------------------------------------------------- /.github/workflows/wasm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/wasm.yml -------------------------------------------------------------------------------- /.github/workflows/windows-direct3d11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/windows-direct3d11.yml -------------------------------------------------------------------------------- /.github/workflows/windows-direct3d12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/windows-direct3d12.yml -------------------------------------------------------------------------------- /.github/workflows/windows-opengl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/windows-opengl.yml -------------------------------------------------------------------------------- /.github/workflows/windows-vulkan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.github/workflows/windows-vulkan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/.gitmodules -------------------------------------------------------------------------------- /backends/audio/directsound/sources/DirectSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/audio/directsound/sources/DirectSound.cpp -------------------------------------------------------------------------------- /backends/audio/wasapi/sources/wasapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/audio/wasapi/sources/wasapi.c -------------------------------------------------------------------------------- /backends/audio/wasapi_winrt/sources/WASAPI.winrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/audio/wasapi_winrt/sources/WASAPI.winrt.cpp -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/buffer_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/buffer_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/buffer_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/buffer_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/commandlist_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/commandlist_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/commandlist_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/commandlist_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/descriptorset_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/descriptorset_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/descriptorset_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/descriptorset_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/device_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/device_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/device_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/device_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/fence_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/fence_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/fence_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/fence_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/pipeline_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/pipeline_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/pipeline_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/pipeline_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/raytracing_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/raytracing_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/raytracing_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/raytracing_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/sampler_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/sampler_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/sampler_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/sampler_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/texture_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/texture_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/includes/kore3/direct3d11/texture_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/includes/kore3/direct3d11/texture_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/sources/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/sources/buffer.c -------------------------------------------------------------------------------- /backends/gpu/direct3d11/sources/commandlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/sources/commandlist.c -------------------------------------------------------------------------------- /backends/gpu/direct3d11/sources/d3d11unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/sources/d3d11unit.c -------------------------------------------------------------------------------- /backends/gpu/direct3d11/sources/d3d11unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/sources/d3d11unit.h -------------------------------------------------------------------------------- /backends/gpu/direct3d11/sources/descriptorset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/sources/descriptorset.c -------------------------------------------------------------------------------- /backends/gpu/direct3d11/sources/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/sources/device.c -------------------------------------------------------------------------------- /backends/gpu/direct3d11/sources/fence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/sources/fence.c -------------------------------------------------------------------------------- /backends/gpu/direct3d11/sources/pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/sources/pipeline.c -------------------------------------------------------------------------------- /backends/gpu/direct3d11/sources/raytracing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/sources/raytracing.c -------------------------------------------------------------------------------- /backends/gpu/direct3d11/sources/sampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/sources/sampler.c -------------------------------------------------------------------------------- /backends/gpu/direct3d11/sources/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d11/sources/texture.c -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/buffer_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/buffer_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/buffer_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/buffer_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/commandlist_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/commandlist_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/commandlist_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/commandlist_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/d3d12mini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/d3d12mini.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/descriptorset_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/descriptorset_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/descriptorset_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/descriptorset_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/device_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/device_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/device_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/device_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/fence_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/fence_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/fence_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/fence_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/pipeline_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/pipeline_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/pipeline_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/pipeline_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/raytracing_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/raytracing_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/raytracing_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/raytracing_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/sampler_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/sampler_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/sampler_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/sampler_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/texture_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/texture_functions.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/includes/kore3/direct3d12/texture_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/includes/kore3/direct3d12/texture_structs.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/libs/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /backends/gpu/direct3d12/libs/pix/Include/WinPixEventRuntime/PIXEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/libs/pix/Include/WinPixEventRuntime/PIXEvents.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/libs/pix/Include/WinPixEventRuntime/PIXEventsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/libs/pix/Include/WinPixEventRuntime/PIXEventsCommon.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/libs/pix/Include/WinPixEventRuntime/PIXEventsLegacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/libs/pix/Include/WinPixEventRuntime/PIXEventsLegacy.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/libs/pix/Include/WinPixEventRuntime/pix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/libs/pix/Include/WinPixEventRuntime/pix3.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/libs/pix/Include/WinPixEventRuntime/pix3_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/libs/pix/Include/WinPixEventRuntime/pix3_win.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/libs/pix/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/libs/pix/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /backends/gpu/direct3d12/libs/pix/bin/x64/WinPixEventRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/libs/pix/bin/x64/WinPixEventRuntime.dll -------------------------------------------------------------------------------- /backends/gpu/direct3d12/libs/pix/bin/x64/WinPixEventRuntime.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/libs/pix/bin/x64/WinPixEventRuntime.lib -------------------------------------------------------------------------------- /backends/gpu/direct3d12/libs/pix/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/libs/pix/license.txt -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/buffer.c -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/commandlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/commandlist.c -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/d3d12unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/d3d12unit.c -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/d3d12unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/d3d12unit.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/d3dx12.h -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/descriptorset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/descriptorset.c -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/device.c -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/fence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/fence.c -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/pipeline.c -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/raytracing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/raytracing.c -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/sampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/sampler.c -------------------------------------------------------------------------------- /backends/gpu/direct3d12/sources/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/direct3d12/sources/texture.c -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/buffer_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/buffer_functions.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/buffer_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/buffer_structs.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/commandlist_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/commandlist_functions.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/commandlist_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/commandlist_structs.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/descriptorset_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/descriptorset_functions.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/descriptorset_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/descriptorset_structs.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/device_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/device_functions.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/device_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/device_structs.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/fence_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/fence_functions.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/fence_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/fence_structs.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/pipeline_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/pipeline_functions.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/pipeline_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/pipeline_structs.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/raytracing_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/raytracing_functions.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/raytracing_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/raytracing_structs.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/sampler_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/sampler_functions.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/sampler_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/sampler_structs.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/texture_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/texture_functions.h -------------------------------------------------------------------------------- /backends/gpu/metal/includes/kore3/metal/texture_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/includes/kore3/metal/texture_structs.h -------------------------------------------------------------------------------- /backends/gpu/metal/sources/buffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/sources/buffer.m -------------------------------------------------------------------------------- /backends/gpu/metal/sources/commandlist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/sources/commandlist.m -------------------------------------------------------------------------------- /backends/gpu/metal/sources/descriptorset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/sources/descriptorset.m -------------------------------------------------------------------------------- /backends/gpu/metal/sources/device.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/sources/device.m -------------------------------------------------------------------------------- /backends/gpu/metal/sources/fence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/sources/fence.m -------------------------------------------------------------------------------- /backends/gpu/metal/sources/metalunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/sources/metalunit.h -------------------------------------------------------------------------------- /backends/gpu/metal/sources/metalunit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/sources/metalunit.m -------------------------------------------------------------------------------- /backends/gpu/metal/sources/pipeline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/sources/pipeline.m -------------------------------------------------------------------------------- /backends/gpu/metal/sources/raytracing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/sources/raytracing.m -------------------------------------------------------------------------------- /backends/gpu/metal/sources/sampler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/sources/sampler.m -------------------------------------------------------------------------------- /backends/gpu/metal/sources/texture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/metal/sources/texture.m -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/GL/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/GL/eglew.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/GL/glew.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/GL/glxew.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/GL/wglew.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/buffer_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/buffer_functions.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/buffer_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/buffer_structs.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/commandlist_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/commandlist_functions.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/commandlist_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/commandlist_structs.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/descriptorset_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/descriptorset_functions.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/descriptorset_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/descriptorset_structs.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/device_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/device_functions.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/device_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/device_structs.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/fence_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/fence_functions.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/fence_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/fence_structs.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/pipeline_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/pipeline_functions.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/pipeline_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/pipeline_structs.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/raytracing_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/raytracing_functions.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/raytracing_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/raytracing_structs.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/sampler_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/sampler_functions.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/sampler_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/sampler_structs.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/texture_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/texture_functions.h -------------------------------------------------------------------------------- /backends/gpu/opengl/includes/kore3/opengl/texture_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/includes/kore3/opengl/texture_structs.h -------------------------------------------------------------------------------- /backends/gpu/opengl/libs/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /backends/gpu/opengl/libs/glew/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/libs/glew/glew.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/buffer.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/commandlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/commandlist.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/copy.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/descriptorset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/descriptorset.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/device.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/fence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/fence.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/flip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/flip.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/openglunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/openglunit.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/openglunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/openglunit.h -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/pipeline.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/raytracing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/raytracing.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/sampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/sampler.c -------------------------------------------------------------------------------- /backends/gpu/opengl/sources/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/opengl/sources/texture.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/buffer_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/buffer_functions.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/buffer_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/buffer_structs.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/commandlist_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/commandlist_functions.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/commandlist_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/commandlist_structs.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/descriptorset_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/descriptorset_functions.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/descriptorset_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/descriptorset_structs.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/device_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/device_functions.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/device_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/device_structs.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/fence_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/fence_functions.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/fence_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/fence_structs.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/pipeline_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/pipeline_functions.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/pipeline_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/pipeline_structs.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/raytracing_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/raytracing_functions.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/raytracing_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/raytracing_structs.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/sampler_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/sampler_functions.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/sampler_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/sampler_structs.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/texture_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/texture_functions.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/texture_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/texture_structs.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/includes/kore3/vulkan/vulkanmini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/includes/kore3/vulkan/vulkanmini.h -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/buffer.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/commandlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/commandlist.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/descriptorset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/descriptorset.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/device.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/fence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/fence.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/pipeline.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/raytracing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/raytracing.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/renderpasses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/renderpasses.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/sampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/sampler.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/texture.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/vulkanunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/vulkanunit.c -------------------------------------------------------------------------------- /backends/gpu/vulkan/sources/vulkanunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/vulkan/sources/vulkanunit.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/buffer_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/buffer_functions.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/buffer_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/buffer_structs.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/commandlist_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/commandlist_functions.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/commandlist_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/commandlist_structs.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/descriptorset_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/descriptorset_functions.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/descriptorset_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/descriptorset_structs.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/device_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/device_functions.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/device_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/device_structs.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/fence_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/fence_functions.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/fence_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/fence_structs.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/pipeline_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/pipeline_functions.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/pipeline_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/pipeline_structs.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/raytracing_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/raytracing_functions.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/raytracing_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/raytracing_structs.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/sampler_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/sampler_functions.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/sampler_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/sampler_structs.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/texture_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/texture_functions.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/texture_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/texture_structs.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/includes/kore3/webgpu/webgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/includes/kore3/webgpu/webgpu.h -------------------------------------------------------------------------------- /backends/gpu/webgpu/sources/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/sources/buffer.c -------------------------------------------------------------------------------- /backends/gpu/webgpu/sources/commandlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/sources/commandlist.c -------------------------------------------------------------------------------- /backends/gpu/webgpu/sources/descriptorset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/sources/descriptorset.c -------------------------------------------------------------------------------- /backends/gpu/webgpu/sources/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/sources/device.c -------------------------------------------------------------------------------- /backends/gpu/webgpu/sources/fence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/sources/fence.c -------------------------------------------------------------------------------- /backends/gpu/webgpu/sources/pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/sources/pipeline.c -------------------------------------------------------------------------------- /backends/gpu/webgpu/sources/raytracing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/sources/raytracing.c -------------------------------------------------------------------------------- /backends/gpu/webgpu/sources/sampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/sources/sampler.c -------------------------------------------------------------------------------- /backends/gpu/webgpu/sources/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/sources/texture.c -------------------------------------------------------------------------------- /backends/gpu/webgpu/sources/webgpuunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/sources/webgpuunit.c -------------------------------------------------------------------------------- /backends/gpu/webgpu/sources/webgpuunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/gpu/webgpu/sources/webgpuunit.h -------------------------------------------------------------------------------- /backends/system/android/includes/kore3/backend/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/includes/kore3/backend/android.h -------------------------------------------------------------------------------- /backends/system/android/includes/kore3/backend/android_native_app_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/includes/kore3/backend/android_native_app_glue.h -------------------------------------------------------------------------------- /backends/system/android/includes/kore3/backend/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/includes/kore3/backend/video.h -------------------------------------------------------------------------------- /backends/system/android/includes/kore3/backend/vr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/includes/kore3/backend/vr.h -------------------------------------------------------------------------------- /backends/system/android/java-sources/tech/kore/KoreActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/java-sources/tech/kore/KoreActivity.kt -------------------------------------------------------------------------------- /backends/system/android/java-sources/tech/kore/KoreMoviePlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/java-sources/tech/kore/KoreMoviePlayer.kt -------------------------------------------------------------------------------- /backends/system/android/java-sources/tech/kore/KoreMovieTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/java-sources/tech/kore/KoreMovieTexture.kt -------------------------------------------------------------------------------- /backends/system/android/sources/android_native_app_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/sources/android_native_app_glue.c -------------------------------------------------------------------------------- /backends/system/android/sources/androidunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/sources/androidunit.c -------------------------------------------------------------------------------- /backends/system/android/sources/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/sources/audio.c -------------------------------------------------------------------------------- /backends/system/android/sources/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/sources/display.c -------------------------------------------------------------------------------- /backends/system/android/sources/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/sources/system.c -------------------------------------------------------------------------------- /backends/system/android/sources/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/sources/video.c -------------------------------------------------------------------------------- /backends/system/android/sources/vr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/sources/vr.c -------------------------------------------------------------------------------- /backends/system/android/sources/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/android/sources/window.c -------------------------------------------------------------------------------- /backends/system/apple/includes/kore3/backend/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/apple/includes/kore3/backend/video.h -------------------------------------------------------------------------------- /backends/system/apple/sources/appleunit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/apple/sources/appleunit.m -------------------------------------------------------------------------------- /backends/system/apple/sources/http.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/apple/sources/http.m -------------------------------------------------------------------------------- /backends/system/apple/sources/system.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/apple/sources/system.m -------------------------------------------------------------------------------- /backends/system/apple/sources/thread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/apple/sources/thread.m -------------------------------------------------------------------------------- /backends/system/apple/sources/video.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/apple/sources/video.m -------------------------------------------------------------------------------- /backends/system/emscripten/includes/kore3/backend/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/includes/kore3/backend/atomic.h -------------------------------------------------------------------------------- /backends/system/emscripten/includes/kore3/backend/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/includes/kore3/backend/event.h -------------------------------------------------------------------------------- /backends/system/emscripten/includes/kore3/backend/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/includes/kore3/backend/mutex.h -------------------------------------------------------------------------------- /backends/system/emscripten/includes/kore3/backend/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/includes/kore3/backend/semaphore.h -------------------------------------------------------------------------------- /backends/system/emscripten/includes/kore3/backend/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/includes/kore3/backend/thread.h -------------------------------------------------------------------------------- /backends/system/emscripten/includes/kore3/backend/threadlocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/includes/kore3/backend/threadlocal.h -------------------------------------------------------------------------------- /backends/system/emscripten/includes/kore3/backend/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/includes/kore3/backend/video.h -------------------------------------------------------------------------------- /backends/system/emscripten/sources/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/audio.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/display.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/emscriptenunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/emscriptenunit.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/event.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/gamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/gamepad.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/mouse.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/mutex.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/semaphore.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/system.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/thread.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/threadlocal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/threadlocal.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/video.c -------------------------------------------------------------------------------- /backends/system/emscripten/sources/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/emscripten/sources/window.c -------------------------------------------------------------------------------- /backends/system/freebsd/includes/kore3/backend/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/freebsd/includes/kore3/backend/gamepad.h -------------------------------------------------------------------------------- /backends/system/freebsd/sources/bsdunit.cpp: -------------------------------------------------------------------------------- 1 | #include "gamepad.cpp" 2 | -------------------------------------------------------------------------------- /backends/system/freebsd/sources/gamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/freebsd/sources/gamepad.cpp -------------------------------------------------------------------------------- /backends/system/ios/includes/kore3/backend/GLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/includes/kore3/backend/GLView.h -------------------------------------------------------------------------------- /backends/system/ios/includes/kore3/backend/GLViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/includes/kore3/backend/GLViewController.h -------------------------------------------------------------------------------- /backends/system/ios/includes/kore3/backend/KoreAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/includes/kore3/backend/KoreAppDelegate.h -------------------------------------------------------------------------------- /backends/system/ios/includes/kore3/backend/motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/includes/kore3/backend/motion.h -------------------------------------------------------------------------------- /backends/system/ios/sources/GLView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/GLView.m -------------------------------------------------------------------------------- /backends/system/ios/sources/GLViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/GLViewController.m -------------------------------------------------------------------------------- /backends/system/ios/sources/KoreAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/KoreAppDelegate.m -------------------------------------------------------------------------------- /backends/system/ios/sources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /backends/system/ios/sources/audio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/audio.m -------------------------------------------------------------------------------- /backends/system/ios/sources/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/display.m -------------------------------------------------------------------------------- /backends/system/ios/sources/ios.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/ios.plist -------------------------------------------------------------------------------- /backends/system/ios/sources/iosunit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/iosunit.m -------------------------------------------------------------------------------- /backends/system/ios/sources/motion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/motion.m -------------------------------------------------------------------------------- /backends/system/ios/sources/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/mouse.c -------------------------------------------------------------------------------- /backends/system/ios/sources/system.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/system.m -------------------------------------------------------------------------------- /backends/system/ios/sources/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/ios/sources/window.c -------------------------------------------------------------------------------- /backends/system/linux/includes/kore3/backend/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/includes/kore3/backend/funcs.h -------------------------------------------------------------------------------- /backends/system/linux/includes/kore3/backend/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/includes/kore3/backend/gamepad.h -------------------------------------------------------------------------------- /backends/system/linux/includes/kore3/backend/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/includes/kore3/backend/linux.h -------------------------------------------------------------------------------- /backends/system/linux/includes/kore3/backend/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/includes/kore3/backend/video.h -------------------------------------------------------------------------------- /backends/system/linux/includes/kore3/backend/wayland-funs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/includes/kore3/backend/wayland-funs.h -------------------------------------------------------------------------------- /backends/system/linux/includes/kore3/backend/wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/includes/kore3/backend/wayland.h -------------------------------------------------------------------------------- /backends/system/linux/includes/kore3/backend/x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/includes/kore3/backend/x11.h -------------------------------------------------------------------------------- /backends/system/linux/sources/display-wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/display-wayland.c -------------------------------------------------------------------------------- /backends/system/linux/sources/display-x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/display-x11.c -------------------------------------------------------------------------------- /backends/system/linux/sources/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/display.c -------------------------------------------------------------------------------- /backends/system/linux/sources/gamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/gamepad.c -------------------------------------------------------------------------------- /backends/system/linux/sources/linuxunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/linuxunit.c -------------------------------------------------------------------------------- /backends/system/linux/sources/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/mouse.c -------------------------------------------------------------------------------- /backends/system/linux/sources/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/sound.c -------------------------------------------------------------------------------- /backends/system/linux/sources/system-wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/system-wayland.c -------------------------------------------------------------------------------- /backends/system/linux/sources/system-x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/system-x11.c -------------------------------------------------------------------------------- /backends/system/linux/sources/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/system.c -------------------------------------------------------------------------------- /backends/system/linux/sources/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/video.c -------------------------------------------------------------------------------- /backends/system/linux/sources/window-wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/window-wayland.c -------------------------------------------------------------------------------- /backends/system/linux/sources/window-x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/window-x11.c -------------------------------------------------------------------------------- /backends/system/linux/sources/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/linux/sources/window.c -------------------------------------------------------------------------------- /backends/system/macos/includes/kore3/backend/BasicOpenGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/includes/kore3/backend/BasicOpenGLView.h -------------------------------------------------------------------------------- /backends/system/macos/includes/kore3/backend/HIDGamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/includes/kore3/backend/HIDGamepad.h -------------------------------------------------------------------------------- /backends/system/macos/includes/kore3/backend/HIDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/includes/kore3/backend/HIDManager.h -------------------------------------------------------------------------------- /backends/system/macos/sources/BasicOpenGLView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/sources/BasicOpenGLView.m -------------------------------------------------------------------------------- /backends/system/macos/sources/HIDGamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/sources/HIDGamepad.c -------------------------------------------------------------------------------- /backends/system/macos/sources/HIDManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/sources/HIDManager.c -------------------------------------------------------------------------------- /backends/system/macos/sources/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/sources/audio.c -------------------------------------------------------------------------------- /backends/system/macos/sources/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/sources/display.m -------------------------------------------------------------------------------- /backends/system/macos/sources/mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/sources/mac.plist -------------------------------------------------------------------------------- /backends/system/macos/sources/macosunit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/sources/macosunit.m -------------------------------------------------------------------------------- /backends/system/macos/sources/mouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/sources/mouse.m -------------------------------------------------------------------------------- /backends/system/macos/sources/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/sources/system.c -------------------------------------------------------------------------------- /backends/system/macos/sources/system.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/sources/system.m -------------------------------------------------------------------------------- /backends/system/macos/sources/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/macos/sources/window.c -------------------------------------------------------------------------------- /backends/system/microsoft/includes/kore3/backend/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/includes/kore3/backend/atomic.h -------------------------------------------------------------------------------- /backends/system/microsoft/includes/kore3/backend/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/includes/kore3/backend/event.h -------------------------------------------------------------------------------- /backends/system/microsoft/includes/kore3/backend/fiber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/includes/kore3/backend/fiber.h -------------------------------------------------------------------------------- /backends/system/microsoft/includes/kore3/backend/microsoft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/includes/kore3/backend/microsoft.h -------------------------------------------------------------------------------- /backends/system/microsoft/includes/kore3/backend/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/includes/kore3/backend/mutex.h -------------------------------------------------------------------------------- /backends/system/microsoft/includes/kore3/backend/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/includes/kore3/backend/semaphore.h -------------------------------------------------------------------------------- /backends/system/microsoft/includes/kore3/backend/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/includes/kore3/backend/thread.h -------------------------------------------------------------------------------- /backends/system/microsoft/includes/kore3/backend/threadlocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/includes/kore3/backend/threadlocal.h -------------------------------------------------------------------------------- /backends/system/microsoft/includes/kore3/backend/windowsmini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/includes/kore3/backend/windowsmini.h -------------------------------------------------------------------------------- /backends/system/microsoft/sources/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/sources/event.c -------------------------------------------------------------------------------- /backends/system/microsoft/sources/fiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/sources/fiber.c -------------------------------------------------------------------------------- /backends/system/microsoft/sources/microsoft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/sources/microsoft.c -------------------------------------------------------------------------------- /backends/system/microsoft/sources/microsoftunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/sources/microsoftunit.c -------------------------------------------------------------------------------- /backends/system/microsoft/sources/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/sources/mutex.c -------------------------------------------------------------------------------- /backends/system/microsoft/sources/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/sources/semaphore.c -------------------------------------------------------------------------------- /backends/system/microsoft/sources/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/sources/thread.c -------------------------------------------------------------------------------- /backends/system/microsoft/sources/threadlocal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/microsoft/sources/threadlocal.c -------------------------------------------------------------------------------- /backends/system/posix/includes/kore3/backend/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/includes/kore3/backend/atomic.h -------------------------------------------------------------------------------- /backends/system/posix/includes/kore3/backend/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/includes/kore3/backend/event.h -------------------------------------------------------------------------------- /backends/system/posix/includes/kore3/backend/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/includes/kore3/backend/mutex.h -------------------------------------------------------------------------------- /backends/system/posix/includes/kore3/backend/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/includes/kore3/backend/semaphore.h -------------------------------------------------------------------------------- /backends/system/posix/includes/kore3/backend/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/includes/kore3/backend/thread.h -------------------------------------------------------------------------------- /backends/system/posix/includes/kore3/backend/threadlocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/includes/kore3/backend/threadlocal.h -------------------------------------------------------------------------------- /backends/system/posix/sources/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/sources/event.c -------------------------------------------------------------------------------- /backends/system/posix/sources/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/sources/mutex.c -------------------------------------------------------------------------------- /backends/system/posix/sources/posixunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/sources/posixunit.c -------------------------------------------------------------------------------- /backends/system/posix/sources/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/sources/semaphore.c -------------------------------------------------------------------------------- /backends/system/posix/sources/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/sources/thread.c -------------------------------------------------------------------------------- /backends/system/posix/sources/threadlocal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/posix/sources/threadlocal.c -------------------------------------------------------------------------------- /backends/system/wasm/includes/GL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/includes/GL/gl.h -------------------------------------------------------------------------------- /backends/system/wasm/includes/kore3/backend/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/includes/kore3/backend/atomic.h -------------------------------------------------------------------------------- /backends/system/wasm/includes/kore3/backend/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/includes/kore3/backend/event.h -------------------------------------------------------------------------------- /backends/system/wasm/includes/kore3/backend/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/includes/kore3/backend/mutex.h -------------------------------------------------------------------------------- /backends/system/wasm/includes/kore3/backend/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/includes/kore3/backend/semaphore.h -------------------------------------------------------------------------------- /backends/system/wasm/includes/kore3/backend/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/includes/kore3/backend/thread.h -------------------------------------------------------------------------------- /backends/system/wasm/includes/kore3/backend/threadlocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/includes/kore3/backend/threadlocal.h -------------------------------------------------------------------------------- /backends/system/wasm/includes/kore3/backend/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/includes/kore3/backend/video.h -------------------------------------------------------------------------------- /backends/system/wasm/js-sources/audio-thread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/js-sources/audio-thread.js -------------------------------------------------------------------------------- /backends/system/wasm/js-sources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/js-sources/index.html -------------------------------------------------------------------------------- /backends/system/wasm/js-sources/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/js-sources/start.js -------------------------------------------------------------------------------- /backends/system/wasm/js-sources/thread_starter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/js-sources/thread_starter.js -------------------------------------------------------------------------------- /backends/system/wasm/sources/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/audio.c -------------------------------------------------------------------------------- /backends/system/wasm/sources/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/display.c -------------------------------------------------------------------------------- /backends/system/wasm/sources/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/event.c -------------------------------------------------------------------------------- /backends/system/wasm/sources/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/mouse.c -------------------------------------------------------------------------------- /backends/system/wasm/sources/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/mutex.c -------------------------------------------------------------------------------- /backends/system/wasm/sources/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/semaphore.c -------------------------------------------------------------------------------- /backends/system/wasm/sources/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/system.c -------------------------------------------------------------------------------- /backends/system/wasm/sources/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/thread.c -------------------------------------------------------------------------------- /backends/system/wasm/sources/threadlocal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/threadlocal.c -------------------------------------------------------------------------------- /backends/system/wasm/sources/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/video.c -------------------------------------------------------------------------------- /backends/system/wasm/sources/wasmunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/wasmunit.c -------------------------------------------------------------------------------- /backends/system/wasm/sources/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/wasm/sources/window.c -------------------------------------------------------------------------------- /backends/system/windows/includes/kore3/backend/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/includes/kore3/backend/video.h -------------------------------------------------------------------------------- /backends/system/windows/includes/kore3/backend/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/includes/kore3/backend/windows.h -------------------------------------------------------------------------------- /backends/system/windows/libs/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/amextra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/amextra.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/amextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/amextra.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/amfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/amfilter.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/amfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/amfilter.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/amvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/amvideo.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/arithutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/arithutil.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/cache.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/checkbmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/checkbmi.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/combase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/combase.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/combase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/combase.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/cprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/cprop.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/cprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/cprop.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/ctlutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/ctlutil.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/ctlutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/ctlutil.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/ddmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/ddmm.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/ddmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/ddmm.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/dllentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/dllentry.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/dllsetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/dllsetup.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/dllsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/dllsetup.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/dxmperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/dxmperf.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/fourcc.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/measure.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/msgthrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/msgthrd.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/mtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/mtype.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/mtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/mtype.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/outputq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/outputq.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/outputq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/outputq.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/perflog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/perflog.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/perflog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/perflog.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/perfstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/perfstruct.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/pstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/pstream.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/pstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/pstream.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/pullpin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/pullpin.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/pullpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/pullpin.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/refclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/refclock.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/refclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/refclock.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/reftime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/reftime.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/renbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/renbase.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/renbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/renbase.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/schedule.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/schedule.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/seekpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/seekpt.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/seekpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/seekpt.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/source.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/source.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/streams.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/strmctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/strmctl.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/strmctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/strmctl.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/sysclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/sysclock.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/sysclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/sysclock.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/transfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/transfrm.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/transfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/transfrm.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/transip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/transip.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/transip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/transip.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/videoctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/videoctl.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/videoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/videoctl.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/vtrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/vtrans.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/vtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/vtrans.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/winctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/winctrl.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/winctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/winctrl.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/winutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/winutil.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/winutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/winutil.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/wxdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/wxdebug.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/wxdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/wxdebug.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/wxlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/wxlist.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/wxlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/wxlist.h -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/wxutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/wxutil.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/directshow/BaseClasses/wxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/directshow/BaseClasses/wxutil.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LICENSE.txt -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Client/Resources/Windows/Oculus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Client/Resources/Windows/Oculus.ico -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Client/Resources/Windows/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Include/Extras/OVR_CAPI_Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Include/Extras/OVR_CAPI_Util.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Include/Extras/OVR_Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Include/Extras/OVR_Math.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Include/Extras/OVR_StereoProjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Include/Extras/OVR_StereoProjection.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI_Audio.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI_D3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI_D3D.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI_GL.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI_Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI_Keys.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI_Vk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Include/OVR_CAPI_Vk.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Include/OVR_ErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Include/OVR_ErrorCode.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Include/OVR_Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Include/OVR_Version.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Shim/OVR_CAPIShim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Shim/OVR_CAPIShim.c -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Shim/OVR_CAPI_Prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Shim/OVR_CAPI_Prototypes.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Shim/OVR_CAPI_Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Shim/OVR_CAPI_Util.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVR/Shim/OVR_StereoProjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVR/Shim/OVR_StereoProjection.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/GL/CAPI_GLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/GL/CAPI_GLE.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/GL/CAPI_GLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/GL/CAPI_GLE.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/GL/CAPI_GLE_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/GL/CAPI_GLE_GL.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Alg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Alg.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Alg.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Allocator.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Allocator.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Array.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Atomic.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Atomic.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Callbacks.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Callbacks.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Color.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Compiler.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_DLLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_DLLHelper.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_DebugHelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_DebugHelp.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_DebugHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_DebugHelp.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Delegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Delegates.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Deque.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Error.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Error.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_File.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_File.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_FileFILE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_FileFILE.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Hash.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_JSON.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_JSON.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_KeyCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_KeyCodes.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_List.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Lockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Lockless.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Log.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Log.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_NewOverride.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_NewOverride.inl -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Nullptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Nullptr.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_RefCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_RefCount.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_RefCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_RefCount.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_SharedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_SharedMemory.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_SharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_SharedMemory.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Std.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Std.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Std.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_String.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_String.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_StringHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_StringHash.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_SysFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_SysFile.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_SysFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_SysFile.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_System.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_System.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Threads.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_ThreadsWinAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_ThreadsWinAPI.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Timer.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Timer.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_Types.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_UTF8Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_UTF8Util.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_UTF8Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_UTF8Util.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_mach_exc_OSX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_mach_exc_OSX.c -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_mach_exc_OSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/OVR_mach_exc_OSX.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/WindowsAFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Kernel/WindowsAFunctions.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/LibOVREvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/LibOVREvents.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/LibOVREvents.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/LibOVREvents.man -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/LibOVREvents.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/LibOVREvents.rc -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/LibOVREventsTEMP.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/LibOVREventsTEMP.BIN -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/README.md -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/Tracing.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/build.cmd -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/clean.cmd -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Tracing/install.cmd -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Shaders/Blt_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Shaders/Blt_ps.hlsl -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Shaders/Blt_ps_ms2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Shaders/Blt_ps_ms2.hlsl -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Shaders/Blt_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Shaders/Blt_vs.hlsl -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Shaders/GrayBlt_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Shaders/GrayBlt_ps.hlsl -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_D3D11_Blitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_D3D11_Blitter.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_D3D11_Blitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_D3D11_Blitter.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_Direct3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_Direct3D.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_Direct3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_Direct3D.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_GL_Blitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_GL_Blitter.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_GL_Blitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_GL_Blitter.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_ImageWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_ImageWindow.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_ImageWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_ImageWindow.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_LongPollThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_LongPollThread.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_LongPollThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_LongPollThread.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_SystemGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_SystemGUI.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_SystemGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_SystemGUI.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_SystemInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_SystemInfo.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_SystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_SystemInfo.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_Watchdog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_Watchdog.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_Watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/LibOVRKernel/Src/Util/Util_Watchdog.h -------------------------------------------------------------------------------- /backends/system/windows/libs/oculus/THIRD_PARTY_NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/oculus/THIRD_PARTY_NOTICES.txt -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/LICENSE -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/README.md -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/headers/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/headers/openvr.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/headers/openvr_api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/headers/openvr_api.cs -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/headers/openvr_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/headers/openvr_api.json -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/headers/openvr_capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/headers/openvr_capi.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/headers/openvr_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/headers/openvr_driver.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/CMakeLists.txt -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/README -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/ivrclientcore.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/json/json-forwards.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/json/json.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/jsoncpp.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/openvr_api_public.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/openvr_api_public.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/dirtools_public.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/dirtools_public.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/dirtools_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/dirtools_public.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/envvartools_public.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/envvartools_public.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/envvartools_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/envvartools_public.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/hmderrors_public.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/hmderrors_public.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/hmderrors_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/hmderrors_public.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/pathtools_public.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/pathtools_public.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/pathtools_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/pathtools_public.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/sharedlibtools_public.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/sharedlibtools_public.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/sharedlibtools_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/sharedlibtools_public.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/strtools_public.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/strtools_public.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/strtools_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/strtools_public.h -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/vrpathregistry_public.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/vrpathregistry_public.cpp -------------------------------------------------------------------------------- /backends/system/windows/libs/steamvr/src/vrcommon/vrpathregistry_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/libs/steamvr/src/vrcommon/vrpathregistry_public.h -------------------------------------------------------------------------------- /backends/system/windows/sources/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/sources/base.c -------------------------------------------------------------------------------- /backends/system/windows/sources/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/sources/display.c -------------------------------------------------------------------------------- /backends/system/windows/sources/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/sources/http.c -------------------------------------------------------------------------------- /backends/system/windows/sources/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/sources/mouse.c -------------------------------------------------------------------------------- /backends/system/windows/sources/steamvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/sources/steamvr.cpp -------------------------------------------------------------------------------- /backends/system/windows/sources/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/sources/system.c -------------------------------------------------------------------------------- /backends/system/windows/sources/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/sources/video.c -------------------------------------------------------------------------------- /backends/system/windows/sources/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/sources/window.c -------------------------------------------------------------------------------- /backends/system/windows/sources/windows.c: -------------------------------------------------------------------------------- 1 | #include "windows.h" 2 | -------------------------------------------------------------------------------- /backends/system/windows/sources/windowsunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windows/sources/windowsunit.c -------------------------------------------------------------------------------- /backends/system/windowsapp/includes/kore3/backend/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windowsapp/includes/kore3/backend/video.h -------------------------------------------------------------------------------- /backends/system/windowsapp/sources/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windowsapp/sources/display.c -------------------------------------------------------------------------------- /backends/system/windowsapp/sources/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windowsapp/sources/mouse.c -------------------------------------------------------------------------------- /backends/system/windowsapp/sources/system.winrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windowsapp/sources/system.winrt.cpp -------------------------------------------------------------------------------- /backends/system/windowsapp/sources/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windowsapp/sources/video.c -------------------------------------------------------------------------------- /backends/system/windowsapp/sources/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windowsapp/sources/window.c -------------------------------------------------------------------------------- /backends/system/windowsapp/sources/windowsrtcppunit.winrt.cpp: -------------------------------------------------------------------------------- 1 | #include "system.winrt.cpp" 2 | -------------------------------------------------------------------------------- /backends/system/windowsapp/sources/windowsrtunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/backends/system/windowsapp/sources/windowsrtunit.c -------------------------------------------------------------------------------- /get_dlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/get_dlc -------------------------------------------------------------------------------- /get_dlc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/get_dlc.bat -------------------------------------------------------------------------------- /get_dlc_dangerously: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/get_dlc_dangerously -------------------------------------------------------------------------------- /get_dlc_dangerously.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/get_dlc_dangerously.bat -------------------------------------------------------------------------------- /includes/kore3/2d/2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/2d/2d.h -------------------------------------------------------------------------------- /includes/kore3/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/audio/audio.h -------------------------------------------------------------------------------- /includes/kore3/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/color.h -------------------------------------------------------------------------------- /includes/kore3/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/display.h -------------------------------------------------------------------------------- /includes/kore3/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/error.h -------------------------------------------------------------------------------- /includes/kore3/framebuffer/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/framebuffer/framebuffer.h -------------------------------------------------------------------------------- /includes/kore3/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/global.h -------------------------------------------------------------------------------- /includes/kore3/gpu/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/gpu/api.h -------------------------------------------------------------------------------- /includes/kore3/gpu/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/gpu/buffer.h -------------------------------------------------------------------------------- /includes/kore3/gpu/commandlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/gpu/commandlist.h -------------------------------------------------------------------------------- /includes/kore3/gpu/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/gpu/device.h -------------------------------------------------------------------------------- /includes/kore3/gpu/fence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/gpu/fence.h -------------------------------------------------------------------------------- /includes/kore3/gpu/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/gpu/gpu.h -------------------------------------------------------------------------------- /includes/kore3/gpu/raytracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/gpu/raytracing.h -------------------------------------------------------------------------------- /includes/kore3/gpu/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/gpu/sampler.h -------------------------------------------------------------------------------- /includes/kore3/gpu/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/gpu/texture.h -------------------------------------------------------------------------------- /includes/kore3/gpu/textureformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/gpu/textureformat.h -------------------------------------------------------------------------------- /includes/kore3/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/image.h -------------------------------------------------------------------------------- /includes/kore3/input/acceleration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/input/acceleration.h -------------------------------------------------------------------------------- /includes/kore3/input/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/input/gamepad.h -------------------------------------------------------------------------------- /includes/kore3/input/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/input/keyboard.h -------------------------------------------------------------------------------- /includes/kore3/input/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/input/mouse.h -------------------------------------------------------------------------------- /includes/kore3/input/pen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/input/pen.h -------------------------------------------------------------------------------- /includes/kore3/input/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/input/rotation.h -------------------------------------------------------------------------------- /includes/kore3/input/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/input/surface.h -------------------------------------------------------------------------------- /includes/kore3/io/filereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/io/filereader.h -------------------------------------------------------------------------------- /includes/kore3/io/filewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/io/filewriter.h -------------------------------------------------------------------------------- /includes/kore3/libs/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /includes/kore3/libs/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/lz4/lz4.h -------------------------------------------------------------------------------- /includes/kore3/libs/lz4/lz4frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/lz4/lz4frame.h -------------------------------------------------------------------------------- /includes/kore3/libs/lz4/lz4frame_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/lz4/lz4frame_static.h -------------------------------------------------------------------------------- /includes/kore3/libs/lz4/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/lz4/lz4hc.h -------------------------------------------------------------------------------- /includes/kore3/libs/lz4/lz4opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/lz4/lz4opt.h -------------------------------------------------------------------------------- /includes/kore3/libs/lz4/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/lz4/xxhash.h -------------------------------------------------------------------------------- /includes/kore3/libs/lz4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/lz4x.h -------------------------------------------------------------------------------- /includes/kore3/libs/neon_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/neon_mathfun.h -------------------------------------------------------------------------------- /includes/kore3/libs/offalloc/offalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/offalloc/offalloc.h -------------------------------------------------------------------------------- /includes/kore3/libs/sse_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/sse_mathfun.h -------------------------------------------------------------------------------- /includes/kore3/libs/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/stb_image.h -------------------------------------------------------------------------------- /includes/kore3/libs/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/libs/stb_vorbis.h -------------------------------------------------------------------------------- /includes/kore3/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/log.h -------------------------------------------------------------------------------- /includes/kore3/math/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/math/core.h -------------------------------------------------------------------------------- /includes/kore3/math/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/math/matrix.h -------------------------------------------------------------------------------- /includes/kore3/math/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/math/quaternion.h -------------------------------------------------------------------------------- /includes/kore3/math/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/math/random.h -------------------------------------------------------------------------------- /includes/kore3/math/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/math/vector.h -------------------------------------------------------------------------------- /includes/kore3/mixer/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/mixer/mixer.h -------------------------------------------------------------------------------- /includes/kore3/mixer/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/mixer/sound.h -------------------------------------------------------------------------------- /includes/kore3/mixer/soundstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/mixer/soundstream.h -------------------------------------------------------------------------------- /includes/kore3/network/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/network/http.h -------------------------------------------------------------------------------- /includes/kore3/network/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/network/socket.h -------------------------------------------------------------------------------- /includes/kore3/simd/float32x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/simd/float32x4.h -------------------------------------------------------------------------------- /includes/kore3/simd/int16x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/simd/int16x8.h -------------------------------------------------------------------------------- /includes/kore3/simd/int32x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/simd/int32x4.h -------------------------------------------------------------------------------- /includes/kore3/simd/int8x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/simd/int8x16.h -------------------------------------------------------------------------------- /includes/kore3/simd/type_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/simd/type_conversions.h -------------------------------------------------------------------------------- /includes/kore3/simd/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/simd/types.h -------------------------------------------------------------------------------- /includes/kore3/simd/uint16x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/simd/uint16x8.h -------------------------------------------------------------------------------- /includes/kore3/simd/uint32x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/simd/uint32x4.h -------------------------------------------------------------------------------- /includes/kore3/simd/uint8x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/simd/uint8x16.h -------------------------------------------------------------------------------- /includes/kore3/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/system.h -------------------------------------------------------------------------------- /includes/kore3/threads/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/threads/atomic.h -------------------------------------------------------------------------------- /includes/kore3/threads/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/threads/event.h -------------------------------------------------------------------------------- /includes/kore3/threads/fiber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/threads/fiber.h -------------------------------------------------------------------------------- /includes/kore3/threads/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/threads/mutex.h -------------------------------------------------------------------------------- /includes/kore3/threads/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/threads/semaphore.h -------------------------------------------------------------------------------- /includes/kore3/threads/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/threads/thread.h -------------------------------------------------------------------------------- /includes/kore3/threads/threadlocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/threads/threadlocal.h -------------------------------------------------------------------------------- /includes/kore3/util/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/util/align.h -------------------------------------------------------------------------------- /includes/kore3/util/cpucompute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/util/cpucompute.h -------------------------------------------------------------------------------- /includes/kore3/util/indexallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/util/indexallocator.h -------------------------------------------------------------------------------- /includes/kore3/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/video.h -------------------------------------------------------------------------------- /includes/kore3/vr/vr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/vr/vr.h -------------------------------------------------------------------------------- /includes/kore3/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/includes/kore3/window.h -------------------------------------------------------------------------------- /kfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/kfile.js -------------------------------------------------------------------------------- /licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/licenses.txt -------------------------------------------------------------------------------- /make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/make -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/make.bat -------------------------------------------------------------------------------- /miniclib/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/assert.h -------------------------------------------------------------------------------- /miniclib/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/errno.h -------------------------------------------------------------------------------- /miniclib/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/math.c -------------------------------------------------------------------------------- /miniclib/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/math.h -------------------------------------------------------------------------------- /miniclib/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/memory.c -------------------------------------------------------------------------------- /miniclib/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/memory.h -------------------------------------------------------------------------------- /miniclib/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/stdbool.h -------------------------------------------------------------------------------- /miniclib/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/stdio.c -------------------------------------------------------------------------------- /miniclib/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/stdio.h -------------------------------------------------------------------------------- /miniclib/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/stdlib.c -------------------------------------------------------------------------------- /miniclib/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/stdlib.h -------------------------------------------------------------------------------- /miniclib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/string.c -------------------------------------------------------------------------------- /miniclib/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/string.h -------------------------------------------------------------------------------- /miniclib/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/miniclib/time.h -------------------------------------------------------------------------------- /msbuild.rsp: -------------------------------------------------------------------------------- 1 | /p:AppxPackageSigningEnabled=false 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/readme.md -------------------------------------------------------------------------------- /shaders/g1.kong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/shaders/g1.kong -------------------------------------------------------------------------------- /shaders/g2.kong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/shaders/g2.kong -------------------------------------------------------------------------------- /sources/2d/2d_kore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/2d/2d_kore.cpp -------------------------------------------------------------------------------- /sources/2d/2d_soft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/2d/2d_soft.c -------------------------------------------------------------------------------- /sources/2d/2dunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/2d/2dunit.c -------------------------------------------------------------------------------- /sources/2d/colored_painter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/2d/colored_painter.c -------------------------------------------------------------------------------- /sources/2d/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/2d/graphics.c -------------------------------------------------------------------------------- /sources/2d/image_painter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/2d/image_painter.c -------------------------------------------------------------------------------- /sources/2d/text_painter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/2d/text_painter.c -------------------------------------------------------------------------------- /sources/audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/audio/audio.c -------------------------------------------------------------------------------- /sources/framebuffer/framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/framebuffer/framebuffer.c -------------------------------------------------------------------------------- /sources/gpu/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/gpu/buffer.c -------------------------------------------------------------------------------- /sources/gpu/commandlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/gpu/commandlist.c -------------------------------------------------------------------------------- /sources/gpu/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/gpu/device.c -------------------------------------------------------------------------------- /sources/gpu/fence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/gpu/fence.c -------------------------------------------------------------------------------- /sources/gpu/gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/gpu/gpu.c -------------------------------------------------------------------------------- /sources/gpu/gpuunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/gpu/gpuunit.c -------------------------------------------------------------------------------- /sources/gpu/gpuunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/gpu/gpuunit.h -------------------------------------------------------------------------------- /sources/gpu/raytracing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/gpu/raytracing.c -------------------------------------------------------------------------------- /sources/gpu/sampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/gpu/sampler.c -------------------------------------------------------------------------------- /sources/gpu/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/gpu/texture.c -------------------------------------------------------------------------------- /sources/gpu/textureformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/gpu/textureformat.c -------------------------------------------------------------------------------- /sources/input/acceleration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/input/acceleration.c -------------------------------------------------------------------------------- /sources/input/gamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/input/gamepad.c -------------------------------------------------------------------------------- /sources/input/inputunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/input/inputunit.c -------------------------------------------------------------------------------- /sources/input/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/input/keyboard.c -------------------------------------------------------------------------------- /sources/input/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/input/mouse.c -------------------------------------------------------------------------------- /sources/input/pen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/input/pen.c -------------------------------------------------------------------------------- /sources/input/rotation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/input/rotation.c -------------------------------------------------------------------------------- /sources/input/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/input/surface.c -------------------------------------------------------------------------------- /sources/io/filereader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/io/filereader.c -------------------------------------------------------------------------------- /sources/io/filewriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/io/filewriter.c -------------------------------------------------------------------------------- /sources/io/iounit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/io/iounit.c -------------------------------------------------------------------------------- /sources/libs/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /sources/libs/lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/libs/lz4/LICENSE -------------------------------------------------------------------------------- /sources/libs/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/libs/lz4/lz4.c -------------------------------------------------------------------------------- /sources/libs/lz4/lz4frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/libs/lz4/lz4frame.c -------------------------------------------------------------------------------- /sources/libs/lz4/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/libs/lz4/lz4hc.c -------------------------------------------------------------------------------- /sources/libs/lz4/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/libs/lz4/xxhash.c -------------------------------------------------------------------------------- /sources/libs/offalloc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/libs/offalloc/LICENSE -------------------------------------------------------------------------------- /sources/libs/offalloc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/libs/offalloc/README.md -------------------------------------------------------------------------------- /sources/libs/offalloc/offalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/libs/offalloc/offalloc.c -------------------------------------------------------------------------------- /sources/math/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/math/core.c -------------------------------------------------------------------------------- /sources/math/mathunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/math/mathunit.c -------------------------------------------------------------------------------- /sources/math/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/math/matrix.c -------------------------------------------------------------------------------- /sources/math/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/math/random.c -------------------------------------------------------------------------------- /sources/mixer/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/mixer/mixer.c -------------------------------------------------------------------------------- /sources/mixer/mixerunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/mixer/mixerunit.c -------------------------------------------------------------------------------- /sources/mixer/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/mixer/sound.c -------------------------------------------------------------------------------- /sources/mixer/soundstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/mixer/soundstream.c -------------------------------------------------------------------------------- /sources/network/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/network/http.c -------------------------------------------------------------------------------- /sources/network/networkunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/network/networkunit.c -------------------------------------------------------------------------------- /sources/network/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/network/socket.c -------------------------------------------------------------------------------- /sources/root/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/root/color.c -------------------------------------------------------------------------------- /sources/root/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/root/error.c -------------------------------------------------------------------------------- /sources/root/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/root/image.c -------------------------------------------------------------------------------- /sources/root/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/root/log.c -------------------------------------------------------------------------------- /sources/root/rootcppunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/root/rootcppunit.cpp -------------------------------------------------------------------------------- /sources/root/rootunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/root/rootunit.c -------------------------------------------------------------------------------- /sources/root/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/root/system.c -------------------------------------------------------------------------------- /sources/root/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/root/window.c -------------------------------------------------------------------------------- /sources/util/align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/util/align.c -------------------------------------------------------------------------------- /sources/util/cpucompute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/util/cpucompute.c -------------------------------------------------------------------------------- /sources/util/indexallocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/util/indexallocator.c -------------------------------------------------------------------------------- /sources/util/utilunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/sources/util/utilunit.c -------------------------------------------------------------------------------- /tests/display/deployment/keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/display/kfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/display/kfile.js -------------------------------------------------------------------------------- /tests/display/sources/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/display/sources/display.c -------------------------------------------------------------------------------- /tests/empty/deployment/keepme.txt: -------------------------------------------------------------------------------- 1 | Don't read me, but please keep me. -------------------------------------------------------------------------------- /tests/empty/kfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/empty/kfile.js -------------------------------------------------------------------------------- /tests/empty/shaders/keepme.txt: -------------------------------------------------------------------------------- 1 | Don't read me, but please keep me. -------------------------------------------------------------------------------- /tests/empty/sources/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/empty/sources/shader.c -------------------------------------------------------------------------------- /tests/input/deployment/keepme.txt: -------------------------------------------------------------------------------- 1 | Don't read me, but please keep me. -------------------------------------------------------------------------------- /tests/input/kfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/input/kfile.js -------------------------------------------------------------------------------- /tests/input/sources/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/input/sources/input.c -------------------------------------------------------------------------------- /tests/multiwindow/deployment/keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/multiwindow/kfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/multiwindow/kfile.js -------------------------------------------------------------------------------- /tests/multiwindow/sources/multiwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/multiwindow/sources/multiwindow.c -------------------------------------------------------------------------------- /tests/multiwindow/sources/shader.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/multiwindow/sources/shader.frag.glsl -------------------------------------------------------------------------------- /tests/multiwindow/sources/shader.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/multiwindow/sources/shader.vert.glsl -------------------------------------------------------------------------------- /tests/shader-g5/deployment/keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/shader-g5/kfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/shader-g5/kfile.js -------------------------------------------------------------------------------- /tests/shader-g5/shaders/shader.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/shader-g5/shaders/shader.frag.glsl -------------------------------------------------------------------------------- /tests/shader-g5/shaders/shader.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/shader-g5/shaders/shader.vert.glsl -------------------------------------------------------------------------------- /tests/shader-g5/sources/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/shader-g5/sources/shader.c -------------------------------------------------------------------------------- /tests/shader/deployment/keepme: -------------------------------------------------------------------------------- 1 | Don't read me, just keep me. -------------------------------------------------------------------------------- /tests/shader/kfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/shader/kfile.js -------------------------------------------------------------------------------- /tests/shader/reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/shader/reference.png -------------------------------------------------------------------------------- /tests/shader/shaders/shader.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/shader/shaders/shader.frag.glsl -------------------------------------------------------------------------------- /tests/shader/shaders/shader.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/shader/shaders/shader.vert.glsl -------------------------------------------------------------------------------- /tests/shader/sources/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/shader/sources/shader.c -------------------------------------------------------------------------------- /tests/shader/sources/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/shader/sources/stb_image_write.h -------------------------------------------------------------------------------- /tests/simd/deployment/keepme.txt: -------------------------------------------------------------------------------- 1 | Don't read me, but please keep me. -------------------------------------------------------------------------------- /tests/simd/kfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/simd/kfile.js -------------------------------------------------------------------------------- /tests/simd/sources/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tests/simd/sources/simd.c -------------------------------------------------------------------------------- /tools/platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/tools/platform.sh -------------------------------------------------------------------------------- /updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/Kore/HEAD/updates.md --------------------------------------------------------------------------------