koffi 0.9.6 → 0.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +661 -0
- package/README.md +195 -162
- package/package.json +36 -19
- package/src/call.hh +28 -27
- package/src/call_arm32.cc +498 -514
- package/src/call_arm32_fwd.S +108 -108
- package/src/call_arm64.cc +482 -497
- package/src/call_arm64_fwd.S +110 -110
- package/src/call_x64_sysv.cc +463 -477
- package/src/call_x64_sysv_fwd.S +131 -131
- package/src/call_x64_win.cc +240 -243
- package/src/call_x64_win_fwd.asm +105 -105
- package/src/call_x86.cc +246 -259
- package/src/call_x86_fwd.S +48 -48
- package/src/call_x86_fwd.asm +50 -50
- package/src/ffi.cc +506 -504
- package/src/ffi.hh +142 -136
- package/src/util.cc +330 -297
- package/src/util.hh +164 -80
- package/test/qemu/.gitkeep +0 -0
- package/test/registry/machines.json +112 -0
- package/test/registry/sha256sum.txt +21 -0
- package/test/test.js +493 -0
- package/vendor/dragonbox/include/dragonbox/dragonbox.h +2674 -2674
- package/vendor/dragonbox/subproject/test/results/binary32.csv +255 -255
- package/vendor/dragonbox/subproject/test/results/binary64.csv +2047 -2047
- package/vendor/libcc/libcc.cc +7669 -7651
- package/vendor/libcc/libcc.hh +4334 -4312
- package/vendor/node-addon-api/CHANGELOG.md +859 -859
- package/vendor/node-addon-api/CODE_OF_CONDUCT.md +4 -4
- package/vendor/node-addon-api/CONTRIBUTING.md +93 -93
- package/vendor/node-addon-api/LICENSE.md +12 -12
- package/vendor/node-addon-api/README.md +293 -293
- package/vendor/node-addon-api/appveyor.yml +37 -37
- package/vendor/node-addon-api/benchmark/README.md +47 -47
- package/vendor/node-addon-api/benchmark/binding.gyp +25 -25
- package/vendor/node-addon-api/benchmark/function_args.cc +217 -217
- package/vendor/node-addon-api/benchmark/function_args.js +60 -60
- package/vendor/node-addon-api/benchmark/index.js +34 -34
- package/vendor/node-addon-api/benchmark/property_descriptor.cc +91 -91
- package/vendor/node-addon-api/benchmark/property_descriptor.js +37 -37
- package/vendor/node-addon-api/common.gypi +21 -21
- package/vendor/node-addon-api/doc/addon.md +163 -163
- package/vendor/node-addon-api/doc/array.md +81 -81
- package/vendor/node-addon-api/doc/array_buffer.md +155 -155
- package/vendor/node-addon-api/doc/async_context.md +86 -86
- package/vendor/node-addon-api/doc/async_operations.md +31 -31
- package/vendor/node-addon-api/doc/async_worker.md +427 -427
- package/vendor/node-addon-api/doc/async_worker_variants.md +557 -557
- package/vendor/node-addon-api/doc/bigint.md +97 -97
- package/vendor/node-addon-api/doc/boolean.md +68 -68
- package/vendor/node-addon-api/doc/buffer.md +150 -150
- package/vendor/node-addon-api/doc/callback_scope.md +54 -54
- package/vendor/node-addon-api/doc/callbackinfo.md +97 -97
- package/vendor/node-addon-api/doc/checker-tool.md +32 -32
- package/vendor/node-addon-api/doc/class_property_descriptor.md +115 -115
- package/vendor/node-addon-api/doc/cmake-js.md +68 -68
- package/vendor/node-addon-api/doc/conversion-tool.md +27 -27
- package/vendor/node-addon-api/doc/creating_a_release.md +62 -62
- package/vendor/node-addon-api/doc/dataview.md +248 -248
- package/vendor/node-addon-api/doc/date.md +68 -68
- package/vendor/node-addon-api/doc/env.md +196 -196
- package/vendor/node-addon-api/doc/error.md +120 -120
- package/vendor/node-addon-api/doc/error_handling.md +254 -254
- package/vendor/node-addon-api/doc/escapable_handle_scope.md +80 -80
- package/vendor/node-addon-api/doc/external.md +63 -63
- package/vendor/node-addon-api/doc/function.md +402 -402
- package/vendor/node-addon-api/doc/function_reference.md +238 -238
- package/vendor/node-addon-api/doc/generator.md +13 -13
- package/vendor/node-addon-api/doc/handle_scope.md +63 -63
- package/vendor/node-addon-api/doc/hierarchy.md +91 -91
- package/vendor/node-addon-api/doc/instance_wrap.md +408 -408
- package/vendor/node-addon-api/doc/maybe.md +76 -76
- package/vendor/node-addon-api/doc/memory_management.md +27 -27
- package/vendor/node-addon-api/doc/name.md +29 -29
- package/vendor/node-addon-api/doc/node-gyp.md +82 -82
- package/vendor/node-addon-api/doc/number.md +163 -163
- package/vendor/node-addon-api/doc/object.md +432 -432
- package/vendor/node-addon-api/doc/object_lifetime_management.md +83 -83
- package/vendor/node-addon-api/doc/object_reference.md +117 -117
- package/vendor/node-addon-api/doc/object_wrap.md +561 -561
- package/vendor/node-addon-api/doc/prebuild_tools.md +16 -16
- package/vendor/node-addon-api/doc/promises.md +79 -79
- package/vendor/node-addon-api/doc/property_descriptor.md +286 -286
- package/vendor/node-addon-api/doc/propertylvalue.md +50 -50
- package/vendor/node-addon-api/doc/range_error.md +59 -59
- package/vendor/node-addon-api/doc/reference.md +113 -113
- package/vendor/node-addon-api/doc/setup.md +110 -110
- package/vendor/node-addon-api/doc/string.md +93 -93
- package/vendor/node-addon-api/doc/symbol.md +60 -60
- package/vendor/node-addon-api/doc/threadsafe.md +121 -121
- package/vendor/node-addon-api/doc/threadsafe_function.md +290 -290
- package/vendor/node-addon-api/doc/type_error.md +59 -59
- package/vendor/node-addon-api/doc/typed_array.md +78 -78
- package/vendor/node-addon-api/doc/typed_array_of.md +137 -137
- package/vendor/node-addon-api/doc/typed_threadsafe_function.md +306 -306
- package/vendor/node-addon-api/doc/value.md +340 -340
- package/vendor/node-addon-api/doc/version_management.md +43 -43
- package/vendor/node-addon-api/except.gypi +25 -25
- package/vendor/node-addon-api/index.js +11 -11
- package/vendor/node-addon-api/napi-inl.deprecated.h +192 -192
- package/vendor/node-addon-api/napi-inl.h +6209 -6209
- package/vendor/node-addon-api/napi.h +2983 -2983
- package/vendor/node-addon-api/node_api.gyp +9 -9
- package/vendor/node-addon-api/noexcept.gypi +26 -26
- package/vendor/node-addon-api/package-support.json +21 -21
- package/vendor/node-addon-api/package.json +399 -399
- package/vendor/node-addon-api/test/README.md +91 -91
- package/vendor/node-addon-api/test/addon.cc +36 -36
- package/vendor/node-addon-api/test/addon.js +11 -11
- package/vendor/node-addon-api/test/addon_build/index.js +49 -49
- package/vendor/node-addon-api/test/addon_build/tpl/addon.cc +17 -17
- package/vendor/node-addon-api/test/addon_build/tpl/binding.gyp +62 -62
- package/vendor/node-addon-api/test/addon_build/tpl/index.js +9 -9
- package/vendor/node-addon-api/test/addon_build/tpl/package.json +11 -11
- package/vendor/node-addon-api/test/addon_data.cc +99 -99
- package/vendor/node-addon-api/test/addon_data.js +46 -46
- package/vendor/node-addon-api/test/array_buffer.cc +243 -243
- package/vendor/node-addon-api/test/array_buffer.js +69 -69
- package/vendor/node-addon-api/test/async_context.cc +21 -21
- package/vendor/node-addon-api/test/async_context.js +86 -86
- package/vendor/node-addon-api/test/async_progress_queue_worker.cc +83 -83
- package/vendor/node-addon-api/test/async_progress_queue_worker.js +46 -46
- package/vendor/node-addon-api/test/async_progress_worker.cc +134 -134
- package/vendor/node-addon-api/test/async_progress_worker.js +61 -61
- package/vendor/node-addon-api/test/async_worker.cc +106 -106
- package/vendor/node-addon-api/test/async_worker.js +179 -179
- package/vendor/node-addon-api/test/async_worker_nocallback.js +13 -13
- package/vendor/node-addon-api/test/async_worker_persistent.cc +63 -63
- package/vendor/node-addon-api/test/async_worker_persistent.js +24 -24
- package/vendor/node-addon-api/test/basic_types/array.cc +40 -40
- package/vendor/node-addon-api/test/basic_types/array.js +35 -35
- package/vendor/node-addon-api/test/basic_types/boolean.cc +38 -38
- package/vendor/node-addon-api/test/basic_types/boolean.js +35 -35
- package/vendor/node-addon-api/test/basic_types/number.cc +99 -99
- package/vendor/node-addon-api/test/basic_types/number.js +114 -114
- package/vendor/node-addon-api/test/basic_types/value.cc +120 -120
- package/vendor/node-addon-api/test/basic_types/value.js +133 -133
- package/vendor/node-addon-api/test/bigint.cc +91 -91
- package/vendor/node-addon-api/test/bigint.js +53 -53
- package/vendor/node-addon-api/test/binding-swallowexcept.cc +12 -12
- package/vendor/node-addon-api/test/binding.cc +171 -171
- package/vendor/node-addon-api/test/binding.gyp +117 -117
- package/vendor/node-addon-api/test/buffer.cc +183 -183
- package/vendor/node-addon-api/test/buffer.js +69 -69
- package/vendor/node-addon-api/test/callbackscope.cc +22 -22
- package/vendor/node-addon-api/test/callbackscope.js +49 -49
- package/vendor/node-addon-api/test/common/index.js +113 -113
- package/vendor/node-addon-api/test/common/test_helper.h +61 -61
- package/vendor/node-addon-api/test/dataview/dataview.cc +48 -48
- package/vendor/node-addon-api/test/dataview/dataview.js +35 -35
- package/vendor/node-addon-api/test/dataview/dataview_read_write.cc +115 -115
- package/vendor/node-addon-api/test/dataview/dataview_read_write.js +90 -90
- package/vendor/node-addon-api/test/date.cc +44 -44
- package/vendor/node-addon-api/test/date.js +18 -18
- package/vendor/node-addon-api/test/env_cleanup.cc +88 -88
- package/vendor/node-addon-api/test/env_cleanup.js +56 -56
- package/vendor/node-addon-api/test/error.cc +287 -287
- package/vendor/node-addon-api/test/error.js +81 -81
- package/vendor/node-addon-api/test/error_handling_for_primitives.cc +13 -13
- package/vendor/node-addon-api/test/error_handling_for_primitives.js +29 -29
- package/vendor/node-addon-api/test/error_terminating_environment.js +94 -94
- package/vendor/node-addon-api/test/external.cc +81 -81
- package/vendor/node-addon-api/test/external.js +88 -88
- package/vendor/node-addon-api/test/function.cc +295 -295
- package/vendor/node-addon-api/test/function.js +121 -121
- package/vendor/node-addon-api/test/function_reference.cc +202 -202
- package/vendor/node-addon-api/test/function_reference.js +157 -157
- package/vendor/node-addon-api/test/globalObject/global_object.cc +61 -61
- package/vendor/node-addon-api/test/globalObject/global_object_delete_property.cc +31 -31
- package/vendor/node-addon-api/test/globalObject/global_object_delete_property.js +61 -61
- package/vendor/node-addon-api/test/globalObject/global_object_get_property.cc +40 -40
- package/vendor/node-addon-api/test/globalObject/global_object_get_property.js +57 -57
- package/vendor/node-addon-api/test/globalObject/global_object_has_own_property.cc +28 -28
- package/vendor/node-addon-api/test/globalObject/global_object_has_own_property.js +48 -48
- package/vendor/node-addon-api/test/globalObject/global_object_set_property.cc +30 -30
- package/vendor/node-addon-api/test/globalObject/global_object_set_property.js +58 -58
- package/vendor/node-addon-api/test/handlescope.cc +60 -60
- package/vendor/node-addon-api/test/handlescope.js +14 -14
- package/vendor/node-addon-api/test/index.js +136 -136
- package/vendor/node-addon-api/test/maybe/check.cc +23 -23
- package/vendor/node-addon-api/test/maybe/index.js +38 -38
- package/vendor/node-addon-api/test/memory_management.cc +17 -17
- package/vendor/node-addon-api/test/memory_management.js +9 -9
- package/vendor/node-addon-api/test/movable_callbacks.cc +23 -23
- package/vendor/node-addon-api/test/movable_callbacks.js +21 -21
- package/vendor/node-addon-api/test/name.cc +108 -108
- package/vendor/node-addon-api/test/name.js +59 -59
- package/vendor/node-addon-api/test/napi_child.js +14 -14
- package/vendor/node-addon-api/test/object/delete_property.cc +38 -38
- package/vendor/node-addon-api/test/object/delete_property.js +41 -41
- package/vendor/node-addon-api/test/object/finalizer.cc +29 -29
- package/vendor/node-addon-api/test/object/finalizer.js +28 -28
- package/vendor/node-addon-api/test/object/get_property.cc +34 -34
- package/vendor/node-addon-api/test/object/get_property.js +40 -40
- package/vendor/node-addon-api/test/object/has_own_property.cc +34 -34
- package/vendor/node-addon-api/test/object/has_own_property.js +34 -34
- package/vendor/node-addon-api/test/object/has_property.cc +38 -38
- package/vendor/node-addon-api/test/object/has_property.js +37 -37
- package/vendor/node-addon-api/test/object/object.cc +348 -348
- package/vendor/node-addon-api/test/object/object.js +217 -217
- package/vendor/node-addon-api/test/object/object_deprecated.cc +66 -66
- package/vendor/node-addon-api/test/object/object_deprecated.js +47 -47
- package/vendor/node-addon-api/test/object/object_freeze_seal.cc +25 -25
- package/vendor/node-addon-api/test/object/object_freeze_seal.js +61 -61
- package/vendor/node-addon-api/test/object/set_property.cc +37 -37
- package/vendor/node-addon-api/test/object/set_property.js +29 -29
- package/vendor/node-addon-api/test/object/subscript_operator.cc +42 -42
- package/vendor/node-addon-api/test/object/subscript_operator.js +17 -17
- package/vendor/node-addon-api/test/object_reference.cc +219 -219
- package/vendor/node-addon-api/test/object_reference.js +259 -259
- package/vendor/node-addon-api/test/objectwrap.cc +268 -268
- package/vendor/node-addon-api/test/objectwrap.js +284 -284
- package/vendor/node-addon-api/test/objectwrap_constructor_exception.cc +26 -26
- package/vendor/node-addon-api/test/objectwrap_constructor_exception.js +18 -18
- package/vendor/node-addon-api/test/objectwrap_multiple_inheritance.cc +30 -30
- package/vendor/node-addon-api/test/objectwrap_multiple_inheritance.js +13 -13
- package/vendor/node-addon-api/test/objectwrap_removewrap.cc +45 -45
- package/vendor/node-addon-api/test/objectwrap_removewrap.js +40 -40
- package/vendor/node-addon-api/test/objectwrap_worker_thread.js +19 -19
- package/vendor/node-addon-api/test/promise.cc +29 -29
- package/vendor/node-addon-api/test/promise.js +18 -18
- package/vendor/node-addon-api/test/reference.cc +24 -24
- package/vendor/node-addon-api/test/reference.js +14 -14
- package/vendor/node-addon-api/test/run_script.cc +56 -56
- package/vendor/node-addon-api/test/run_script.js +45 -45
- package/vendor/node-addon-api/test/symbol.cc +79 -79
- package/vendor/node-addon-api/test/symbol.js +73 -73
- package/vendor/node-addon-api/test/testUtil.js +54 -54
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function.cc +195 -195
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function.js +188 -188
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ctx.cc +63 -63
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ctx.js +12 -12
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_existing_tsfn.cc +115 -115
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_existing_tsfn.js +14 -14
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ptr.cc +26 -26
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ptr.js +7 -7
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_sum.cc +225 -225
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_sum.js +59 -59
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_unref.cc +42 -42
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_unref.js +53 -53
- package/vendor/node-addon-api/test/thunking_manual.cc +140 -140
- package/vendor/node-addon-api/test/thunking_manual.js +17 -17
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function.cc +215 -215
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function.js +188 -188
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ctx.cc +68 -68
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ctx.js +12 -12
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_existing_tsfn.cc +127 -127
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_existing_tsfn.js +14 -14
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ptr.cc +28 -28
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ptr.js +7 -7
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_sum.cc +237 -237
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_sum.js +59 -59
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_unref.cc +53 -53
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_unref.js +53 -53
- package/vendor/node-addon-api/test/typedarray-bigint.js +58 -58
- package/vendor/node-addon-api/test/typedarray.cc +216 -216
- package/vendor/node-addon-api/test/typedarray.js +69 -69
- package/vendor/node-addon-api/test/version_management.cc +27 -27
- package/vendor/node-addon-api/test/version_management.js +31 -31
- package/vendor/node-addon-api/tools/README.md +73 -73
- package/vendor/node-addon-api/tools/check-napi.js +100 -100
- package/vendor/node-addon-api/tools/clang-format.js +68 -68
- package/vendor/node-addon-api/tools/conversion.js +309 -309
- package/vendor/node-addon-api/tools/eslint-format.js +71 -71
- package/vendor/raylib/BINDINGS.md +123 -0
- package/vendor/raylib/CHANGELOG +1495 -0
- package/vendor/raylib/CMakeLists.txt +33 -0
- package/vendor/raylib/CMakeOptions.txt +87 -0
- package/vendor/raylib/CONTRIBUTING.md +76 -0
- package/vendor/raylib/CONTRIBUTORS.md +63 -0
- package/vendor/raylib/CONVENTIONS.md +95 -0
- package/vendor/raylib/HISTORY.md +364 -0
- package/vendor/raylib/LICENSE +16 -0
- package/vendor/raylib/README.md +141 -0
- package/vendor/raylib/ROADMAP.md +76 -0
- package/vendor/raylib/SPONSORS.md +68 -0
- package/vendor/raylib/cmake/AddIfFlagCompiles.cmake +12 -0
- package/vendor/raylib/cmake/BuildOptions.cmake +18 -0
- package/vendor/raylib/cmake/CompileDefinitions.cmake +110 -0
- package/vendor/raylib/cmake/CompilerFlags.cmake +79 -0
- package/vendor/raylib/cmake/EnumOption.cmake +9 -0
- package/vendor/raylib/cmake/GlfwImport.cmake +34 -0
- package/vendor/raylib/cmake/InstallConfigurations.cmake +29 -0
- package/vendor/raylib/cmake/JoinPaths.cmake +26 -0
- package/vendor/raylib/cmake/LibraryConfigurations.cmake +108 -0
- package/vendor/raylib/cmake/LibraryPathToLinkerFlags.cmake +24 -0
- package/vendor/raylib/cmake/PackConfigurations.cmake +13 -0
- package/vendor/raylib/cmake/PopulateConfigVariablesLocally.cmake +11 -0
- package/vendor/raylib/cmake/raylib-config-version.cmake +21 -0
- package/vendor/raylib/cmake/raylib-config.cmake +76 -0
- package/vendor/raylib/examples/CMakeLists.txt +139 -0
- package/vendor/raylib/examples/Makefile +565 -0
- package/vendor/raylib/examples/Makefile.Android +405 -0
- package/vendor/raylib/examples/Makefile.Web +1053 -0
- package/vendor/raylib/examples/README.md +203 -0
- package/vendor/raylib/examples/audio/audio_module_playing.c +146 -0
- package/vendor/raylib/examples/audio/audio_module_playing.png +0 -0
- package/vendor/raylib/examples/audio/audio_multichannel_sound.c +73 -0
- package/vendor/raylib/examples/audio/audio_multichannel_sound.png +0 -0
- package/vendor/raylib/examples/audio/audio_music_stream.c +93 -0
- package/vendor/raylib/examples/audio/audio_music_stream.png +0 -0
- package/vendor/raylib/examples/audio/audio_raw_stream.c +167 -0
- package/vendor/raylib/examples/audio/audio_raw_stream.png +0 -0
- package/vendor/raylib/examples/audio/audio_sound_loading.c +64 -0
- package/vendor/raylib/examples/audio/audio_sound_loading.png +0 -0
- package/vendor/raylib/examples/audio/resources/LICENSE.md +10 -0
- package/vendor/raylib/examples/audio/resources/coin.wav +0 -0
- package/vendor/raylib/examples/audio/resources/country.mp3 +0 -0
- package/vendor/raylib/examples/audio/resources/mini1111.xm +0 -0
- package/vendor/raylib/examples/audio/resources/sound.wav +0 -0
- package/vendor/raylib/examples/audio/resources/spring.wav +0 -0
- package/vendor/raylib/examples/audio/resources/target.flac +0 -0
- package/vendor/raylib/examples/audio/resources/target.ogg +0 -0
- package/vendor/raylib/examples/audio/resources/weird.wav +0 -0
- package/vendor/raylib/examples/build.zig +86 -0
- package/vendor/raylib/examples/core/core_2d_camera.c +132 -0
- package/vendor/raylib/examples/core/core_2d_camera.png +0 -0
- package/vendor/raylib/examples/core/core_2d_camera_platformer.c +293 -0
- package/vendor/raylib/examples/core/core_2d_camera_platformer.png +0 -0
- package/vendor/raylib/examples/core/core_2d_camera_smooth_pixelperfect.png +0 -0
- package/vendor/raylib/examples/core/core_3d_camera_first_person.c +97 -0
- package/vendor/raylib/examples/core/core_3d_camera_first_person.png +0 -0
- package/vendor/raylib/examples/core/core_3d_camera_free.c +83 -0
- package/vendor/raylib/examples/core/core_3d_camera_free.png +0 -0
- package/vendor/raylib/examples/core/core_3d_camera_mode.c +73 -0
- package/vendor/raylib/examples/core/core_3d_camera_mode.png +0 -0
- package/vendor/raylib/examples/core/core_3d_picking.c +107 -0
- package/vendor/raylib/examples/core/core_3d_picking.png +0 -0
- package/vendor/raylib/examples/core/core_basic_screen_manager.c +150 -0
- package/vendor/raylib/examples/core/core_basic_screen_manager.png +0 -0
- package/vendor/raylib/examples/core/core_basic_window.c +62 -0
- package/vendor/raylib/examples/core/core_basic_window.png +0 -0
- package/vendor/raylib/examples/core/core_basic_window_web.c +85 -0
- package/vendor/raylib/examples/core/core_custom_frame_control.c +125 -0
- package/vendor/raylib/examples/core/core_custom_frame_control.png +0 -0
- package/vendor/raylib/examples/core/core_custom_logging.c +84 -0
- package/vendor/raylib/examples/core/core_custom_logging.png +0 -0
- package/vendor/raylib/examples/core/core_drop_files.c +76 -0
- package/vendor/raylib/examples/core/core_drop_files.png +0 -0
- package/vendor/raylib/examples/core/core_input_gamepad.c +195 -0
- package/vendor/raylib/examples/core/core_input_gamepad.png +0 -0
- package/vendor/raylib/examples/core/core_input_gestures.c +115 -0
- package/vendor/raylib/examples/core/core_input_gestures.png +0 -0
- package/vendor/raylib/examples/core/core_input_keys.c +59 -0
- package/vendor/raylib/examples/core/core_input_keys.png +0 -0
- package/vendor/raylib/examples/core/core_input_mouse.c +65 -0
- package/vendor/raylib/examples/core/core_input_mouse.png +0 -0
- package/vendor/raylib/examples/core/core_input_mouse_wheel.c +58 -0
- package/vendor/raylib/examples/core/core_input_mouse_wheel.png +0 -0
- package/vendor/raylib/examples/core/core_input_multitouch.c +70 -0
- package/vendor/raylib/examples/core/core_input_multitouch.png +0 -0
- package/vendor/raylib/examples/core/core_loading_thread.c +147 -0
- package/vendor/raylib/examples/core/core_loading_thread.png +0 -0
- package/vendor/raylib/examples/core/core_quat_conversion.c +132 -0
- package/vendor/raylib/examples/core/core_quat_conversion.png +0 -0
- package/vendor/raylib/examples/core/core_random_values.c +67 -0
- package/vendor/raylib/examples/core/core_random_values.png +0 -0
- package/vendor/raylib/examples/core/core_scissor_test.c +71 -0
- package/vendor/raylib/examples/core/core_scissor_test.png +0 -0
- package/vendor/raylib/examples/core/core_smooth_pixelperfect.c +117 -0
- package/vendor/raylib/examples/core/core_smooth_pixelperfect.png +0 -0
- package/vendor/raylib/examples/core/core_split_screen.c +155 -0
- package/vendor/raylib/examples/core/core_split_screen.png +0 -0
- package/vendor/raylib/examples/core/core_storage_values.c +87 -0
- package/vendor/raylib/examples/core/core_storage_values.png +0 -0
- package/vendor/raylib/examples/core/core_vr_simulator.c +143 -0
- package/vendor/raylib/examples/core/core_vr_simulator.png +0 -0
- package/vendor/raylib/examples/core/core_window_flags.c +191 -0
- package/vendor/raylib/examples/core/core_window_flags.png +0 -0
- package/vendor/raylib/examples/core/core_window_letterbox.c +112 -0
- package/vendor/raylib/examples/core/core_window_letterbox.png +0 -0
- package/vendor/raylib/examples/core/core_world_screen.c +78 -0
- package/vendor/raylib/examples/core/core_world_screen.png +0 -0
- package/vendor/raylib/examples/core/resources/LICENSE.md +4 -0
- package/vendor/raylib/examples/core/resources/distortion100.fs +52 -0
- package/vendor/raylib/examples/core/resources/distortion330.fs +53 -0
- package/vendor/raylib/examples/core/resources/ps3.png +0 -0
- package/vendor/raylib/examples/core/resources/xbox.png +0 -0
- package/vendor/raylib/examples/examples_template.c +100 -0
- package/vendor/raylib/examples/models/models_animation.c +114 -0
- package/vendor/raylib/examples/models/models_animation.png +0 -0
- package/vendor/raylib/examples/models/models_billboard.c +75 -0
- package/vendor/raylib/examples/models/models_billboard.png +0 -0
- package/vendor/raylib/examples/models/models_box_collisions.c +121 -0
- package/vendor/raylib/examples/models/models_box_collisions.png +0 -0
- package/vendor/raylib/examples/models/models_cubicmap.c +87 -0
- package/vendor/raylib/examples/models/models_cubicmap.png +0 -0
- package/vendor/raylib/examples/models/models_first_person_maze.c +122 -0
- package/vendor/raylib/examples/models/models_first_person_maze.png +0 -0
- package/vendor/raylib/examples/models/models_geometric_shapes.c +80 -0
- package/vendor/raylib/examples/models/models_geometric_shapes.png +0 -0
- package/vendor/raylib/examples/models/models_heightmap.c +82 -0
- package/vendor/raylib/examples/models/models_heightmap.png +0 -0
- package/vendor/raylib/examples/models/models_loading.c +146 -0
- package/vendor/raylib/examples/models/models_loading.png +0 -0
- package/vendor/raylib/examples/models/models_loading_gltf.c +105 -0
- package/vendor/raylib/examples/models/models_loading_gltf.png +0 -0
- package/vendor/raylib/examples/models/models_loading_vox.c +130 -0
- package/vendor/raylib/examples/models/models_loading_vox.png +0 -0
- package/vendor/raylib/examples/models/models_mesh_generation.c +179 -0
- package/vendor/raylib/examples/models/models_mesh_generation.png +0 -0
- package/vendor/raylib/examples/models/models_mesh_picking.c +223 -0
- package/vendor/raylib/examples/models/models_mesh_picking.png +0 -0
- package/vendor/raylib/examples/models/models_orthographic_projection.c +99 -0
- package/vendor/raylib/examples/models/models_orthographic_projection.png +0 -0
- package/vendor/raylib/examples/models/models_rlgl_solar_system.c +172 -0
- package/vendor/raylib/examples/models/models_rlgl_solar_system.png +0 -0
- package/vendor/raylib/examples/models/models_skybox.c +262 -0
- package/vendor/raylib/examples/models/models_skybox.png +0 -0
- package/vendor/raylib/examples/models/models_waving_cubes.c +112 -0
- package/vendor/raylib/examples/models/models_waving_cubes.png +0 -0
- package/vendor/raylib/examples/models/models_yaw_pitch_roll.c +117 -0
- package/vendor/raylib/examples/models/models_yaw_pitch_roll.png +0 -0
- package/vendor/raylib/examples/models/resources/LICENSE.md +23 -0
- package/vendor/raylib/examples/models/resources/billboard.png +0 -0
- package/vendor/raylib/examples/models/resources/cubicmap.png +0 -0
- package/vendor/raylib/examples/models/resources/cubicmap_atlas.png +0 -0
- package/vendor/raylib/examples/models/resources/dresden_square_1k.hdr +0 -0
- package/vendor/raylib/examples/models/resources/dresden_square_2k.hdr +0 -0
- package/vendor/raylib/examples/models/resources/heightmap.png +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/AnimatedMorphCube.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/AnimatedTriangle.gltf +118 -0
- package/vendor/raylib/examples/models/resources/models/gltf/BoxAnimated.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/LICENSE +23 -0
- package/vendor/raylib/examples/models/resources/models/gltf/girl.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/raylib_32x32.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/rigged_figure.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/vertex_colored_object.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/iqm/guy.blend +0 -0
- package/vendor/raylib/examples/models/resources/models/iqm/guy.iqm +0 -0
- package/vendor/raylib/examples/models/resources/models/iqm/guyanim.iqm +0 -0
- package/vendor/raylib/examples/models/resources/models/iqm/guytex.png +0 -0
- package/vendor/raylib/examples/models/resources/models/iqm/vertex_colored_object.iqm +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/bridge.obj +1725 -0
- package/vendor/raylib/examples/models/resources/models/obj/bridge_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/castle.obj +12919 -0
- package/vendor/raylib/examples/models/resources/models/obj/castle_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/cube.obj +68 -0
- package/vendor/raylib/examples/models/resources/models/obj/cube_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/house.obj +4564 -0
- package/vendor/raylib/examples/models/resources/models/obj/house_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/market.obj +7301 -0
- package/vendor/raylib/examples/models/resources/models/obj/market_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/plane.obj +10858 -0
- package/vendor/raylib/examples/models/resources/models/obj/plane_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/turret.obj +1888 -0
- package/vendor/raylib/examples/models/resources/models/obj/turret_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/well.obj +1030 -0
- package/vendor/raylib/examples/models/resources/models/obj/well_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/vox/LICENSE +9 -0
- package/vendor/raylib/examples/models/resources/models/vox/chr_knight.vox +0 -0
- package/vendor/raylib/examples/models/resources/models/vox/chr_sword.vox +0 -0
- package/vendor/raylib/examples/models/resources/models/vox/monu9.vox +0 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl100/cubemap.fs +29 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl100/cubemap.vs +20 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl100/skybox.fs +31 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl100/skybox.vs +24 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl330/cubemap.fs +30 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl330/cubemap.vs +20 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl330/skybox.fs +30 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl330/skybox.vs +24 -0
- package/vendor/raylib/examples/models/resources/skybox.png +0 -0
- package/vendor/raylib/examples/models/rlights.h +183 -0
- package/vendor/raylib/examples/others/easings.h +263 -0
- package/vendor/raylib/examples/others/easings_testbed.c +227 -0
- package/vendor/raylib/examples/others/embedded_files_loading.c +103 -0
- package/vendor/raylib/examples/others/external/include/GLFW/glfw3.h +5538 -0
- package/vendor/raylib/examples/others/external/include/GLFW/glfw3native.h +572 -0
- package/vendor/raylib/examples/others/external/include/glad.h +5466 -0
- package/vendor/raylib/examples/others/external/lib/libglfw3.a +0 -0
- package/vendor/raylib/examples/others/raudio_standalone.c +152 -0
- package/vendor/raylib/examples/others/raylib_opengl_interop.c +152 -0
- package/vendor/raylib/examples/others/raylib_opengl_interop.png +0 -0
- package/vendor/raylib/examples/others/resources/audio/country.mp3 +0 -0
- package/vendor/raylib/examples/others/resources/audio/target.ogg +0 -0
- package/vendor/raylib/examples/others/resources/audio/weird.wav +0 -0
- package/vendor/raylib/examples/others/resources/audio_data.h +4893 -0
- package/vendor/raylib/examples/others/resources/image_data.h +9848 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl100/point_particle.fs +16 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl100/point_particle.vs +24 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl330/point_particle.fs +17 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl330/point_particle.vs +24 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl430/gol.glsl +41 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl430/gol_render.glsl +29 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl430/gol_transfert.glsl +51 -0
- package/vendor/raylib/examples/others/rlgl_compute_shader.c +173 -0
- package/vendor/raylib/examples/others/rlgl_standalone.c +469 -0
- package/vendor/raylib/examples/physics/physics_demo.c +128 -0
- package/vendor/raylib/examples/physics/physics_demo.png +0 -0
- package/vendor/raylib/examples/physics/physics_friction.c +142 -0
- package/vendor/raylib/examples/physics/physics_friction.png +0 -0
- package/vendor/raylib/examples/physics/physics_movement.c +128 -0
- package/vendor/raylib/examples/physics/physics_movement.png +0 -0
- package/vendor/raylib/examples/physics/physics_restitution.c +129 -0
- package/vendor/raylib/examples/physics/physics_restitution.png +0 -0
- package/vendor/raylib/examples/physics/physics_shatter.c +111 -0
- package/vendor/raylib/examples/physics/physics_shatter.png +0 -0
- package/vendor/raylib/examples/raylib_compile_execute.bat +32 -0
- package/vendor/raylib/examples/raylib_makefile_example.bat +27 -0
- package/vendor/raylib/examples/shaders/resources/LICENSE.md +11 -0
- package/vendor/raylib/examples/shaders/resources/fudesumi.png +0 -0
- package/vendor/raylib/examples/shaders/resources/mask.png +0 -0
- package/vendor/raylib/examples/shaders/resources/models/barracks.obj +22251 -0
- package/vendor/raylib/examples/shaders/resources/models/barracks_diffuse.png +0 -0
- package/vendor/raylib/examples/shaders/resources/models/church.obj +5116 -0
- package/vendor/raylib/examples/shaders/resources/models/church_diffuse.png +0 -0
- package/vendor/raylib/examples/shaders/resources/models/watermill.obj +5316 -0
- package/vendor/raylib/examples/shaders/resources/models/watermill_diffuse.png +0 -0
- package/vendor/raylib/examples/shaders/resources/plasma.png +0 -0
- package/vendor/raylib/examples/shaders/resources/raysan.png +0 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base.fs +23 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base.vs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base_lighting.vs +59 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base_lighting_instanced.vs +36 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/bloom.fs +39 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/blur.fs +34 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/color_mix.fs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/cross_hatching.fs +47 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/cross_stitching.fs +57 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/cubes_panning.fs +60 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/depth.fs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/distortion.fs +54 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/dream_vision.fs +37 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/eratosthenes.fs +60 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/fisheye.fs +43 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/fog.fs +94 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/grayscale.fs +25 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/julia_set.fs +83 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/lighting.fs +81 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/mask.fs +24 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/outline.fs +34 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/palette_switch.fs +41 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/pixelizer.fs +32 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/posterization.fs +29 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/predator.fs +31 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/raymarching.fs +431 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/reload.fs +39 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/scanlines.fs +44 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/sobel.fs +40 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/spotlight.fs +77 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/swirl.fs +46 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/wave.fs +36 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/base.fs +22 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/base.vs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/base_lighting.vs +59 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/bloom.fs +37 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/blur.fs +32 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/cross_hatching.fs +45 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/cross_stitching.fs +55 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/distortion.fs +52 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/dream_vision.fs +35 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/fisheye.fs +41 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/fog.fs +92 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/grayscale.fs +23 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/palette_switch.fs +27 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/pixelizer.fs +30 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/posterization.fs +27 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/predator.fs +29 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/scanlines.fs +42 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/sobel.fs +38 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/swirl.fs +44 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base.fs +25 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base.vs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base_lighting.vs +32 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base_lighting_instanced.vs +36 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/bloom.fs +40 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/blur.fs +35 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/color_mix.fs +27 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/cross_hatching.fs +48 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/cross_stitching.fs +59 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/cubes_panning.fs +61 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/depth.fs +27 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/distortion.fs +56 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/dream_vision.fs +34 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/eratosthenes.fs +59 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/fisheye.fs +40 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/fog.fs +95 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/grayscale.fs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/julia_set.fs +81 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/lighting.fs +82 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/mask.fs +22 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/outline.fs +35 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/overdraw.fs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/palette_switch.fs +30 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/pixelizer.fs +33 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/posterization.fs +31 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/predator.fs +32 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/raymarching.fs +430 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/reload.fs +40 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/scanlines.fs +49 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/sobel.fs +41 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/spotlight.fs +65 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/swirl.fs +47 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/wave.fs +37 -0
- package/vendor/raylib/examples/shaders/resources/space.png +0 -0
- package/vendor/raylib/examples/shaders/resources/texel_checker.png +0 -0
- package/vendor/raylib/examples/shaders/rlights.h +183 -0
- package/vendor/raylib/examples/shaders/shaders_basic_lighting.c +152 -0
- package/vendor/raylib/examples/shaders/shaders_basic_lighting.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_custom_uniform.c +127 -0
- package/vendor/raylib/examples/shaders/shaders_custom_uniform.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_eratosthenes.c +92 -0
- package/vendor/raylib/examples/shaders/shaders_eratosthenes.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_fog.c +160 -0
- package/vendor/raylib/examples/shaders/shaders_fog.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_hot_reloading.c +130 -0
- package/vendor/raylib/examples/shaders/shaders_hot_reloading.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_julia_set.c +191 -0
- package/vendor/raylib/examples/shaders/shaders_julia_set.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_mesh_instancing.c +224 -0
- package/vendor/raylib/examples/shaders/shaders_mesh_instancing.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_model_shader.c +103 -0
- package/vendor/raylib/examples/shaders/shaders_model_shader.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_multi_sample2d.c +105 -0
- package/vendor/raylib/examples/shaders/shaders_multi_sample2d.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_palette_switch.c +147 -0
- package/vendor/raylib/examples/shaders/shaders_palette_switch.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_postprocessing.c +170 -0
- package/vendor/raylib/examples/shaders/shaders_postprocessing.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_raymarching.c +113 -0
- package/vendor/raylib/examples/shaders/shaders_raymarching.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_shapes_textures.c +116 -0
- package/vendor/raylib/examples/shaders/shaders_shapes_textures.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_simple_mask.c +144 -0
- package/vendor/raylib/examples/shaders/shaders_simple_mask.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_spotlight.c +254 -0
- package/vendor/raylib/examples/shaders/shaders_spotlight.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_texture_drawing.c +80 -0
- package/vendor/raylib/examples/shaders/shaders_texture_drawing.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_texture_outline.c +97 -0
- package/vendor/raylib/examples/shaders/shaders_texture_outline.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_texture_waves.c +110 -0
- package/vendor/raylib/examples/shaders/shaders_texture_waves.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_basic_shapes.c +78 -0
- package/vendor/raylib/examples/shapes/shapes_basic_shapes.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_bouncing_ball.c +76 -0
- package/vendor/raylib/examples/shapes/shapes_bouncing_ball.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_collision_area.c +108 -0
- package/vendor/raylib/examples/shapes/shapes_collision_area.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_colors_palette.c +99 -0
- package/vendor/raylib/examples/shapes/shapes_colors_palette.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_draw_circle_sector.c +83 -0
- package/vendor/raylib/examples/shapes/shapes_draw_circle_sector.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_draw_rectangle_rounded.c +89 -0
- package/vendor/raylib/examples/shapes/shapes_draw_rectangle_rounded.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_draw_ring.c +96 -0
- package/vendor/raylib/examples/shapes/shapes_draw_ring.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_easings_ball_anim.c +110 -0
- package/vendor/raylib/examples/shapes/shapes_easings_ball_anim.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_easings_box_anim.c +136 -0
- package/vendor/raylib/examples/shapes/shapes_easings_box_anim.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_easings_rectangle_array.c +118 -0
- package/vendor/raylib/examples/shapes/shapes_easings_rectangle_array.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_following_eyes.c +104 -0
- package/vendor/raylib/examples/shapes/shapes_following_eyes.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_lines_bezier.c +59 -0
- package/vendor/raylib/examples/shapes/shapes_lines_bezier.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_logo_raylib.c +56 -0
- package/vendor/raylib/examples/shapes/shapes_logo_raylib.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_logo_raylib_anim.c +160 -0
- package/vendor/raylib/examples/shapes/shapes_logo_raylib_anim.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_rectangle_scaling.c +94 -0
- package/vendor/raylib/examples/shapes/shapes_rectangle_scaling.png +0 -0
- package/vendor/raylib/examples/text/resources/KAISG.ttf +0 -0
- package/vendor/raylib/examples/text/resources/LICENSE.md +20 -0
- package/vendor/raylib/examples/text/resources/anonymous_pro_bold.ttf +0 -0
- package/vendor/raylib/examples/text/resources/custom_alagard.png +0 -0
- package/vendor/raylib/examples/text/resources/custom_jupiter_crash.png +0 -0
- package/vendor/raylib/examples/text/resources/custom_mecha.png +0 -0
- package/vendor/raylib/examples/text/resources/dejavu.fnt +1115 -0
- package/vendor/raylib/examples/text/resources/dejavu.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/alagard.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/alpha_beta.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/jupiter_crash.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/mecha.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/pixantiqua.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/pixelplay.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/romulus.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/setback.png +0 -0
- package/vendor/raylib/examples/text/resources/noto_cjk.fnt +580 -0
- package/vendor/raylib/examples/text/resources/noto_cjk.png +0 -0
- package/vendor/raylib/examples/text/resources/pixantiqua.fnt +188 -0
- package/vendor/raylib/examples/text/resources/pixantiqua.png +0 -0
- package/vendor/raylib/examples/text/resources/pixantiqua.ttf +0 -0
- package/vendor/raylib/examples/text/resources/shaders/glsl100/alpha_discard.fs +20 -0
- package/vendor/raylib/examples/text/resources/shaders/glsl100/sdf.fs +25 -0
- package/vendor/raylib/examples/text/resources/shaders/glsl330/alpha_discard.fs +19 -0
- package/vendor/raylib/examples/text/resources/shaders/glsl330/sdf.fs +26 -0
- package/vendor/raylib/examples/text/resources/symbola.fnt +191 -0
- package/vendor/raylib/examples/text/resources/symbola.png +0 -0
- package/vendor/raylib/examples/text/text_draw_3d.c +739 -0
- package/vendor/raylib/examples/text/text_draw_3d.png +0 -0
- package/vendor/raylib/examples/text/text_font_filters.c +134 -0
- package/vendor/raylib/examples/text/text_font_filters.png +0 -0
- package/vendor/raylib/examples/text/text_font_loading.c +91 -0
- package/vendor/raylib/examples/text/text_font_loading.png +0 -0
- package/vendor/raylib/examples/text/text_font_sdf.c +141 -0
- package/vendor/raylib/examples/text/text_font_sdf.png +0 -0
- package/vendor/raylib/examples/text/text_font_spritefont.c +85 -0
- package/vendor/raylib/examples/text/text_font_spritefont.png +0 -0
- package/vendor/raylib/examples/text/text_format_text.c +62 -0
- package/vendor/raylib/examples/text/text_format_text.png +0 -0
- package/vendor/raylib/examples/text/text_input_box.c +127 -0
- package/vendor/raylib/examples/text/text_input_box.png +0 -0
- package/vendor/raylib/examples/text/text_raylib_fonts.c +105 -0
- package/vendor/raylib/examples/text/text_raylib_fonts.png +0 -0
- package/vendor/raylib/examples/text/text_rectangle_bounds.c +264 -0
- package/vendor/raylib/examples/text/text_rectangle_bounds.png +0 -0
- package/vendor/raylib/examples/text/text_unicode.c +465 -0
- package/vendor/raylib/examples/text/text_unicode.png +0 -0
- package/vendor/raylib/examples/text/text_writing_anim.c +62 -0
- package/vendor/raylib/examples/text/text_writing_anim.png +0 -0
- package/vendor/raylib/examples/textures/resources/KAISG.ttf +0 -0
- package/vendor/raylib/examples/textures/resources/LICENSE.md +18 -0
- package/vendor/raylib/examples/textures/resources/boom.wav +0 -0
- package/vendor/raylib/examples/textures/resources/button.png +0 -0
- package/vendor/raylib/examples/textures/resources/buttonfx.wav +0 -0
- package/vendor/raylib/examples/textures/resources/cat.png +0 -0
- package/vendor/raylib/examples/textures/resources/custom_jupiter_crash.png +0 -0
- package/vendor/raylib/examples/textures/resources/cyberpunk_street_background.png +0 -0
- package/vendor/raylib/examples/textures/resources/cyberpunk_street_foreground.png +0 -0
- package/vendor/raylib/examples/textures/resources/cyberpunk_street_midground.png +0 -0
- package/vendor/raylib/examples/textures/resources/explosion.png +0 -0
- package/vendor/raylib/examples/textures/resources/fudesumi.png +0 -0
- package/vendor/raylib/examples/textures/resources/fudesumi.raw +0 -0
- package/vendor/raylib/examples/textures/resources/ninepatch_button.png +0 -0
- package/vendor/raylib/examples/textures/resources/parrots.png +0 -0
- package/vendor/raylib/examples/textures/resources/patterns.png +0 -0
- package/vendor/raylib/examples/textures/resources/raylib_logo.png +0 -0
- package/vendor/raylib/examples/textures/resources/scarfy.png +0 -0
- package/vendor/raylib/examples/textures/resources/spark_flame.png +0 -0
- package/vendor/raylib/examples/textures/resources/wabbit_alpha.png +0 -0
- package/vendor/raylib/examples/textures/textures_background_scrolling.c +87 -0
- package/vendor/raylib/examples/textures/textures_background_scrolling.png +0 -0
- package/vendor/raylib/examples/textures/textures_blend_modes.c +93 -0
- package/vendor/raylib/examples/textures/textures_blend_modes.png +0 -0
- package/vendor/raylib/examples/textures/textures_bunnymark.c +120 -0
- package/vendor/raylib/examples/textures/textures_bunnymark.png +0 -0
- package/vendor/raylib/examples/textures/textures_draw_tiled.c +165 -0
- package/vendor/raylib/examples/textures/textures_draw_tiled.png +0 -0
- package/vendor/raylib/examples/textures/textures_image_drawing.c +91 -0
- package/vendor/raylib/examples/textures/textures_image_drawing.png +0 -0
- package/vendor/raylib/examples/textures/textures_image_generation.c +102 -0
- package/vendor/raylib/examples/textures/textures_image_generation.png +0 -0
- package/vendor/raylib/examples/textures/textures_image_loading.c +64 -0
- package/vendor/raylib/examples/textures/textures_image_loading.png +0 -0
- package/vendor/raylib/examples/textures/textures_image_processing.c +169 -0
- package/vendor/raylib/examples/textures/textures_image_processing.png +0 -0
- package/vendor/raylib/examples/textures/textures_image_text.c +83 -0
- package/vendor/raylib/examples/textures/textures_image_text.png +0 -0
- package/vendor/raylib/examples/textures/textures_logo_raylib.c +57 -0
- package/vendor/raylib/examples/textures/textures_logo_raylib.png +0 -0
- package/vendor/raylib/examples/textures/textures_mouse_painting.c +221 -0
- package/vendor/raylib/examples/textures/textures_mouse_painting.png +0 -0
- package/vendor/raylib/examples/textures/textures_npatch_drawing.c +109 -0
- package/vendor/raylib/examples/textures/textures_npatch_drawing.png +0 -0
- package/vendor/raylib/examples/textures/textures_particles_blending.c +135 -0
- package/vendor/raylib/examples/textures/textures_particles_blending.png +0 -0
- package/vendor/raylib/examples/textures/textures_polygon.c +100 -0
- package/vendor/raylib/examples/textures/textures_polygon.png +0 -0
- package/vendor/raylib/examples/textures/textures_raw_data.c +99 -0
- package/vendor/raylib/examples/textures/textures_raw_data.png +0 -0
- package/vendor/raylib/examples/textures/textures_rectangle.c +99 -0
- package/vendor/raylib/examples/textures/textures_rectangle.png +0 -0
- package/vendor/raylib/examples/textures/textures_sprite_button.c +97 -0
- package/vendor/raylib/examples/textures/textures_sprite_button.png +0 -0
- package/vendor/raylib/examples/textures/textures_sprite_explosion.c +120 -0
- package/vendor/raylib/examples/textures/textures_sprite_explosion.png +0 -0
- package/vendor/raylib/examples/textures/textures_srcrec_dstrec.c +82 -0
- package/vendor/raylib/examples/textures/textures_srcrec_dstrec.png +0 -0
- package/vendor/raylib/examples/textures/textures_to_image.c +68 -0
- package/vendor/raylib/examples/textures/textures_to_image.png +0 -0
- package/vendor/raylib/logo/raylib.ico +0 -0
- package/vendor/raylib/logo/raylib_128x128.png +0 -0
- package/vendor/raylib/logo/raylib_144x144.png +0 -0
- package/vendor/raylib/logo/raylib_16x16.png +0 -0
- package/vendor/raylib/logo/raylib_180x180.png +0 -0
- package/vendor/raylib/logo/raylib_24x24.png +0 -0
- package/vendor/raylib/logo/raylib_256x256.png +0 -0
- package/vendor/raylib/logo/raylib_32x32.png +0 -0
- package/vendor/raylib/logo/raylib_36x36.png +0 -0
- package/vendor/raylib/logo/raylib_48x48.png +0 -0
- package/vendor/raylib/logo/raylib_512x512.png +0 -0
- package/vendor/raylib/logo/raylib_64x64.png +0 -0
- package/vendor/raylib/logo/raylib_72x72.png +0 -0
- package/vendor/raylib/logo/raylib_96x96.png +0 -0
- package/vendor/raylib/logo/raylib_logo_animation.gif +0 -0
- package/vendor/raylib/parser/LICENSE +16 -0
- package/vendor/raylib/parser/README.md +63 -0
- package/vendor/raylib/parser/raylib_api.json +6668 -0
- package/vendor/raylib/parser/raylib_api.txt +3568 -0
- package/vendor/raylib/parser/raylib_api.xml +2509 -0
- package/vendor/raylib/parser/raylib_parser.c +1003 -0
- package/vendor/raylib/projects/4coder/Makefile +401 -0
- package/vendor/raylib/projects/4coder/Makefile.Android +300 -0
- package/vendor/raylib/projects/4coder/main.c +39 -0
- package/vendor/raylib/projects/4coder/project.4coder +54 -0
- package/vendor/raylib/projects/Builder/README.md +24 -0
- package/vendor/raylib/projects/Builder/examples/README.md +1 -0
- package/vendor/raylib/projects/Builder/examples/meson.build +25 -0
- package/vendor/raylib/projects/Builder/meson.build +25 -0
- package/vendor/raylib/projects/CMake/CMakeLists.txt +44 -0
- package/vendor/raylib/projects/CMake/core_basic_window.c +62 -0
- package/vendor/raylib/projects/CodeBlocks/README.md +22 -0
- package/vendor/raylib/projects/CodeBlocks/compiler_settings.png +0 -0
- package/vendor/raylib/projects/CodeBlocks/core_basic_window.c +58 -0
- package/vendor/raylib/projects/CodeBlocks/core_basic_window.cbp +137 -0
- package/vendor/raylib/projects/Geany/core_basic_window.c +52 -0
- package/vendor/raylib/projects/Geany/raylib.c.tags +452 -0
- package/vendor/raylib/projects/Geany/raylib_compile_execute.bat +21 -0
- package/vendor/raylib/projects/Geany/raylib_compile_sources.bat +42 -0
- package/vendor/raylib/projects/Geany/raylib_project.geany +41 -0
- package/vendor/raylib/projects/Notepad++/README.md +19 -0
- package/vendor/raylib/projects/Notepad++/c_raylib.xml +3104 -0
- package/vendor/raylib/projects/Notepad++/npes_saved_mingw.txt +0 -0
- package/vendor/raylib/projects/Notepad++/npes_saved_tcc.txt +0 -0
- package/vendor/raylib/projects/Notepad++/npes_saved_w64devkit.txt +0 -0
- package/vendor/raylib/projects/Notepad++/npes_saved_zig.txt +0 -0
- package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_npp.xml +3060 -0
- package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_npp_parser.c +150 -0
- package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h +631 -0
- package/vendor/raylib/projects/README.md +18 -0
- package/vendor/raylib/projects/SublimeText/README.md +13 -0
- package/vendor/raylib/projects/SublimeText/raylib.sublime-build +13 -0
- package/vendor/raylib/projects/SublimeText/raylib.sublime-project +8 -0
- package/vendor/raylib/projects/VS2019/raylib/raylib.rc +0 -0
- package/vendor/raylib/projects/VS2019/raylib/resource.h +14 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/android_native_app_glue.c +437 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/android_native_app_glue.h +344 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/main.c +64 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/AndroidManifest.xml +22 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/build.xml +90 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/project.properties +3 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/raylib_android.Packaging.androidproj +134 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/res/values/strings.xml +4 -0
- package/vendor/raylib/projects/VSCode/.vscode/c_cpp_properties.json +63 -0
- package/vendor/raylib/projects/VSCode/.vscode/launch.json +60 -0
- package/vendor/raylib/projects/VSCode/.vscode/settings.json +11 -0
- package/vendor/raylib/projects/VSCode/.vscode/tasks.json +71 -0
- package/vendor/raylib/projects/VSCode/Makefile +408 -0
- package/vendor/raylib/projects/VSCode/Makefile.Android +300 -0
- package/vendor/raylib/projects/VSCode/main.c +83 -0
- package/vendor/raylib/projects/VSCode/main.code-workspace +16 -0
- package/vendor/raylib/projects/scripts/README.md +68 -0
- package/vendor/raylib/projects/scripts/build-linux.sh +169 -0
- package/vendor/raylib/projects/scripts/build-osx.sh +171 -0
- package/vendor/raylib/projects/scripts/build-rpi.sh +169 -0
- package/vendor/raylib/projects/scripts/build-windows.bat +219 -0
- package/vendor/raylib/projects/scripts/core_basic_window.c +61 -0
- package/vendor/raylib/raylib.pc.in +13 -0
- package/vendor/raylib/src/CMakeLists.txt +121 -0
- package/vendor/raylib/src/Makefile +696 -0
- package/vendor/raylib/src/build.zig +60 -0
- package/vendor/raylib/src/config.h +230 -0
- package/vendor/raylib/src/external/cgltf.h +6501 -0
- package/vendor/raylib/src/external/dirent.h +183 -0
- package/vendor/raylib/src/external/dr_flac.h +12269 -0
- package/vendor/raylib/src/external/dr_mp3.h +4787 -0
- package/vendor/raylib/src/external/dr_wav.h +8019 -0
- package/vendor/raylib/src/external/glad.h +8640 -0
- package/vendor/raylib/src/external/glfw/.mailmap +10 -0
- package/vendor/raylib/src/external/glfw/CMake/GenerateMappings.cmake +33 -0
- package/vendor/raylib/src/external/glfw/CMake/Info.plist.in +38 -0
- package/vendor/raylib/src/external/glfw/CMake/MacOSXBundleInfo.plist.in +38 -0
- package/vendor/raylib/src/external/glfw/CMake/cmake_uninstall.cmake.in +29 -0
- package/vendor/raylib/src/external/glfw/CMake/glfw3.pc.in +13 -0
- package/vendor/raylib/src/external/glfw/CMake/glfw3Config.cmake.in +3 -0
- package/vendor/raylib/src/external/glfw/CMake/i686-w64-mingw32-clang.cmake +13 -0
- package/vendor/raylib/src/external/glfw/CMake/i686-w64-mingw32.cmake +13 -0
- package/vendor/raylib/src/external/glfw/CMake/modules/FindEpollShim.cmake +17 -0
- package/vendor/raylib/src/external/glfw/CMake/modules/FindOSMesa.cmake +18 -0
- package/vendor/raylib/src/external/glfw/CMake/modules/FindWaylandProtocols.cmake +26 -0
- package/vendor/raylib/src/external/glfw/CMake/modules/FindXKBCommon.cmake +34 -0
- package/vendor/raylib/src/external/glfw/CMake/x86_64-w64-mingw32-clang.cmake +13 -0
- package/vendor/raylib/src/external/glfw/CMake/x86_64-w64-mingw32.cmake +13 -0
- package/vendor/raylib/src/external/glfw/CMakeLists.txt +323 -0
- package/vendor/raylib/src/external/glfw/LICENSE.md +23 -0
- package/vendor/raylib/src/external/glfw/README.md +477 -0
- package/vendor/raylib/src/external/glfw/deps/getopt.c +230 -0
- package/vendor/raylib/src/external/glfw/deps/getopt.h +57 -0
- package/vendor/raylib/src/external/glfw/deps/glad/gl.h +3840 -0
- package/vendor/raylib/src/external/glfw/deps/glad/khrplatform.h +282 -0
- package/vendor/raylib/src/external/glfw/deps/glad/vk_platform.h +92 -0
- package/vendor/raylib/src/external/glfw/deps/glad/vulkan.h +3480 -0
- package/vendor/raylib/src/external/glfw/deps/glad_gl.c +1791 -0
- package/vendor/raylib/src/external/glfw/deps/glad_vulkan.c +593 -0
- package/vendor/raylib/src/external/glfw/deps/mingw/_mingw_dxhelper.h +117 -0
- package/vendor/raylib/src/external/glfw/deps/mingw/dinput.h +2467 -0
- package/vendor/raylib/src/external/glfw/deps/mingw/xinput.h +239 -0
- package/vendor/raylib/src/external/glfw/deps/vs2008/stdint.h +247 -0
- package/vendor/raylib/src/external/glfw/include/GLFW/glfw3.h +6075 -0
- package/vendor/raylib/src/external/glfw/include/GLFW/glfw3native.h +530 -0
- package/vendor/raylib/src/external/glfw/src/CMakeLists.txt +246 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_init.m +620 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_joystick.h +46 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_joystick.m +483 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_monitor.m +631 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_platform.h +206 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_time.c +62 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_window.m +1923 -0
- package/vendor/raylib/src/external/glfw/src/context.c +756 -0
- package/vendor/raylib/src/external/glfw/src/egl_context.c +846 -0
- package/vendor/raylib/src/external/glfw/src/egl_context.h +229 -0
- package/vendor/raylib/src/external/glfw/src/glfw.rc.in +30 -0
- package/vendor/raylib/src/external/glfw/src/glfw_config.h.in +58 -0
- package/vendor/raylib/src/external/glfw/src/glx_context.c +699 -0
- package/vendor/raylib/src/external/glfw/src/glx_context.h +181 -0
- package/vendor/raylib/src/external/glfw/src/init.c +357 -0
- package/vendor/raylib/src/external/glfw/src/input.c +1406 -0
- package/vendor/raylib/src/external/glfw/src/internal.h +799 -0
- package/vendor/raylib/src/external/glfw/src/linux_joystick.c +428 -0
- package/vendor/raylib/src/external/glfw/src/linux_joystick.h +59 -0
- package/vendor/raylib/src/external/glfw/src/mappings.h +1550 -0
- package/vendor/raylib/src/external/glfw/src/mappings.h.in +73 -0
- package/vendor/raylib/src/external/glfw/src/monitor.c +542 -0
- package/vendor/raylib/src/external/glfw/src/nsgl_context.h +66 -0
- package/vendor/raylib/src/external/glfw/src/nsgl_context.m +369 -0
- package/vendor/raylib/src/external/glfw/src/null_init.c +57 -0
- package/vendor/raylib/src/external/glfw/src/null_joystick.c +53 -0
- package/vendor/raylib/src/external/glfw/src/null_joystick.h +31 -0
- package/vendor/raylib/src/external/glfw/src/null_monitor.c +159 -0
- package/vendor/raylib/src/external/glfw/src/null_platform.h +89 -0
- package/vendor/raylib/src/external/glfw/src/null_window.c +670 -0
- package/vendor/raylib/src/external/glfw/src/osmesa_context.c +372 -0
- package/vendor/raylib/src/external/glfw/src/osmesa_context.h +90 -0
- package/vendor/raylib/src/external/glfw/src/posix_thread.c +105 -0
- package/vendor/raylib/src/external/glfw/src/posix_thread.h +51 -0
- package/vendor/raylib/src/external/glfw/src/posix_time.c +90 -0
- package/vendor/raylib/src/external/glfw/src/posix_time.h +44 -0
- package/vendor/raylib/src/external/glfw/src/vulkan.c +332 -0
- package/vendor/raylib/src/external/glfw/src/wgl_context.c +798 -0
- package/vendor/raylib/src/external/glfw/src/wgl_context.h +160 -0
- package/vendor/raylib/src/external/glfw/src/win32_init.c +636 -0
- package/vendor/raylib/src/external/glfw/src/win32_joystick.c +753 -0
- package/vendor/raylib/src/external/glfw/src/win32_joystick.h +53 -0
- package/vendor/raylib/src/external/glfw/src/win32_monitor.c +537 -0
- package/vendor/raylib/src/external/glfw/src/win32_platform.h +462 -0
- package/vendor/raylib/src/external/glfw/src/win32_thread.c +99 -0
- package/vendor/raylib/src/external/glfw/src/win32_time.c +76 -0
- package/vendor/raylib/src/external/glfw/src/win32_window.c +2405 -0
- package/vendor/raylib/src/external/glfw/src/window.c +1114 -0
- package/vendor/raylib/src/external/glfw/src/wl_init.c +1310 -0
- package/vendor/raylib/src/external/glfw/src/wl_monitor.c +231 -0
- package/vendor/raylib/src/external/glfw/src/wl_platform.h +352 -0
- package/vendor/raylib/src/external/glfw/src/wl_window.c +1814 -0
- package/vendor/raylib/src/external/glfw/src/x11_init.c +1500 -0
- package/vendor/raylib/src/external/glfw/src/x11_monitor.c +614 -0
- package/vendor/raylib/src/external/glfw/src/x11_platform.h +798 -0
- package/vendor/raylib/src/external/glfw/src/x11_window.c +3310 -0
- package/vendor/raylib/src/external/glfw/src/xkb_unicode.c +942 -0
- package/vendor/raylib/src/external/glfw/src/xkb_unicode.h +28 -0
- package/vendor/raylib/src/external/jar_mod.h +1596 -0
- package/vendor/raylib/src/external/jar_xm.h +2470 -0
- package/vendor/raylib/src/external/miniaudio.h +70273 -0
- package/vendor/raylib/src/external/msf_gif.h +717 -0
- package/vendor/raylib/src/external/par_shapes.h +2155 -0
- package/vendor/raylib/src/external/sdefl.h +696 -0
- package/vendor/raylib/src/external/sinfl.h +584 -0
- package/vendor/raylib/src/external/stb_image.h +7897 -0
- package/vendor/raylib/src/external/stb_image_resize.h +2634 -0
- package/vendor/raylib/src/external/stb_image_write.h +1724 -0
- package/vendor/raylib/src/external/stb_rect_pack.h +623 -0
- package/vendor/raylib/src/external/stb_truetype.h +5077 -0
- package/vendor/raylib/src/external/stb_vorbis.h +5475 -0
- package/vendor/raylib/src/external/tinyobj_loader_c.h +1589 -0
- package/vendor/raylib/src/external/vox_loader.h +710 -0
- package/vendor/raylib/src/extras/easings.h +263 -0
- package/vendor/raylib/src/extras/physac.h +1977 -0
- package/vendor/raylib/src/extras/raygui.h +4342 -0
- package/vendor/raylib/src/extras/rmem.h +751 -0
- package/vendor/raylib/src/raudio.c +2380 -0
- package/vendor/raylib/src/raudio.h +198 -0
- package/vendor/raylib/src/raylib.dll.rc +27 -0
- package/vendor/raylib/src/raylib.dll.rc.data +0 -0
- package/vendor/raylib/src/raylib.h +1536 -0
- package/vendor/raylib/src/raylib.ico +0 -0
- package/vendor/raylib/src/raylib.rc +27 -0
- package/vendor/raylib/src/raylib.rc.data +0 -0
- package/vendor/raylib/src/raymath.h +1853 -0
- package/vendor/raylib/src/rcamera.h +567 -0
- package/vendor/raylib/src/rcore.c +6772 -0
- package/vendor/raylib/src/rgestures.h +566 -0
- package/vendor/raylib/src/rglfw.c +126 -0
- package/vendor/raylib/src/rlgl.h +4677 -0
- package/vendor/raylib/src/rmodels.c +5041 -0
- package/vendor/raylib/src/rshapes.c +1759 -0
- package/vendor/raylib/src/rtext.c +1790 -0
- package/vendor/raylib/src/rtextures.c +4761 -0
- package/vendor/raylib/src/shell.html +328 -0
- package/vendor/raylib/src/utils.c +433 -0
- package/vendor/raylib/src/utils.h +81 -0
- package/vendor/sqlite3/shell.c +23487 -0
- package/vendor/sqlite3/sqlite3.c +239246 -0
- package/vendor/sqlite3/sqlite3.h +12802 -0
- package/vendor/sqlite3/sqlite3ext.h +689 -0
- package/CMakeLists.txt +0 -63
|
@@ -0,0 +1,942 @@
|
|
|
1
|
+
//========================================================================
|
|
2
|
+
// GLFW 3.4 X11 - www.glfw.org
|
|
3
|
+
//------------------------------------------------------------------------
|
|
4
|
+
// Copyright (c) 2002-2006 Marcus Geelnard
|
|
5
|
+
// Copyright (c) 2006-2017 Camilla Löwy <elmindreda@glfw.org>
|
|
6
|
+
//
|
|
7
|
+
// This software is provided 'as-is', without any express or implied
|
|
8
|
+
// warranty. In no event will the authors be held liable for any damages
|
|
9
|
+
// arising from the use of this software.
|
|
10
|
+
//
|
|
11
|
+
// Permission is granted to anyone to use this software for any purpose,
|
|
12
|
+
// including commercial applications, and to alter it and redistribute it
|
|
13
|
+
// freely, subject to the following restrictions:
|
|
14
|
+
//
|
|
15
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
|
16
|
+
// claim that you wrote the original software. If you use this software
|
|
17
|
+
// in a product, an acknowledgment in the product documentation would
|
|
18
|
+
// be appreciated but is not required.
|
|
19
|
+
//
|
|
20
|
+
// 2. Altered source versions must be plainly marked as such, and must not
|
|
21
|
+
// be misrepresented as being the original software.
|
|
22
|
+
//
|
|
23
|
+
// 3. This notice may not be removed or altered from any source
|
|
24
|
+
// distribution.
|
|
25
|
+
//
|
|
26
|
+
//========================================================================
|
|
27
|
+
// It is fine to use C99 in this file because it will not be built with VS
|
|
28
|
+
//========================================================================
|
|
29
|
+
|
|
30
|
+
#include "internal.h"
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
/*
|
|
34
|
+
* Marcus: This code was originally written by Markus G. Kuhn.
|
|
35
|
+
* I have made some slight changes (trimmed it down a bit from >60 KB to
|
|
36
|
+
* 20 KB), but the functionality is the same.
|
|
37
|
+
*/
|
|
38
|
+
|
|
39
|
+
/*
|
|
40
|
+
* This module converts keysym values into the corresponding ISO 10646
|
|
41
|
+
* (UCS, Unicode) values.
|
|
42
|
+
*
|
|
43
|
+
* The array keysymtab[] contains pairs of X11 keysym values for graphical
|
|
44
|
+
* characters and the corresponding Unicode value. The function
|
|
45
|
+
* _glfwKeySym2Unicode() maps a keysym onto a Unicode value using a binary
|
|
46
|
+
* search, therefore keysymtab[] must remain SORTED by keysym value.
|
|
47
|
+
*
|
|
48
|
+
* We allow to represent any UCS character in the range U-00000000 to
|
|
49
|
+
* U-00FFFFFF by a keysym value in the range 0x01000000 to 0x01ffffff.
|
|
50
|
+
* This admittedly does not cover the entire 31-bit space of UCS, but
|
|
51
|
+
* it does cover all of the characters up to U-10FFFF, which can be
|
|
52
|
+
* represented by UTF-16, and more, and it is very unlikely that higher
|
|
53
|
+
* UCS codes will ever be assigned by ISO. So to get Unicode character
|
|
54
|
+
* U+ABCD you can directly use keysym 0x0100abcd.
|
|
55
|
+
*
|
|
56
|
+
* Original author: Markus G. Kuhn <mkuhn@acm.org>, University of
|
|
57
|
+
* Cambridge, April 2001
|
|
58
|
+
*
|
|
59
|
+
* Special thanks to Richard Verhoeven <river@win.tue.nl> for preparing
|
|
60
|
+
* an initial draft of the mapping table.
|
|
61
|
+
*
|
|
62
|
+
*/
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
//************************************************************************
|
|
66
|
+
//**** KeySym to Unicode mapping table ****
|
|
67
|
+
//************************************************************************
|
|
68
|
+
|
|
69
|
+
static const struct codepair {
|
|
70
|
+
unsigned short keysym;
|
|
71
|
+
unsigned short ucs;
|
|
72
|
+
} keysymtab[] = {
|
|
73
|
+
{ 0x01a1, 0x0104 },
|
|
74
|
+
{ 0x01a2, 0x02d8 },
|
|
75
|
+
{ 0x01a3, 0x0141 },
|
|
76
|
+
{ 0x01a5, 0x013d },
|
|
77
|
+
{ 0x01a6, 0x015a },
|
|
78
|
+
{ 0x01a9, 0x0160 },
|
|
79
|
+
{ 0x01aa, 0x015e },
|
|
80
|
+
{ 0x01ab, 0x0164 },
|
|
81
|
+
{ 0x01ac, 0x0179 },
|
|
82
|
+
{ 0x01ae, 0x017d },
|
|
83
|
+
{ 0x01af, 0x017b },
|
|
84
|
+
{ 0x01b1, 0x0105 },
|
|
85
|
+
{ 0x01b2, 0x02db },
|
|
86
|
+
{ 0x01b3, 0x0142 },
|
|
87
|
+
{ 0x01b5, 0x013e },
|
|
88
|
+
{ 0x01b6, 0x015b },
|
|
89
|
+
{ 0x01b7, 0x02c7 },
|
|
90
|
+
{ 0x01b9, 0x0161 },
|
|
91
|
+
{ 0x01ba, 0x015f },
|
|
92
|
+
{ 0x01bb, 0x0165 },
|
|
93
|
+
{ 0x01bc, 0x017a },
|
|
94
|
+
{ 0x01bd, 0x02dd },
|
|
95
|
+
{ 0x01be, 0x017e },
|
|
96
|
+
{ 0x01bf, 0x017c },
|
|
97
|
+
{ 0x01c0, 0x0154 },
|
|
98
|
+
{ 0x01c3, 0x0102 },
|
|
99
|
+
{ 0x01c5, 0x0139 },
|
|
100
|
+
{ 0x01c6, 0x0106 },
|
|
101
|
+
{ 0x01c8, 0x010c },
|
|
102
|
+
{ 0x01ca, 0x0118 },
|
|
103
|
+
{ 0x01cc, 0x011a },
|
|
104
|
+
{ 0x01cf, 0x010e },
|
|
105
|
+
{ 0x01d0, 0x0110 },
|
|
106
|
+
{ 0x01d1, 0x0143 },
|
|
107
|
+
{ 0x01d2, 0x0147 },
|
|
108
|
+
{ 0x01d5, 0x0150 },
|
|
109
|
+
{ 0x01d8, 0x0158 },
|
|
110
|
+
{ 0x01d9, 0x016e },
|
|
111
|
+
{ 0x01db, 0x0170 },
|
|
112
|
+
{ 0x01de, 0x0162 },
|
|
113
|
+
{ 0x01e0, 0x0155 },
|
|
114
|
+
{ 0x01e3, 0x0103 },
|
|
115
|
+
{ 0x01e5, 0x013a },
|
|
116
|
+
{ 0x01e6, 0x0107 },
|
|
117
|
+
{ 0x01e8, 0x010d },
|
|
118
|
+
{ 0x01ea, 0x0119 },
|
|
119
|
+
{ 0x01ec, 0x011b },
|
|
120
|
+
{ 0x01ef, 0x010f },
|
|
121
|
+
{ 0x01f0, 0x0111 },
|
|
122
|
+
{ 0x01f1, 0x0144 },
|
|
123
|
+
{ 0x01f2, 0x0148 },
|
|
124
|
+
{ 0x01f5, 0x0151 },
|
|
125
|
+
{ 0x01f8, 0x0159 },
|
|
126
|
+
{ 0x01f9, 0x016f },
|
|
127
|
+
{ 0x01fb, 0x0171 },
|
|
128
|
+
{ 0x01fe, 0x0163 },
|
|
129
|
+
{ 0x01ff, 0x02d9 },
|
|
130
|
+
{ 0x02a1, 0x0126 },
|
|
131
|
+
{ 0x02a6, 0x0124 },
|
|
132
|
+
{ 0x02a9, 0x0130 },
|
|
133
|
+
{ 0x02ab, 0x011e },
|
|
134
|
+
{ 0x02ac, 0x0134 },
|
|
135
|
+
{ 0x02b1, 0x0127 },
|
|
136
|
+
{ 0x02b6, 0x0125 },
|
|
137
|
+
{ 0x02b9, 0x0131 },
|
|
138
|
+
{ 0x02bb, 0x011f },
|
|
139
|
+
{ 0x02bc, 0x0135 },
|
|
140
|
+
{ 0x02c5, 0x010a },
|
|
141
|
+
{ 0x02c6, 0x0108 },
|
|
142
|
+
{ 0x02d5, 0x0120 },
|
|
143
|
+
{ 0x02d8, 0x011c },
|
|
144
|
+
{ 0x02dd, 0x016c },
|
|
145
|
+
{ 0x02de, 0x015c },
|
|
146
|
+
{ 0x02e5, 0x010b },
|
|
147
|
+
{ 0x02e6, 0x0109 },
|
|
148
|
+
{ 0x02f5, 0x0121 },
|
|
149
|
+
{ 0x02f8, 0x011d },
|
|
150
|
+
{ 0x02fd, 0x016d },
|
|
151
|
+
{ 0x02fe, 0x015d },
|
|
152
|
+
{ 0x03a2, 0x0138 },
|
|
153
|
+
{ 0x03a3, 0x0156 },
|
|
154
|
+
{ 0x03a5, 0x0128 },
|
|
155
|
+
{ 0x03a6, 0x013b },
|
|
156
|
+
{ 0x03aa, 0x0112 },
|
|
157
|
+
{ 0x03ab, 0x0122 },
|
|
158
|
+
{ 0x03ac, 0x0166 },
|
|
159
|
+
{ 0x03b3, 0x0157 },
|
|
160
|
+
{ 0x03b5, 0x0129 },
|
|
161
|
+
{ 0x03b6, 0x013c },
|
|
162
|
+
{ 0x03ba, 0x0113 },
|
|
163
|
+
{ 0x03bb, 0x0123 },
|
|
164
|
+
{ 0x03bc, 0x0167 },
|
|
165
|
+
{ 0x03bd, 0x014a },
|
|
166
|
+
{ 0x03bf, 0x014b },
|
|
167
|
+
{ 0x03c0, 0x0100 },
|
|
168
|
+
{ 0x03c7, 0x012e },
|
|
169
|
+
{ 0x03cc, 0x0116 },
|
|
170
|
+
{ 0x03cf, 0x012a },
|
|
171
|
+
{ 0x03d1, 0x0145 },
|
|
172
|
+
{ 0x03d2, 0x014c },
|
|
173
|
+
{ 0x03d3, 0x0136 },
|
|
174
|
+
{ 0x03d9, 0x0172 },
|
|
175
|
+
{ 0x03dd, 0x0168 },
|
|
176
|
+
{ 0x03de, 0x016a },
|
|
177
|
+
{ 0x03e0, 0x0101 },
|
|
178
|
+
{ 0x03e7, 0x012f },
|
|
179
|
+
{ 0x03ec, 0x0117 },
|
|
180
|
+
{ 0x03ef, 0x012b },
|
|
181
|
+
{ 0x03f1, 0x0146 },
|
|
182
|
+
{ 0x03f2, 0x014d },
|
|
183
|
+
{ 0x03f3, 0x0137 },
|
|
184
|
+
{ 0x03f9, 0x0173 },
|
|
185
|
+
{ 0x03fd, 0x0169 },
|
|
186
|
+
{ 0x03fe, 0x016b },
|
|
187
|
+
{ 0x047e, 0x203e },
|
|
188
|
+
{ 0x04a1, 0x3002 },
|
|
189
|
+
{ 0x04a2, 0x300c },
|
|
190
|
+
{ 0x04a3, 0x300d },
|
|
191
|
+
{ 0x04a4, 0x3001 },
|
|
192
|
+
{ 0x04a5, 0x30fb },
|
|
193
|
+
{ 0x04a6, 0x30f2 },
|
|
194
|
+
{ 0x04a7, 0x30a1 },
|
|
195
|
+
{ 0x04a8, 0x30a3 },
|
|
196
|
+
{ 0x04a9, 0x30a5 },
|
|
197
|
+
{ 0x04aa, 0x30a7 },
|
|
198
|
+
{ 0x04ab, 0x30a9 },
|
|
199
|
+
{ 0x04ac, 0x30e3 },
|
|
200
|
+
{ 0x04ad, 0x30e5 },
|
|
201
|
+
{ 0x04ae, 0x30e7 },
|
|
202
|
+
{ 0x04af, 0x30c3 },
|
|
203
|
+
{ 0x04b0, 0x30fc },
|
|
204
|
+
{ 0x04b1, 0x30a2 },
|
|
205
|
+
{ 0x04b2, 0x30a4 },
|
|
206
|
+
{ 0x04b3, 0x30a6 },
|
|
207
|
+
{ 0x04b4, 0x30a8 },
|
|
208
|
+
{ 0x04b5, 0x30aa },
|
|
209
|
+
{ 0x04b6, 0x30ab },
|
|
210
|
+
{ 0x04b7, 0x30ad },
|
|
211
|
+
{ 0x04b8, 0x30af },
|
|
212
|
+
{ 0x04b9, 0x30b1 },
|
|
213
|
+
{ 0x04ba, 0x30b3 },
|
|
214
|
+
{ 0x04bb, 0x30b5 },
|
|
215
|
+
{ 0x04bc, 0x30b7 },
|
|
216
|
+
{ 0x04bd, 0x30b9 },
|
|
217
|
+
{ 0x04be, 0x30bb },
|
|
218
|
+
{ 0x04bf, 0x30bd },
|
|
219
|
+
{ 0x04c0, 0x30bf },
|
|
220
|
+
{ 0x04c1, 0x30c1 },
|
|
221
|
+
{ 0x04c2, 0x30c4 },
|
|
222
|
+
{ 0x04c3, 0x30c6 },
|
|
223
|
+
{ 0x04c4, 0x30c8 },
|
|
224
|
+
{ 0x04c5, 0x30ca },
|
|
225
|
+
{ 0x04c6, 0x30cb },
|
|
226
|
+
{ 0x04c7, 0x30cc },
|
|
227
|
+
{ 0x04c8, 0x30cd },
|
|
228
|
+
{ 0x04c9, 0x30ce },
|
|
229
|
+
{ 0x04ca, 0x30cf },
|
|
230
|
+
{ 0x04cb, 0x30d2 },
|
|
231
|
+
{ 0x04cc, 0x30d5 },
|
|
232
|
+
{ 0x04cd, 0x30d8 },
|
|
233
|
+
{ 0x04ce, 0x30db },
|
|
234
|
+
{ 0x04cf, 0x30de },
|
|
235
|
+
{ 0x04d0, 0x30df },
|
|
236
|
+
{ 0x04d1, 0x30e0 },
|
|
237
|
+
{ 0x04d2, 0x30e1 },
|
|
238
|
+
{ 0x04d3, 0x30e2 },
|
|
239
|
+
{ 0x04d4, 0x30e4 },
|
|
240
|
+
{ 0x04d5, 0x30e6 },
|
|
241
|
+
{ 0x04d6, 0x30e8 },
|
|
242
|
+
{ 0x04d7, 0x30e9 },
|
|
243
|
+
{ 0x04d8, 0x30ea },
|
|
244
|
+
{ 0x04d9, 0x30eb },
|
|
245
|
+
{ 0x04da, 0x30ec },
|
|
246
|
+
{ 0x04db, 0x30ed },
|
|
247
|
+
{ 0x04dc, 0x30ef },
|
|
248
|
+
{ 0x04dd, 0x30f3 },
|
|
249
|
+
{ 0x04de, 0x309b },
|
|
250
|
+
{ 0x04df, 0x309c },
|
|
251
|
+
{ 0x05ac, 0x060c },
|
|
252
|
+
{ 0x05bb, 0x061b },
|
|
253
|
+
{ 0x05bf, 0x061f },
|
|
254
|
+
{ 0x05c1, 0x0621 },
|
|
255
|
+
{ 0x05c2, 0x0622 },
|
|
256
|
+
{ 0x05c3, 0x0623 },
|
|
257
|
+
{ 0x05c4, 0x0624 },
|
|
258
|
+
{ 0x05c5, 0x0625 },
|
|
259
|
+
{ 0x05c6, 0x0626 },
|
|
260
|
+
{ 0x05c7, 0x0627 },
|
|
261
|
+
{ 0x05c8, 0x0628 },
|
|
262
|
+
{ 0x05c9, 0x0629 },
|
|
263
|
+
{ 0x05ca, 0x062a },
|
|
264
|
+
{ 0x05cb, 0x062b },
|
|
265
|
+
{ 0x05cc, 0x062c },
|
|
266
|
+
{ 0x05cd, 0x062d },
|
|
267
|
+
{ 0x05ce, 0x062e },
|
|
268
|
+
{ 0x05cf, 0x062f },
|
|
269
|
+
{ 0x05d0, 0x0630 },
|
|
270
|
+
{ 0x05d1, 0x0631 },
|
|
271
|
+
{ 0x05d2, 0x0632 },
|
|
272
|
+
{ 0x05d3, 0x0633 },
|
|
273
|
+
{ 0x05d4, 0x0634 },
|
|
274
|
+
{ 0x05d5, 0x0635 },
|
|
275
|
+
{ 0x05d6, 0x0636 },
|
|
276
|
+
{ 0x05d7, 0x0637 },
|
|
277
|
+
{ 0x05d8, 0x0638 },
|
|
278
|
+
{ 0x05d9, 0x0639 },
|
|
279
|
+
{ 0x05da, 0x063a },
|
|
280
|
+
{ 0x05e0, 0x0640 },
|
|
281
|
+
{ 0x05e1, 0x0641 },
|
|
282
|
+
{ 0x05e2, 0x0642 },
|
|
283
|
+
{ 0x05e3, 0x0643 },
|
|
284
|
+
{ 0x05e4, 0x0644 },
|
|
285
|
+
{ 0x05e5, 0x0645 },
|
|
286
|
+
{ 0x05e6, 0x0646 },
|
|
287
|
+
{ 0x05e7, 0x0647 },
|
|
288
|
+
{ 0x05e8, 0x0648 },
|
|
289
|
+
{ 0x05e9, 0x0649 },
|
|
290
|
+
{ 0x05ea, 0x064a },
|
|
291
|
+
{ 0x05eb, 0x064b },
|
|
292
|
+
{ 0x05ec, 0x064c },
|
|
293
|
+
{ 0x05ed, 0x064d },
|
|
294
|
+
{ 0x05ee, 0x064e },
|
|
295
|
+
{ 0x05ef, 0x064f },
|
|
296
|
+
{ 0x05f0, 0x0650 },
|
|
297
|
+
{ 0x05f1, 0x0651 },
|
|
298
|
+
{ 0x05f2, 0x0652 },
|
|
299
|
+
{ 0x06a1, 0x0452 },
|
|
300
|
+
{ 0x06a2, 0x0453 },
|
|
301
|
+
{ 0x06a3, 0x0451 },
|
|
302
|
+
{ 0x06a4, 0x0454 },
|
|
303
|
+
{ 0x06a5, 0x0455 },
|
|
304
|
+
{ 0x06a6, 0x0456 },
|
|
305
|
+
{ 0x06a7, 0x0457 },
|
|
306
|
+
{ 0x06a8, 0x0458 },
|
|
307
|
+
{ 0x06a9, 0x0459 },
|
|
308
|
+
{ 0x06aa, 0x045a },
|
|
309
|
+
{ 0x06ab, 0x045b },
|
|
310
|
+
{ 0x06ac, 0x045c },
|
|
311
|
+
{ 0x06ae, 0x045e },
|
|
312
|
+
{ 0x06af, 0x045f },
|
|
313
|
+
{ 0x06b0, 0x2116 },
|
|
314
|
+
{ 0x06b1, 0x0402 },
|
|
315
|
+
{ 0x06b2, 0x0403 },
|
|
316
|
+
{ 0x06b3, 0x0401 },
|
|
317
|
+
{ 0x06b4, 0x0404 },
|
|
318
|
+
{ 0x06b5, 0x0405 },
|
|
319
|
+
{ 0x06b6, 0x0406 },
|
|
320
|
+
{ 0x06b7, 0x0407 },
|
|
321
|
+
{ 0x06b8, 0x0408 },
|
|
322
|
+
{ 0x06b9, 0x0409 },
|
|
323
|
+
{ 0x06ba, 0x040a },
|
|
324
|
+
{ 0x06bb, 0x040b },
|
|
325
|
+
{ 0x06bc, 0x040c },
|
|
326
|
+
{ 0x06be, 0x040e },
|
|
327
|
+
{ 0x06bf, 0x040f },
|
|
328
|
+
{ 0x06c0, 0x044e },
|
|
329
|
+
{ 0x06c1, 0x0430 },
|
|
330
|
+
{ 0x06c2, 0x0431 },
|
|
331
|
+
{ 0x06c3, 0x0446 },
|
|
332
|
+
{ 0x06c4, 0x0434 },
|
|
333
|
+
{ 0x06c5, 0x0435 },
|
|
334
|
+
{ 0x06c6, 0x0444 },
|
|
335
|
+
{ 0x06c7, 0x0433 },
|
|
336
|
+
{ 0x06c8, 0x0445 },
|
|
337
|
+
{ 0x06c9, 0x0438 },
|
|
338
|
+
{ 0x06ca, 0x0439 },
|
|
339
|
+
{ 0x06cb, 0x043a },
|
|
340
|
+
{ 0x06cc, 0x043b },
|
|
341
|
+
{ 0x06cd, 0x043c },
|
|
342
|
+
{ 0x06ce, 0x043d },
|
|
343
|
+
{ 0x06cf, 0x043e },
|
|
344
|
+
{ 0x06d0, 0x043f },
|
|
345
|
+
{ 0x06d1, 0x044f },
|
|
346
|
+
{ 0x06d2, 0x0440 },
|
|
347
|
+
{ 0x06d3, 0x0441 },
|
|
348
|
+
{ 0x06d4, 0x0442 },
|
|
349
|
+
{ 0x06d5, 0x0443 },
|
|
350
|
+
{ 0x06d6, 0x0436 },
|
|
351
|
+
{ 0x06d7, 0x0432 },
|
|
352
|
+
{ 0x06d8, 0x044c },
|
|
353
|
+
{ 0x06d9, 0x044b },
|
|
354
|
+
{ 0x06da, 0x0437 },
|
|
355
|
+
{ 0x06db, 0x0448 },
|
|
356
|
+
{ 0x06dc, 0x044d },
|
|
357
|
+
{ 0x06dd, 0x0449 },
|
|
358
|
+
{ 0x06de, 0x0447 },
|
|
359
|
+
{ 0x06df, 0x044a },
|
|
360
|
+
{ 0x06e0, 0x042e },
|
|
361
|
+
{ 0x06e1, 0x0410 },
|
|
362
|
+
{ 0x06e2, 0x0411 },
|
|
363
|
+
{ 0x06e3, 0x0426 },
|
|
364
|
+
{ 0x06e4, 0x0414 },
|
|
365
|
+
{ 0x06e5, 0x0415 },
|
|
366
|
+
{ 0x06e6, 0x0424 },
|
|
367
|
+
{ 0x06e7, 0x0413 },
|
|
368
|
+
{ 0x06e8, 0x0425 },
|
|
369
|
+
{ 0x06e9, 0x0418 },
|
|
370
|
+
{ 0x06ea, 0x0419 },
|
|
371
|
+
{ 0x06eb, 0x041a },
|
|
372
|
+
{ 0x06ec, 0x041b },
|
|
373
|
+
{ 0x06ed, 0x041c },
|
|
374
|
+
{ 0x06ee, 0x041d },
|
|
375
|
+
{ 0x06ef, 0x041e },
|
|
376
|
+
{ 0x06f0, 0x041f },
|
|
377
|
+
{ 0x06f1, 0x042f },
|
|
378
|
+
{ 0x06f2, 0x0420 },
|
|
379
|
+
{ 0x06f3, 0x0421 },
|
|
380
|
+
{ 0x06f4, 0x0422 },
|
|
381
|
+
{ 0x06f5, 0x0423 },
|
|
382
|
+
{ 0x06f6, 0x0416 },
|
|
383
|
+
{ 0x06f7, 0x0412 },
|
|
384
|
+
{ 0x06f8, 0x042c },
|
|
385
|
+
{ 0x06f9, 0x042b },
|
|
386
|
+
{ 0x06fa, 0x0417 },
|
|
387
|
+
{ 0x06fb, 0x0428 },
|
|
388
|
+
{ 0x06fc, 0x042d },
|
|
389
|
+
{ 0x06fd, 0x0429 },
|
|
390
|
+
{ 0x06fe, 0x0427 },
|
|
391
|
+
{ 0x06ff, 0x042a },
|
|
392
|
+
{ 0x07a1, 0x0386 },
|
|
393
|
+
{ 0x07a2, 0x0388 },
|
|
394
|
+
{ 0x07a3, 0x0389 },
|
|
395
|
+
{ 0x07a4, 0x038a },
|
|
396
|
+
{ 0x07a5, 0x03aa },
|
|
397
|
+
{ 0x07a7, 0x038c },
|
|
398
|
+
{ 0x07a8, 0x038e },
|
|
399
|
+
{ 0x07a9, 0x03ab },
|
|
400
|
+
{ 0x07ab, 0x038f },
|
|
401
|
+
{ 0x07ae, 0x0385 },
|
|
402
|
+
{ 0x07af, 0x2015 },
|
|
403
|
+
{ 0x07b1, 0x03ac },
|
|
404
|
+
{ 0x07b2, 0x03ad },
|
|
405
|
+
{ 0x07b3, 0x03ae },
|
|
406
|
+
{ 0x07b4, 0x03af },
|
|
407
|
+
{ 0x07b5, 0x03ca },
|
|
408
|
+
{ 0x07b6, 0x0390 },
|
|
409
|
+
{ 0x07b7, 0x03cc },
|
|
410
|
+
{ 0x07b8, 0x03cd },
|
|
411
|
+
{ 0x07b9, 0x03cb },
|
|
412
|
+
{ 0x07ba, 0x03b0 },
|
|
413
|
+
{ 0x07bb, 0x03ce },
|
|
414
|
+
{ 0x07c1, 0x0391 },
|
|
415
|
+
{ 0x07c2, 0x0392 },
|
|
416
|
+
{ 0x07c3, 0x0393 },
|
|
417
|
+
{ 0x07c4, 0x0394 },
|
|
418
|
+
{ 0x07c5, 0x0395 },
|
|
419
|
+
{ 0x07c6, 0x0396 },
|
|
420
|
+
{ 0x07c7, 0x0397 },
|
|
421
|
+
{ 0x07c8, 0x0398 },
|
|
422
|
+
{ 0x07c9, 0x0399 },
|
|
423
|
+
{ 0x07ca, 0x039a },
|
|
424
|
+
{ 0x07cb, 0x039b },
|
|
425
|
+
{ 0x07cc, 0x039c },
|
|
426
|
+
{ 0x07cd, 0x039d },
|
|
427
|
+
{ 0x07ce, 0x039e },
|
|
428
|
+
{ 0x07cf, 0x039f },
|
|
429
|
+
{ 0x07d0, 0x03a0 },
|
|
430
|
+
{ 0x07d1, 0x03a1 },
|
|
431
|
+
{ 0x07d2, 0x03a3 },
|
|
432
|
+
{ 0x07d4, 0x03a4 },
|
|
433
|
+
{ 0x07d5, 0x03a5 },
|
|
434
|
+
{ 0x07d6, 0x03a6 },
|
|
435
|
+
{ 0x07d7, 0x03a7 },
|
|
436
|
+
{ 0x07d8, 0x03a8 },
|
|
437
|
+
{ 0x07d9, 0x03a9 },
|
|
438
|
+
{ 0x07e1, 0x03b1 },
|
|
439
|
+
{ 0x07e2, 0x03b2 },
|
|
440
|
+
{ 0x07e3, 0x03b3 },
|
|
441
|
+
{ 0x07e4, 0x03b4 },
|
|
442
|
+
{ 0x07e5, 0x03b5 },
|
|
443
|
+
{ 0x07e6, 0x03b6 },
|
|
444
|
+
{ 0x07e7, 0x03b7 },
|
|
445
|
+
{ 0x07e8, 0x03b8 },
|
|
446
|
+
{ 0x07e9, 0x03b9 },
|
|
447
|
+
{ 0x07ea, 0x03ba },
|
|
448
|
+
{ 0x07eb, 0x03bb },
|
|
449
|
+
{ 0x07ec, 0x03bc },
|
|
450
|
+
{ 0x07ed, 0x03bd },
|
|
451
|
+
{ 0x07ee, 0x03be },
|
|
452
|
+
{ 0x07ef, 0x03bf },
|
|
453
|
+
{ 0x07f0, 0x03c0 },
|
|
454
|
+
{ 0x07f1, 0x03c1 },
|
|
455
|
+
{ 0x07f2, 0x03c3 },
|
|
456
|
+
{ 0x07f3, 0x03c2 },
|
|
457
|
+
{ 0x07f4, 0x03c4 },
|
|
458
|
+
{ 0x07f5, 0x03c5 },
|
|
459
|
+
{ 0x07f6, 0x03c6 },
|
|
460
|
+
{ 0x07f7, 0x03c7 },
|
|
461
|
+
{ 0x07f8, 0x03c8 },
|
|
462
|
+
{ 0x07f9, 0x03c9 },
|
|
463
|
+
{ 0x08a1, 0x23b7 },
|
|
464
|
+
{ 0x08a2, 0x250c },
|
|
465
|
+
{ 0x08a3, 0x2500 },
|
|
466
|
+
{ 0x08a4, 0x2320 },
|
|
467
|
+
{ 0x08a5, 0x2321 },
|
|
468
|
+
{ 0x08a6, 0x2502 },
|
|
469
|
+
{ 0x08a7, 0x23a1 },
|
|
470
|
+
{ 0x08a8, 0x23a3 },
|
|
471
|
+
{ 0x08a9, 0x23a4 },
|
|
472
|
+
{ 0x08aa, 0x23a6 },
|
|
473
|
+
{ 0x08ab, 0x239b },
|
|
474
|
+
{ 0x08ac, 0x239d },
|
|
475
|
+
{ 0x08ad, 0x239e },
|
|
476
|
+
{ 0x08ae, 0x23a0 },
|
|
477
|
+
{ 0x08af, 0x23a8 },
|
|
478
|
+
{ 0x08b0, 0x23ac },
|
|
479
|
+
{ 0x08bc, 0x2264 },
|
|
480
|
+
{ 0x08bd, 0x2260 },
|
|
481
|
+
{ 0x08be, 0x2265 },
|
|
482
|
+
{ 0x08bf, 0x222b },
|
|
483
|
+
{ 0x08c0, 0x2234 },
|
|
484
|
+
{ 0x08c1, 0x221d },
|
|
485
|
+
{ 0x08c2, 0x221e },
|
|
486
|
+
{ 0x08c5, 0x2207 },
|
|
487
|
+
{ 0x08c8, 0x223c },
|
|
488
|
+
{ 0x08c9, 0x2243 },
|
|
489
|
+
{ 0x08cd, 0x21d4 },
|
|
490
|
+
{ 0x08ce, 0x21d2 },
|
|
491
|
+
{ 0x08cf, 0x2261 },
|
|
492
|
+
{ 0x08d6, 0x221a },
|
|
493
|
+
{ 0x08da, 0x2282 },
|
|
494
|
+
{ 0x08db, 0x2283 },
|
|
495
|
+
{ 0x08dc, 0x2229 },
|
|
496
|
+
{ 0x08dd, 0x222a },
|
|
497
|
+
{ 0x08de, 0x2227 },
|
|
498
|
+
{ 0x08df, 0x2228 },
|
|
499
|
+
{ 0x08ef, 0x2202 },
|
|
500
|
+
{ 0x08f6, 0x0192 },
|
|
501
|
+
{ 0x08fb, 0x2190 },
|
|
502
|
+
{ 0x08fc, 0x2191 },
|
|
503
|
+
{ 0x08fd, 0x2192 },
|
|
504
|
+
{ 0x08fe, 0x2193 },
|
|
505
|
+
{ 0x09e0, 0x25c6 },
|
|
506
|
+
{ 0x09e1, 0x2592 },
|
|
507
|
+
{ 0x09e2, 0x2409 },
|
|
508
|
+
{ 0x09e3, 0x240c },
|
|
509
|
+
{ 0x09e4, 0x240d },
|
|
510
|
+
{ 0x09e5, 0x240a },
|
|
511
|
+
{ 0x09e8, 0x2424 },
|
|
512
|
+
{ 0x09e9, 0x240b },
|
|
513
|
+
{ 0x09ea, 0x2518 },
|
|
514
|
+
{ 0x09eb, 0x2510 },
|
|
515
|
+
{ 0x09ec, 0x250c },
|
|
516
|
+
{ 0x09ed, 0x2514 },
|
|
517
|
+
{ 0x09ee, 0x253c },
|
|
518
|
+
{ 0x09ef, 0x23ba },
|
|
519
|
+
{ 0x09f0, 0x23bb },
|
|
520
|
+
{ 0x09f1, 0x2500 },
|
|
521
|
+
{ 0x09f2, 0x23bc },
|
|
522
|
+
{ 0x09f3, 0x23bd },
|
|
523
|
+
{ 0x09f4, 0x251c },
|
|
524
|
+
{ 0x09f5, 0x2524 },
|
|
525
|
+
{ 0x09f6, 0x2534 },
|
|
526
|
+
{ 0x09f7, 0x252c },
|
|
527
|
+
{ 0x09f8, 0x2502 },
|
|
528
|
+
{ 0x0aa1, 0x2003 },
|
|
529
|
+
{ 0x0aa2, 0x2002 },
|
|
530
|
+
{ 0x0aa3, 0x2004 },
|
|
531
|
+
{ 0x0aa4, 0x2005 },
|
|
532
|
+
{ 0x0aa5, 0x2007 },
|
|
533
|
+
{ 0x0aa6, 0x2008 },
|
|
534
|
+
{ 0x0aa7, 0x2009 },
|
|
535
|
+
{ 0x0aa8, 0x200a },
|
|
536
|
+
{ 0x0aa9, 0x2014 },
|
|
537
|
+
{ 0x0aaa, 0x2013 },
|
|
538
|
+
{ 0x0aae, 0x2026 },
|
|
539
|
+
{ 0x0aaf, 0x2025 },
|
|
540
|
+
{ 0x0ab0, 0x2153 },
|
|
541
|
+
{ 0x0ab1, 0x2154 },
|
|
542
|
+
{ 0x0ab2, 0x2155 },
|
|
543
|
+
{ 0x0ab3, 0x2156 },
|
|
544
|
+
{ 0x0ab4, 0x2157 },
|
|
545
|
+
{ 0x0ab5, 0x2158 },
|
|
546
|
+
{ 0x0ab6, 0x2159 },
|
|
547
|
+
{ 0x0ab7, 0x215a },
|
|
548
|
+
{ 0x0ab8, 0x2105 },
|
|
549
|
+
{ 0x0abb, 0x2012 },
|
|
550
|
+
{ 0x0abc, 0x2329 },
|
|
551
|
+
{ 0x0abe, 0x232a },
|
|
552
|
+
{ 0x0ac3, 0x215b },
|
|
553
|
+
{ 0x0ac4, 0x215c },
|
|
554
|
+
{ 0x0ac5, 0x215d },
|
|
555
|
+
{ 0x0ac6, 0x215e },
|
|
556
|
+
{ 0x0ac9, 0x2122 },
|
|
557
|
+
{ 0x0aca, 0x2613 },
|
|
558
|
+
{ 0x0acc, 0x25c1 },
|
|
559
|
+
{ 0x0acd, 0x25b7 },
|
|
560
|
+
{ 0x0ace, 0x25cb },
|
|
561
|
+
{ 0x0acf, 0x25af },
|
|
562
|
+
{ 0x0ad0, 0x2018 },
|
|
563
|
+
{ 0x0ad1, 0x2019 },
|
|
564
|
+
{ 0x0ad2, 0x201c },
|
|
565
|
+
{ 0x0ad3, 0x201d },
|
|
566
|
+
{ 0x0ad4, 0x211e },
|
|
567
|
+
{ 0x0ad6, 0x2032 },
|
|
568
|
+
{ 0x0ad7, 0x2033 },
|
|
569
|
+
{ 0x0ad9, 0x271d },
|
|
570
|
+
{ 0x0adb, 0x25ac },
|
|
571
|
+
{ 0x0adc, 0x25c0 },
|
|
572
|
+
{ 0x0add, 0x25b6 },
|
|
573
|
+
{ 0x0ade, 0x25cf },
|
|
574
|
+
{ 0x0adf, 0x25ae },
|
|
575
|
+
{ 0x0ae0, 0x25e6 },
|
|
576
|
+
{ 0x0ae1, 0x25ab },
|
|
577
|
+
{ 0x0ae2, 0x25ad },
|
|
578
|
+
{ 0x0ae3, 0x25b3 },
|
|
579
|
+
{ 0x0ae4, 0x25bd },
|
|
580
|
+
{ 0x0ae5, 0x2606 },
|
|
581
|
+
{ 0x0ae6, 0x2022 },
|
|
582
|
+
{ 0x0ae7, 0x25aa },
|
|
583
|
+
{ 0x0ae8, 0x25b2 },
|
|
584
|
+
{ 0x0ae9, 0x25bc },
|
|
585
|
+
{ 0x0aea, 0x261c },
|
|
586
|
+
{ 0x0aeb, 0x261e },
|
|
587
|
+
{ 0x0aec, 0x2663 },
|
|
588
|
+
{ 0x0aed, 0x2666 },
|
|
589
|
+
{ 0x0aee, 0x2665 },
|
|
590
|
+
{ 0x0af0, 0x2720 },
|
|
591
|
+
{ 0x0af1, 0x2020 },
|
|
592
|
+
{ 0x0af2, 0x2021 },
|
|
593
|
+
{ 0x0af3, 0x2713 },
|
|
594
|
+
{ 0x0af4, 0x2717 },
|
|
595
|
+
{ 0x0af5, 0x266f },
|
|
596
|
+
{ 0x0af6, 0x266d },
|
|
597
|
+
{ 0x0af7, 0x2642 },
|
|
598
|
+
{ 0x0af8, 0x2640 },
|
|
599
|
+
{ 0x0af9, 0x260e },
|
|
600
|
+
{ 0x0afa, 0x2315 },
|
|
601
|
+
{ 0x0afb, 0x2117 },
|
|
602
|
+
{ 0x0afc, 0x2038 },
|
|
603
|
+
{ 0x0afd, 0x201a },
|
|
604
|
+
{ 0x0afe, 0x201e },
|
|
605
|
+
{ 0x0ba3, 0x003c },
|
|
606
|
+
{ 0x0ba6, 0x003e },
|
|
607
|
+
{ 0x0ba8, 0x2228 },
|
|
608
|
+
{ 0x0ba9, 0x2227 },
|
|
609
|
+
{ 0x0bc0, 0x00af },
|
|
610
|
+
{ 0x0bc2, 0x22a5 },
|
|
611
|
+
{ 0x0bc3, 0x2229 },
|
|
612
|
+
{ 0x0bc4, 0x230a },
|
|
613
|
+
{ 0x0bc6, 0x005f },
|
|
614
|
+
{ 0x0bca, 0x2218 },
|
|
615
|
+
{ 0x0bcc, 0x2395 },
|
|
616
|
+
{ 0x0bce, 0x22a4 },
|
|
617
|
+
{ 0x0bcf, 0x25cb },
|
|
618
|
+
{ 0x0bd3, 0x2308 },
|
|
619
|
+
{ 0x0bd6, 0x222a },
|
|
620
|
+
{ 0x0bd8, 0x2283 },
|
|
621
|
+
{ 0x0bda, 0x2282 },
|
|
622
|
+
{ 0x0bdc, 0x22a2 },
|
|
623
|
+
{ 0x0bfc, 0x22a3 },
|
|
624
|
+
{ 0x0cdf, 0x2017 },
|
|
625
|
+
{ 0x0ce0, 0x05d0 },
|
|
626
|
+
{ 0x0ce1, 0x05d1 },
|
|
627
|
+
{ 0x0ce2, 0x05d2 },
|
|
628
|
+
{ 0x0ce3, 0x05d3 },
|
|
629
|
+
{ 0x0ce4, 0x05d4 },
|
|
630
|
+
{ 0x0ce5, 0x05d5 },
|
|
631
|
+
{ 0x0ce6, 0x05d6 },
|
|
632
|
+
{ 0x0ce7, 0x05d7 },
|
|
633
|
+
{ 0x0ce8, 0x05d8 },
|
|
634
|
+
{ 0x0ce9, 0x05d9 },
|
|
635
|
+
{ 0x0cea, 0x05da },
|
|
636
|
+
{ 0x0ceb, 0x05db },
|
|
637
|
+
{ 0x0cec, 0x05dc },
|
|
638
|
+
{ 0x0ced, 0x05dd },
|
|
639
|
+
{ 0x0cee, 0x05de },
|
|
640
|
+
{ 0x0cef, 0x05df },
|
|
641
|
+
{ 0x0cf0, 0x05e0 },
|
|
642
|
+
{ 0x0cf1, 0x05e1 },
|
|
643
|
+
{ 0x0cf2, 0x05e2 },
|
|
644
|
+
{ 0x0cf3, 0x05e3 },
|
|
645
|
+
{ 0x0cf4, 0x05e4 },
|
|
646
|
+
{ 0x0cf5, 0x05e5 },
|
|
647
|
+
{ 0x0cf6, 0x05e6 },
|
|
648
|
+
{ 0x0cf7, 0x05e7 },
|
|
649
|
+
{ 0x0cf8, 0x05e8 },
|
|
650
|
+
{ 0x0cf9, 0x05e9 },
|
|
651
|
+
{ 0x0cfa, 0x05ea },
|
|
652
|
+
{ 0x0da1, 0x0e01 },
|
|
653
|
+
{ 0x0da2, 0x0e02 },
|
|
654
|
+
{ 0x0da3, 0x0e03 },
|
|
655
|
+
{ 0x0da4, 0x0e04 },
|
|
656
|
+
{ 0x0da5, 0x0e05 },
|
|
657
|
+
{ 0x0da6, 0x0e06 },
|
|
658
|
+
{ 0x0da7, 0x0e07 },
|
|
659
|
+
{ 0x0da8, 0x0e08 },
|
|
660
|
+
{ 0x0da9, 0x0e09 },
|
|
661
|
+
{ 0x0daa, 0x0e0a },
|
|
662
|
+
{ 0x0dab, 0x0e0b },
|
|
663
|
+
{ 0x0dac, 0x0e0c },
|
|
664
|
+
{ 0x0dad, 0x0e0d },
|
|
665
|
+
{ 0x0dae, 0x0e0e },
|
|
666
|
+
{ 0x0daf, 0x0e0f },
|
|
667
|
+
{ 0x0db0, 0x0e10 },
|
|
668
|
+
{ 0x0db1, 0x0e11 },
|
|
669
|
+
{ 0x0db2, 0x0e12 },
|
|
670
|
+
{ 0x0db3, 0x0e13 },
|
|
671
|
+
{ 0x0db4, 0x0e14 },
|
|
672
|
+
{ 0x0db5, 0x0e15 },
|
|
673
|
+
{ 0x0db6, 0x0e16 },
|
|
674
|
+
{ 0x0db7, 0x0e17 },
|
|
675
|
+
{ 0x0db8, 0x0e18 },
|
|
676
|
+
{ 0x0db9, 0x0e19 },
|
|
677
|
+
{ 0x0dba, 0x0e1a },
|
|
678
|
+
{ 0x0dbb, 0x0e1b },
|
|
679
|
+
{ 0x0dbc, 0x0e1c },
|
|
680
|
+
{ 0x0dbd, 0x0e1d },
|
|
681
|
+
{ 0x0dbe, 0x0e1e },
|
|
682
|
+
{ 0x0dbf, 0x0e1f },
|
|
683
|
+
{ 0x0dc0, 0x0e20 },
|
|
684
|
+
{ 0x0dc1, 0x0e21 },
|
|
685
|
+
{ 0x0dc2, 0x0e22 },
|
|
686
|
+
{ 0x0dc3, 0x0e23 },
|
|
687
|
+
{ 0x0dc4, 0x0e24 },
|
|
688
|
+
{ 0x0dc5, 0x0e25 },
|
|
689
|
+
{ 0x0dc6, 0x0e26 },
|
|
690
|
+
{ 0x0dc7, 0x0e27 },
|
|
691
|
+
{ 0x0dc8, 0x0e28 },
|
|
692
|
+
{ 0x0dc9, 0x0e29 },
|
|
693
|
+
{ 0x0dca, 0x0e2a },
|
|
694
|
+
{ 0x0dcb, 0x0e2b },
|
|
695
|
+
{ 0x0dcc, 0x0e2c },
|
|
696
|
+
{ 0x0dcd, 0x0e2d },
|
|
697
|
+
{ 0x0dce, 0x0e2e },
|
|
698
|
+
{ 0x0dcf, 0x0e2f },
|
|
699
|
+
{ 0x0dd0, 0x0e30 },
|
|
700
|
+
{ 0x0dd1, 0x0e31 },
|
|
701
|
+
{ 0x0dd2, 0x0e32 },
|
|
702
|
+
{ 0x0dd3, 0x0e33 },
|
|
703
|
+
{ 0x0dd4, 0x0e34 },
|
|
704
|
+
{ 0x0dd5, 0x0e35 },
|
|
705
|
+
{ 0x0dd6, 0x0e36 },
|
|
706
|
+
{ 0x0dd7, 0x0e37 },
|
|
707
|
+
{ 0x0dd8, 0x0e38 },
|
|
708
|
+
{ 0x0dd9, 0x0e39 },
|
|
709
|
+
{ 0x0dda, 0x0e3a },
|
|
710
|
+
{ 0x0ddf, 0x0e3f },
|
|
711
|
+
{ 0x0de0, 0x0e40 },
|
|
712
|
+
{ 0x0de1, 0x0e41 },
|
|
713
|
+
{ 0x0de2, 0x0e42 },
|
|
714
|
+
{ 0x0de3, 0x0e43 },
|
|
715
|
+
{ 0x0de4, 0x0e44 },
|
|
716
|
+
{ 0x0de5, 0x0e45 },
|
|
717
|
+
{ 0x0de6, 0x0e46 },
|
|
718
|
+
{ 0x0de7, 0x0e47 },
|
|
719
|
+
{ 0x0de8, 0x0e48 },
|
|
720
|
+
{ 0x0de9, 0x0e49 },
|
|
721
|
+
{ 0x0dea, 0x0e4a },
|
|
722
|
+
{ 0x0deb, 0x0e4b },
|
|
723
|
+
{ 0x0dec, 0x0e4c },
|
|
724
|
+
{ 0x0ded, 0x0e4d },
|
|
725
|
+
{ 0x0df0, 0x0e50 },
|
|
726
|
+
{ 0x0df1, 0x0e51 },
|
|
727
|
+
{ 0x0df2, 0x0e52 },
|
|
728
|
+
{ 0x0df3, 0x0e53 },
|
|
729
|
+
{ 0x0df4, 0x0e54 },
|
|
730
|
+
{ 0x0df5, 0x0e55 },
|
|
731
|
+
{ 0x0df6, 0x0e56 },
|
|
732
|
+
{ 0x0df7, 0x0e57 },
|
|
733
|
+
{ 0x0df8, 0x0e58 },
|
|
734
|
+
{ 0x0df9, 0x0e59 },
|
|
735
|
+
{ 0x0ea1, 0x3131 },
|
|
736
|
+
{ 0x0ea2, 0x3132 },
|
|
737
|
+
{ 0x0ea3, 0x3133 },
|
|
738
|
+
{ 0x0ea4, 0x3134 },
|
|
739
|
+
{ 0x0ea5, 0x3135 },
|
|
740
|
+
{ 0x0ea6, 0x3136 },
|
|
741
|
+
{ 0x0ea7, 0x3137 },
|
|
742
|
+
{ 0x0ea8, 0x3138 },
|
|
743
|
+
{ 0x0ea9, 0x3139 },
|
|
744
|
+
{ 0x0eaa, 0x313a },
|
|
745
|
+
{ 0x0eab, 0x313b },
|
|
746
|
+
{ 0x0eac, 0x313c },
|
|
747
|
+
{ 0x0ead, 0x313d },
|
|
748
|
+
{ 0x0eae, 0x313e },
|
|
749
|
+
{ 0x0eaf, 0x313f },
|
|
750
|
+
{ 0x0eb0, 0x3140 },
|
|
751
|
+
{ 0x0eb1, 0x3141 },
|
|
752
|
+
{ 0x0eb2, 0x3142 },
|
|
753
|
+
{ 0x0eb3, 0x3143 },
|
|
754
|
+
{ 0x0eb4, 0x3144 },
|
|
755
|
+
{ 0x0eb5, 0x3145 },
|
|
756
|
+
{ 0x0eb6, 0x3146 },
|
|
757
|
+
{ 0x0eb7, 0x3147 },
|
|
758
|
+
{ 0x0eb8, 0x3148 },
|
|
759
|
+
{ 0x0eb9, 0x3149 },
|
|
760
|
+
{ 0x0eba, 0x314a },
|
|
761
|
+
{ 0x0ebb, 0x314b },
|
|
762
|
+
{ 0x0ebc, 0x314c },
|
|
763
|
+
{ 0x0ebd, 0x314d },
|
|
764
|
+
{ 0x0ebe, 0x314e },
|
|
765
|
+
{ 0x0ebf, 0x314f },
|
|
766
|
+
{ 0x0ec0, 0x3150 },
|
|
767
|
+
{ 0x0ec1, 0x3151 },
|
|
768
|
+
{ 0x0ec2, 0x3152 },
|
|
769
|
+
{ 0x0ec3, 0x3153 },
|
|
770
|
+
{ 0x0ec4, 0x3154 },
|
|
771
|
+
{ 0x0ec5, 0x3155 },
|
|
772
|
+
{ 0x0ec6, 0x3156 },
|
|
773
|
+
{ 0x0ec7, 0x3157 },
|
|
774
|
+
{ 0x0ec8, 0x3158 },
|
|
775
|
+
{ 0x0ec9, 0x3159 },
|
|
776
|
+
{ 0x0eca, 0x315a },
|
|
777
|
+
{ 0x0ecb, 0x315b },
|
|
778
|
+
{ 0x0ecc, 0x315c },
|
|
779
|
+
{ 0x0ecd, 0x315d },
|
|
780
|
+
{ 0x0ece, 0x315e },
|
|
781
|
+
{ 0x0ecf, 0x315f },
|
|
782
|
+
{ 0x0ed0, 0x3160 },
|
|
783
|
+
{ 0x0ed1, 0x3161 },
|
|
784
|
+
{ 0x0ed2, 0x3162 },
|
|
785
|
+
{ 0x0ed3, 0x3163 },
|
|
786
|
+
{ 0x0ed4, 0x11a8 },
|
|
787
|
+
{ 0x0ed5, 0x11a9 },
|
|
788
|
+
{ 0x0ed6, 0x11aa },
|
|
789
|
+
{ 0x0ed7, 0x11ab },
|
|
790
|
+
{ 0x0ed8, 0x11ac },
|
|
791
|
+
{ 0x0ed9, 0x11ad },
|
|
792
|
+
{ 0x0eda, 0x11ae },
|
|
793
|
+
{ 0x0edb, 0x11af },
|
|
794
|
+
{ 0x0edc, 0x11b0 },
|
|
795
|
+
{ 0x0edd, 0x11b1 },
|
|
796
|
+
{ 0x0ede, 0x11b2 },
|
|
797
|
+
{ 0x0edf, 0x11b3 },
|
|
798
|
+
{ 0x0ee0, 0x11b4 },
|
|
799
|
+
{ 0x0ee1, 0x11b5 },
|
|
800
|
+
{ 0x0ee2, 0x11b6 },
|
|
801
|
+
{ 0x0ee3, 0x11b7 },
|
|
802
|
+
{ 0x0ee4, 0x11b8 },
|
|
803
|
+
{ 0x0ee5, 0x11b9 },
|
|
804
|
+
{ 0x0ee6, 0x11ba },
|
|
805
|
+
{ 0x0ee7, 0x11bb },
|
|
806
|
+
{ 0x0ee8, 0x11bc },
|
|
807
|
+
{ 0x0ee9, 0x11bd },
|
|
808
|
+
{ 0x0eea, 0x11be },
|
|
809
|
+
{ 0x0eeb, 0x11bf },
|
|
810
|
+
{ 0x0eec, 0x11c0 },
|
|
811
|
+
{ 0x0eed, 0x11c1 },
|
|
812
|
+
{ 0x0eee, 0x11c2 },
|
|
813
|
+
{ 0x0eef, 0x316d },
|
|
814
|
+
{ 0x0ef0, 0x3171 },
|
|
815
|
+
{ 0x0ef1, 0x3178 },
|
|
816
|
+
{ 0x0ef2, 0x317f },
|
|
817
|
+
{ 0x0ef3, 0x3181 },
|
|
818
|
+
{ 0x0ef4, 0x3184 },
|
|
819
|
+
{ 0x0ef5, 0x3186 },
|
|
820
|
+
{ 0x0ef6, 0x318d },
|
|
821
|
+
{ 0x0ef7, 0x318e },
|
|
822
|
+
{ 0x0ef8, 0x11eb },
|
|
823
|
+
{ 0x0ef9, 0x11f0 },
|
|
824
|
+
{ 0x0efa, 0x11f9 },
|
|
825
|
+
{ 0x0eff, 0x20a9 },
|
|
826
|
+
{ 0x13a4, 0x20ac },
|
|
827
|
+
{ 0x13bc, 0x0152 },
|
|
828
|
+
{ 0x13bd, 0x0153 },
|
|
829
|
+
{ 0x13be, 0x0178 },
|
|
830
|
+
{ 0x20ac, 0x20ac },
|
|
831
|
+
{ 0xfe50, '`' },
|
|
832
|
+
{ 0xfe51, 0x00b4 },
|
|
833
|
+
{ 0xfe52, '^' },
|
|
834
|
+
{ 0xfe53, '~' },
|
|
835
|
+
{ 0xfe54, 0x00af },
|
|
836
|
+
{ 0xfe55, 0x02d8 },
|
|
837
|
+
{ 0xfe56, 0x02d9 },
|
|
838
|
+
{ 0xfe57, 0x00a8 },
|
|
839
|
+
{ 0xfe58, 0x02da },
|
|
840
|
+
{ 0xfe59, 0x02dd },
|
|
841
|
+
{ 0xfe5a, 0x02c7 },
|
|
842
|
+
{ 0xfe5b, 0x00b8 },
|
|
843
|
+
{ 0xfe5c, 0x02db },
|
|
844
|
+
{ 0xfe5d, 0x037a },
|
|
845
|
+
{ 0xfe5e, 0x309b },
|
|
846
|
+
{ 0xfe5f, 0x309c },
|
|
847
|
+
{ 0xfe63, '/' },
|
|
848
|
+
{ 0xfe64, 0x02bc },
|
|
849
|
+
{ 0xfe65, 0x02bd },
|
|
850
|
+
{ 0xfe66, 0x02f5 },
|
|
851
|
+
{ 0xfe67, 0x02f3 },
|
|
852
|
+
{ 0xfe68, 0x02cd },
|
|
853
|
+
{ 0xfe69, 0xa788 },
|
|
854
|
+
{ 0xfe6a, 0x02f7 },
|
|
855
|
+
{ 0xfe6e, ',' },
|
|
856
|
+
{ 0xfe6f, 0x00a4 },
|
|
857
|
+
{ 0xfe80, 'a' }, // XK_dead_a
|
|
858
|
+
{ 0xfe81, 'A' }, // XK_dead_A
|
|
859
|
+
{ 0xfe82, 'e' }, // XK_dead_e
|
|
860
|
+
{ 0xfe83, 'E' }, // XK_dead_E
|
|
861
|
+
{ 0xfe84, 'i' }, // XK_dead_i
|
|
862
|
+
{ 0xfe85, 'I' }, // XK_dead_I
|
|
863
|
+
{ 0xfe86, 'o' }, // XK_dead_o
|
|
864
|
+
{ 0xfe87, 'O' }, // XK_dead_O
|
|
865
|
+
{ 0xfe88, 'u' }, // XK_dead_u
|
|
866
|
+
{ 0xfe89, 'U' }, // XK_dead_U
|
|
867
|
+
{ 0xfe8a, 0x0259 },
|
|
868
|
+
{ 0xfe8b, 0x018f },
|
|
869
|
+
{ 0xfe8c, 0x00b5 },
|
|
870
|
+
{ 0xfe90, '_' },
|
|
871
|
+
{ 0xfe91, 0x02c8 },
|
|
872
|
+
{ 0xfe92, 0x02cc },
|
|
873
|
+
{ 0xff80 /*XKB_KEY_KP_Space*/, ' ' },
|
|
874
|
+
{ 0xff95 /*XKB_KEY_KP_7*/, 0x0037 },
|
|
875
|
+
{ 0xff96 /*XKB_KEY_KP_4*/, 0x0034 },
|
|
876
|
+
{ 0xff97 /*XKB_KEY_KP_8*/, 0x0038 },
|
|
877
|
+
{ 0xff98 /*XKB_KEY_KP_6*/, 0x0036 },
|
|
878
|
+
{ 0xff99 /*XKB_KEY_KP_2*/, 0x0032 },
|
|
879
|
+
{ 0xff9a /*XKB_KEY_KP_9*/, 0x0039 },
|
|
880
|
+
{ 0xff9b /*XKB_KEY_KP_3*/, 0x0033 },
|
|
881
|
+
{ 0xff9c /*XKB_KEY_KP_1*/, 0x0031 },
|
|
882
|
+
{ 0xff9d /*XKB_KEY_KP_5*/, 0x0035 },
|
|
883
|
+
{ 0xff9e /*XKB_KEY_KP_0*/, 0x0030 },
|
|
884
|
+
{ 0xffaa /*XKB_KEY_KP_Multiply*/, '*' },
|
|
885
|
+
{ 0xffab /*XKB_KEY_KP_Add*/, '+' },
|
|
886
|
+
{ 0xffac /*XKB_KEY_KP_Separator*/, ',' },
|
|
887
|
+
{ 0xffad /*XKB_KEY_KP_Subtract*/, '-' },
|
|
888
|
+
{ 0xffae /*XKB_KEY_KP_Decimal*/, '.' },
|
|
889
|
+
{ 0xffaf /*XKB_KEY_KP_Divide*/, '/' },
|
|
890
|
+
{ 0xffb0 /*XKB_KEY_KP_0*/, 0x0030 },
|
|
891
|
+
{ 0xffb1 /*XKB_KEY_KP_1*/, 0x0031 },
|
|
892
|
+
{ 0xffb2 /*XKB_KEY_KP_2*/, 0x0032 },
|
|
893
|
+
{ 0xffb3 /*XKB_KEY_KP_3*/, 0x0033 },
|
|
894
|
+
{ 0xffb4 /*XKB_KEY_KP_4*/, 0x0034 },
|
|
895
|
+
{ 0xffb5 /*XKB_KEY_KP_5*/, 0x0035 },
|
|
896
|
+
{ 0xffb6 /*XKB_KEY_KP_6*/, 0x0036 },
|
|
897
|
+
{ 0xffb7 /*XKB_KEY_KP_7*/, 0x0037 },
|
|
898
|
+
{ 0xffb8 /*XKB_KEY_KP_8*/, 0x0038 },
|
|
899
|
+
{ 0xffb9 /*XKB_KEY_KP_9*/, 0x0039 },
|
|
900
|
+
{ 0xffbd /*XKB_KEY_KP_Equal*/, '=' }
|
|
901
|
+
};
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
//////////////////////////////////////////////////////////////////////////
|
|
905
|
+
////// GLFW internal API //////
|
|
906
|
+
//////////////////////////////////////////////////////////////////////////
|
|
907
|
+
|
|
908
|
+
// Convert XKB KeySym to Unicode
|
|
909
|
+
//
|
|
910
|
+
long _glfwKeySym2Unicode(unsigned int keysym)
|
|
911
|
+
{
|
|
912
|
+
int min = 0;
|
|
913
|
+
int max = sizeof(keysymtab) / sizeof(struct codepair) - 1;
|
|
914
|
+
int mid;
|
|
915
|
+
|
|
916
|
+
// First check for Latin-1 characters (1:1 mapping)
|
|
917
|
+
if ((keysym >= 0x0020 && keysym <= 0x007e) ||
|
|
918
|
+
(keysym >= 0x00a0 && keysym <= 0x00ff))
|
|
919
|
+
{
|
|
920
|
+
return keysym;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
// Also check for directly encoded 24-bit UCS characters
|
|
924
|
+
if ((keysym & 0xff000000) == 0x01000000)
|
|
925
|
+
return keysym & 0x00ffffff;
|
|
926
|
+
|
|
927
|
+
// Binary search in table
|
|
928
|
+
while (max >= min)
|
|
929
|
+
{
|
|
930
|
+
mid = (min + max) / 2;
|
|
931
|
+
if (keysymtab[mid].keysym < keysym)
|
|
932
|
+
min = mid + 1;
|
|
933
|
+
else if (keysymtab[mid].keysym > keysym)
|
|
934
|
+
max = mid - 1;
|
|
935
|
+
else
|
|
936
|
+
return keysymtab[mid].ucs;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
// No matching Unicode value found
|
|
940
|
+
return -1;
|
|
941
|
+
}
|
|
942
|
+
|