koffi 2.1.1 → 2.1.2

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.
Files changed (311) hide show
  1. package/ChangeLog.md +6 -0
  2. package/build/qemu/2.1.2/koffi_darwin_arm64.tar.gz +0 -0
  3. package/build/qemu/2.1.2/koffi_darwin_x64.tar.gz +0 -0
  4. package/build/qemu/2.1.2/koffi_freebsd_arm64.tar.gz +0 -0
  5. package/build/qemu/2.1.2/koffi_freebsd_ia32.tar.gz +0 -0
  6. package/build/qemu/2.1.2/koffi_freebsd_x64.tar.gz +0 -0
  7. package/build/qemu/2.1.2/koffi_linux_arm32hf.tar.gz +0 -0
  8. package/build/qemu/2.1.2/koffi_linux_arm64.tar.gz +0 -0
  9. package/build/qemu/2.1.2/koffi_linux_ia32.tar.gz +0 -0
  10. package/build/qemu/2.1.2/koffi_linux_riscv64hf64.tar.gz +0 -0
  11. package/build/qemu/2.1.2/koffi_linux_x64.tar.gz +0 -0
  12. package/build/qemu/2.1.2/koffi_openbsd_ia32.tar.gz +0 -0
  13. package/build/qemu/2.1.2/koffi_openbsd_x64.tar.gz +0 -0
  14. package/build/qemu/2.1.2/koffi_win32_arm64.tar.gz +0 -0
  15. package/build/qemu/2.1.2/koffi_win32_ia32.tar.gz +0 -0
  16. package/build/qemu/2.1.2/koffi_win32_x64.tar.gz +0 -0
  17. package/doc/templates/badges.html +3 -0
  18. package/package.json +2 -2
  19. package/src/abi_arm64.cc +35 -1
  20. package/src/abi_x64_win.cc +2 -8
  21. package/src/abi_x86.cc +1 -7
  22. package/src/ffi.hh +1 -1
  23. package/src/util.hh +6 -0
  24. package/test/raylib.js +37 -5
  25. package/vendor/libcc/libcc.cc +430 -196
  26. package/vendor/libcc/libcc.hh +1417 -1283
  27. package/vendor/raylib/BINDINGS.md +87 -70
  28. package/vendor/raylib/CHANGELOG +263 -50
  29. package/vendor/raylib/CMakeLists.txt +12 -0
  30. package/vendor/raylib/CMakeOptions.txt +8 -1
  31. package/vendor/raylib/CONVENTIONS.md +2 -3
  32. package/vendor/raylib/FAQ.md +137 -0
  33. package/vendor/raylib/HISTORY.md +62 -29
  34. package/vendor/raylib/LICENSE +1 -1
  35. package/vendor/raylib/README.md +22 -17
  36. package/vendor/raylib/ROADMAP.md +8 -7
  37. package/vendor/raylib/cmake/CompileDefinitions.cmake +19 -15
  38. package/vendor/raylib/cmake/GlfwImport.cmake +2 -0
  39. package/vendor/raylib/cmake/LibraryConfigurations.cmake +22 -16
  40. package/vendor/raylib/cmake/raylib-config.cmake +52 -49
  41. package/vendor/raylib/examples/CMakeLists.txt +14 -9
  42. package/vendor/raylib/examples/Makefile +112 -125
  43. package/vendor/raylib/examples/Makefile.Android +1 -1
  44. package/vendor/raylib/examples/Makefile.Web +145 -158
  45. package/vendor/raylib/examples/README.md +141 -141
  46. package/vendor/raylib/examples/audio/audio_module_playing.c +9 -4
  47. package/vendor/raylib/examples/audio/audio_multichannel_sound.c +8 -3
  48. package/vendor/raylib/examples/audio/audio_music_stream.c +16 -11
  49. package/vendor/raylib/examples/audio/audio_raw_stream.c +57 -9
  50. package/vendor/raylib/examples/audio/audio_sound_loading.c +8 -3
  51. package/vendor/raylib/examples/audio/audio_stream_effects.c +179 -0
  52. package/vendor/raylib/examples/audio/audio_stream_effects.png +0 -0
  53. package/vendor/raylib/examples/build.zig +17 -6
  54. package/vendor/raylib/examples/core/core_2d_camera.c +8 -4
  55. package/vendor/raylib/examples/core/core_2d_camera_mouse_zoom.c +105 -0
  56. package/vendor/raylib/examples/core/core_2d_camera_mouse_zoom.png +0 -0
  57. package/vendor/raylib/examples/core/core_2d_camera_platformer.c +11 -6
  58. package/vendor/raylib/examples/core/core_3d_camera_first_person.c +9 -4
  59. package/vendor/raylib/examples/core/core_3d_camera_free.c +9 -4
  60. package/vendor/raylib/examples/core/core_3d_camera_mode.c +8 -3
  61. package/vendor/raylib/examples/core/core_3d_picking.c +9 -4
  62. package/vendor/raylib/examples/core/core_basic_screen_manager.c +9 -7
  63. package/vendor/raylib/examples/core/core_basic_window.c +8 -3
  64. package/vendor/raylib/examples/core/core_basic_window_web.c +13 -11
  65. package/vendor/raylib/examples/core/core_custom_frame_control.c +9 -4
  66. package/vendor/raylib/examples/core/core_custom_logging.c +12 -8
  67. package/vendor/raylib/examples/core/core_drop_files.c +20 -12
  68. package/vendor/raylib/examples/core/core_input_gamepad.c +20 -15
  69. package/vendor/raylib/examples/core/core_input_gestures.c +19 -15
  70. package/vendor/raylib/examples/core/core_input_keys.c +8 -3
  71. package/vendor/raylib/examples/core/core_input_mouse.c +8 -3
  72. package/vendor/raylib/examples/core/core_input_mouse_wheel.c +8 -3
  73. package/vendor/raylib/examples/core/core_input_multitouch.c +8 -3
  74. package/vendor/raylib/examples/core/core_loading_thread.c +10 -6
  75. package/vendor/raylib/examples/core/core_random_values.c +8 -3
  76. package/vendor/raylib/examples/core/core_scissor_test.c +8 -3
  77. package/vendor/raylib/examples/core/core_smooth_pixelperfect.c +9 -4
  78. package/vendor/raylib/examples/core/core_split_screen.c +8 -3
  79. package/vendor/raylib/examples/core/core_storage_values.c +109 -3
  80. package/vendor/raylib/examples/core/core_vr_simulator.c +15 -7
  81. package/vendor/raylib/examples/core/core_window_flags.c +8 -3
  82. package/vendor/raylib/examples/core/core_window_letterbox.c +13 -18
  83. package/vendor/raylib/examples/core/core_window_should_close.c +77 -0
  84. package/vendor/raylib/examples/core/core_window_should_close.png +0 -0
  85. package/vendor/raylib/examples/core/core_world_screen.c +9 -4
  86. package/vendor/raylib/examples/examples_template.c +8 -3
  87. package/vendor/raylib/examples/models/models_animation.c +11 -7
  88. package/vendor/raylib/examples/models/models_billboard.c +9 -4
  89. package/vendor/raylib/examples/models/models_box_collisions.c +8 -3
  90. package/vendor/raylib/examples/models/models_cubicmap.c +9 -4
  91. package/vendor/raylib/examples/models/models_first_person_maze.c +9 -4
  92. package/vendor/raylib/examples/models/models_geometric_shapes.c +8 -3
  93. package/vendor/raylib/examples/models/models_heightmap.c +9 -4
  94. package/vendor/raylib/examples/models/models_loading.c +21 -17
  95. package/vendor/raylib/examples/models/models_loading_gltf.c +15 -41
  96. package/vendor/raylib/examples/models/models_loading_vox.c +9 -4
  97. package/vendor/raylib/examples/models/models_mesh_generation.c +71 -58
  98. package/vendor/raylib/examples/models/models_mesh_picking.c +25 -7
  99. package/vendor/raylib/examples/models/models_orthographic_projection.c +8 -5
  100. package/vendor/raylib/examples/models/models_rlgl_solar_system.c +6 -4
  101. package/vendor/raylib/examples/models/models_skybox.c +16 -12
  102. package/vendor/raylib/examples/models/models_waving_cubes.c +9 -4
  103. package/vendor/raylib/examples/models/models_yaw_pitch_roll.c +12 -7
  104. package/vendor/raylib/examples/models/resources/LICENSE.md +9 -10
  105. package/vendor/raylib/examples/models/resources/models/gltf/LICENSE +2 -23
  106. package/vendor/raylib/examples/models/resources/models/gltf/{raylib_32x32.glb → raylib_logo_3d.glb} +0 -0
  107. package/vendor/raylib/examples/models/resources/models/gltf/robot.blend +0 -0
  108. package/vendor/raylib/examples/models/resources/models/gltf/robot.glb +0 -0
  109. package/vendor/raylib/examples/others/easings_testbed.c +10 -8
  110. package/vendor/raylib/examples/others/easings_testbed.png +0 -0
  111. package/vendor/raylib/examples/others/embedded_files_loading.c +10 -5
  112. package/vendor/raylib/examples/others/embedded_files_loading.png +0 -0
  113. package/vendor/raylib/examples/others/raylib_opengl_interop.c +10 -6
  114. package/vendor/raylib/{src/extras/easings.h → examples/others/reasings.h} +38 -38
  115. package/vendor/raylib/examples/others/rlgl_compute_shader.c +21 -20
  116. package/vendor/raylib/examples/others/rlgl_compute_shader.png +0 -0
  117. package/vendor/raylib/examples/others/rlgl_standalone.c +4 -4
  118. package/vendor/raylib/examples/others/rlgl_standalone.png +0 -0
  119. package/vendor/raylib/examples/raylib_compile_execute.bat +2 -2
  120. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/lighting.fs +1 -1
  121. package/vendor/raylib/examples/shaders/resources/shaders/glsl330/{base_lighting_instanced.vs → lighting_instancing.vs} +2 -2
  122. package/vendor/raylib/examples/shaders/rlights.h +14 -27
  123. package/vendor/raylib/examples/shaders/shaders_basic_lighting.c +24 -26
  124. package/vendor/raylib/examples/shaders/shaders_custom_uniform.c +10 -5
  125. package/vendor/raylib/examples/shaders/shaders_eratosthenes.c +13 -8
  126. package/vendor/raylib/examples/shaders/shaders_fog.c +8 -12
  127. package/vendor/raylib/examples/shaders/shaders_hot_reloading.c +10 -5
  128. package/vendor/raylib/examples/shaders/shaders_julia_set.c +9 -4
  129. package/vendor/raylib/examples/shaders/shaders_mesh_instancing.c +45 -119
  130. package/vendor/raylib/examples/shaders/shaders_model_shader.c +10 -5
  131. package/vendor/raylib/examples/shaders/shaders_multi_sample2d.c +8 -3
  132. package/vendor/raylib/examples/shaders/shaders_palette_switch.c +8 -3
  133. package/vendor/raylib/examples/shaders/shaders_postprocessing.c +9 -4
  134. package/vendor/raylib/examples/shaders/shaders_raymarching.c +14 -11
  135. package/vendor/raylib/examples/shaders/shaders_shapes_textures.c +8 -3
  136. package/vendor/raylib/examples/shaders/shaders_simple_mask.c +10 -5
  137. package/vendor/raylib/examples/shaders/shaders_spotlight.c +10 -6
  138. package/vendor/raylib/examples/shaders/shaders_texture_drawing.c +9 -4
  139. package/vendor/raylib/examples/shaders/shaders_texture_outline.c +8 -3
  140. package/vendor/raylib/examples/shaders/shaders_texture_waves.c +8 -3
  141. package/vendor/raylib/{src/extras → examples/shapes}/raygui.h +1290 -1141
  142. package/vendor/raylib/examples/{others/easings.h → shapes/reasings.h} +40 -40
  143. package/vendor/raylib/examples/shapes/shapes_basic_shapes.c +8 -3
  144. package/vendor/raylib/examples/shapes/shapes_bouncing_ball.c +8 -3
  145. package/vendor/raylib/examples/shapes/shapes_collision_area.c +10 -4
  146. package/vendor/raylib/examples/shapes/shapes_colors_palette.c +8 -3
  147. package/vendor/raylib/examples/shapes/shapes_draw_circle_sector.c +9 -4
  148. package/vendor/raylib/examples/shapes/shapes_draw_rectangle_rounded.c +9 -4
  149. package/vendor/raylib/examples/shapes/shapes_draw_ring.c +10 -6
  150. package/vendor/raylib/examples/shapes/shapes_easings_ball_anim.c +9 -4
  151. package/vendor/raylib/examples/shapes/shapes_easings_box_anim.c +9 -4
  152. package/vendor/raylib/examples/shapes/shapes_easings_rectangle_array.c +9 -4
  153. package/vendor/raylib/examples/shapes/shapes_following_eyes.c +8 -3
  154. package/vendor/raylib/examples/shapes/shapes_lines_bezier.c +8 -3
  155. package/vendor/raylib/examples/shapes/shapes_logo_raylib.c +8 -3
  156. package/vendor/raylib/examples/shapes/shapes_logo_raylib_anim.c +8 -3
  157. package/vendor/raylib/examples/shapes/shapes_rectangle_scaling.c +14 -5
  158. package/vendor/raylib/examples/shapes/shapes_top_down_lights.c +355 -0
  159. package/vendor/raylib/examples/shapes/shapes_top_down_lights.png +0 -0
  160. package/vendor/raylib/examples/text/resources/DotGothic16-Regular.ttf +0 -0
  161. package/vendor/raylib/examples/text/resources/DotGothic16-Regular_OFL.txt +93 -0
  162. package/vendor/raylib/examples/text/resources/LICENSE.md +1 -1
  163. package/vendor/raylib/examples/text/text_codepoints_loading.c +138 -0
  164. package/vendor/raylib/examples/text/text_codepoints_loading.png +0 -0
  165. package/vendor/raylib/examples/text/text_draw_3d.c +42 -33
  166. package/vendor/raylib/examples/text/text_font_filters.c +14 -11
  167. package/vendor/raylib/examples/text/text_font_loading.c +9 -4
  168. package/vendor/raylib/examples/text/text_font_sdf.c +9 -4
  169. package/vendor/raylib/examples/text/text_font_spritefont.c +12 -6
  170. package/vendor/raylib/examples/text/text_format_text.c +8 -3
  171. package/vendor/raylib/examples/text/text_input_box.c +8 -3
  172. package/vendor/raylib/examples/text/text_raylib_fonts.c +9 -4
  173. package/vendor/raylib/examples/text/text_rectangle_bounds.c +9 -5
  174. package/vendor/raylib/examples/text/text_unicode.c +9 -7
  175. package/vendor/raylib/examples/text/text_writing_anim.c +8 -3
  176. package/vendor/raylib/examples/textures/resources/scarfy_run.gif +0 -0
  177. package/vendor/raylib/examples/textures/textures_background_scrolling.c +8 -3
  178. package/vendor/raylib/examples/textures/textures_blend_modes.c +8 -3
  179. package/vendor/raylib/examples/textures/textures_bunnymark.c +8 -3
  180. package/vendor/raylib/examples/textures/textures_draw_tiled.c +14 -10
  181. package/vendor/raylib/examples/textures/textures_fog_of_war.c +154 -0
  182. package/vendor/raylib/examples/textures/textures_fog_of_war.png +0 -0
  183. package/vendor/raylib/examples/textures/textures_gif_player.c +121 -0
  184. package/vendor/raylib/examples/textures/textures_gif_player.png +0 -0
  185. package/vendor/raylib/examples/textures/textures_image_drawing.c +8 -3
  186. package/vendor/raylib/examples/textures/textures_image_generation.c +8 -3
  187. package/vendor/raylib/examples/textures/textures_image_loading.c +8 -3
  188. package/vendor/raylib/examples/textures/textures_image_processing.c +8 -3
  189. package/vendor/raylib/examples/textures/textures_image_text.c +8 -3
  190. package/vendor/raylib/examples/textures/textures_logo_raylib.c +8 -3
  191. package/vendor/raylib/examples/textures/textures_mouse_painting.c +9 -4
  192. package/vendor/raylib/examples/textures/textures_npatch_drawing.c +8 -3
  193. package/vendor/raylib/examples/textures/textures_particles_blending.c +8 -3
  194. package/vendor/raylib/examples/textures/textures_polygon.c +9 -5
  195. package/vendor/raylib/examples/textures/textures_raw_data.c +8 -3
  196. package/vendor/raylib/examples/textures/{textures_rectangle.c → textures_sprite_anim.c} +11 -5
  197. package/vendor/raylib/examples/textures/{textures_rectangle.png → textures_sprite_anim.png} +0 -0
  198. package/vendor/raylib/examples/textures/textures_sprite_button.c +8 -3
  199. package/vendor/raylib/examples/textures/textures_sprite_explosion.c +8 -3
  200. package/vendor/raylib/examples/textures/textures_srcrec_dstrec.c +8 -3
  201. package/vendor/raylib/examples/textures/textures_to_image.c +8 -3
  202. package/vendor/raylib/parser/LICENSE +1 -1
  203. package/vendor/raylib/parser/Makefile +28 -0
  204. package/vendor/raylib/parser/README.md +49 -5
  205. package/vendor/raylib/parser/output/raylib_api.json +10717 -0
  206. package/vendor/raylib/parser/output/raylib_api.lua +7435 -0
  207. package/vendor/raylib/parser/{raylib_api.txt → output/raylib_api.txt} +1371 -824
  208. package/vendor/raylib/parser/{raylib_api.xml → output/raylib_api.xml} +827 -595
  209. package/vendor/raylib/parser/raylib_parser.c +1174 -196
  210. package/vendor/raylib/projects/4coder/Makefile +2 -4
  211. package/vendor/raylib/projects/4coder/main.c +0 -1
  212. package/vendor/raylib/projects/CMake/CMakeLists.txt +13 -16
  213. package/vendor/raylib/projects/CMake/README.md +27 -0
  214. package/vendor/raylib/projects/CMake/core_basic_window.c +52 -31
  215. package/vendor/raylib/projects/CodeBlocks/README.md +4 -4
  216. package/vendor/raylib/projects/Geany/core_basic_window.c +1 -1
  217. package/vendor/raylib/projects/Notepad++/c_raylib.xml +168 -128
  218. package/vendor/raylib/projects/Notepad++/npes_saved_tcc.txt +0 -0
  219. package/vendor/raylib/projects/Notepad++/npes_saved_w64devkit.txt +0 -0
  220. package/vendor/raylib/projects/Notepad++/npes_saved_zig.txt +0 -0
  221. package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_npp.xml +168 -84
  222. package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h +67 -51
  223. package/vendor/raylib/projects/README.md +1 -1
  224. package/vendor/raylib/projects/VSCode/.vscode/c_cpp_properties.json +1 -1
  225. package/vendor/raylib/projects/VSCode/Makefile +8 -11
  226. package/vendor/raylib/projects/VSCode/main.c +53 -26
  227. package/vendor/raylib/projects/VSCode/resources/LICENSE +1 -0
  228. package/vendor/raylib/projects/scripts/build-linux.sh +6 -6
  229. package/vendor/raylib/projects/scripts/build-osx.sh +6 -6
  230. package/vendor/raylib/projects/scripts/build-rpi.sh +6 -6
  231. package/vendor/raylib/projects/scripts/build-windows.bat +2 -2
  232. package/vendor/raylib/src/CMakeLists.txt +6 -7
  233. package/vendor/raylib/src/Makefile +209 -103
  234. package/vendor/raylib/src/build.zig +56 -20
  235. package/vendor/raylib/src/config.h +32 -27
  236. package/vendor/raylib/src/external/cgltf.h +342 -104
  237. package/vendor/raylib/src/external/dr_wav.h +487 -225
  238. package/vendor/raylib/src/external/glfw/src/posix_time.c +1 -3
  239. package/vendor/raylib/src/external/glfw/src/wl_init.c +1 -3
  240. package/vendor/raylib/src/external/jar_xm.h +2 -1
  241. package/vendor/raylib/src/external/miniaudio.h +62251 -42061
  242. package/vendor/raylib/src/external/qoi.h +671 -0
  243. package/vendor/raylib/src/external/stb_vorbis.h +1 -1
  244. package/vendor/raylib/src/external/vox_loader.h +30 -25
  245. package/vendor/raylib/src/minshell.html +82 -0
  246. package/vendor/raylib/src/raudio.c +359 -201
  247. package/vendor/raylib/src/raylib.dll.rc +5 -5
  248. package/vendor/raylib/src/raylib.dll.rc.data +0 -0
  249. package/vendor/raylib/src/raylib.h +95 -63
  250. package/vendor/raylib/src/raylib.rc +5 -5
  251. package/vendor/raylib/src/raylib.rc.data +0 -0
  252. package/vendor/raylib/src/raymath.h +391 -133
  253. package/vendor/raylib/src/rcamera.h +32 -41
  254. package/vendor/raylib/src/rcore.c +775 -471
  255. package/vendor/raylib/src/rgestures.h +5 -5
  256. package/vendor/raylib/src/rglfw.c +3 -3
  257. package/vendor/raylib/src/rlgl.h +184 -144
  258. package/vendor/raylib/src/rmodels.c +207 -144
  259. package/vendor/raylib/src/rshapes.c +105 -47
  260. package/vendor/raylib/src/rtext.c +255 -38
  261. package/vendor/raylib/src/rtextures.c +167 -71
  262. package/vendor/raylib/src/shell.html +63 -63
  263. package/vendor/raylib/src/utils.c +49 -3
  264. package/vendor/raylib/src/utils.h +3 -3
  265. package/build/qemu/2.1.1/koffi_darwin_arm64.tar.gz +0 -0
  266. package/build/qemu/2.1.1/koffi_darwin_x64.tar.gz +0 -0
  267. package/build/qemu/2.1.1/koffi_freebsd_arm64.tar.gz +0 -0
  268. package/build/qemu/2.1.1/koffi_freebsd_ia32.tar.gz +0 -0
  269. package/build/qemu/2.1.1/koffi_freebsd_x64.tar.gz +0 -0
  270. package/build/qemu/2.1.1/koffi_linux_arm32hf.tar.gz +0 -0
  271. package/build/qemu/2.1.1/koffi_linux_arm64.tar.gz +0 -0
  272. package/build/qemu/2.1.1/koffi_linux_ia32.tar.gz +0 -0
  273. package/build/qemu/2.1.1/koffi_linux_riscv64hf64.tar.gz +0 -0
  274. package/build/qemu/2.1.1/koffi_linux_x64.tar.gz +0 -0
  275. package/build/qemu/2.1.1/koffi_openbsd_ia32.tar.gz +0 -0
  276. package/build/qemu/2.1.1/koffi_openbsd_x64.tar.gz +0 -0
  277. package/build/qemu/2.1.1/koffi_win32_arm64.tar.gz +0 -0
  278. package/build/qemu/2.1.1/koffi_win32_ia32.tar.gz +0 -0
  279. package/build/qemu/2.1.1/koffi_win32_x64.tar.gz +0 -0
  280. package/vendor/raylib/CONTRIBUTORS.md +0 -63
  281. package/vendor/raylib/SPONSORS.md +0 -68
  282. package/vendor/raylib/examples/core/core_quat_conversion.c +0 -132
  283. package/vendor/raylib/examples/core/core_quat_conversion.png +0 -0
  284. package/vendor/raylib/examples/models/resources/models/gltf/AnimatedMorphCube.glb +0 -0
  285. package/vendor/raylib/examples/models/resources/models/gltf/AnimatedTriangle.gltf +0 -118
  286. package/vendor/raylib/examples/models/resources/models/gltf/BoxAnimated.glb +0 -0
  287. package/vendor/raylib/examples/models/resources/models/gltf/girl.glb +0 -0
  288. package/vendor/raylib/examples/models/resources/models/gltf/rigged_figure.glb +0 -0
  289. package/vendor/raylib/examples/models/resources/models/gltf/vertex_colored_object.glb +0 -0
  290. package/vendor/raylib/examples/models/resources/models/iqm/vertex_colored_object.iqm +0 -0
  291. package/vendor/raylib/examples/models/rlights.h +0 -183
  292. package/vendor/raylib/examples/others/raudio_standalone.c +0 -152
  293. package/vendor/raylib/examples/others/resources/audio/country.mp3 +0 -0
  294. package/vendor/raylib/examples/others/resources/audio/target.ogg +0 -0
  295. package/vendor/raylib/examples/others/resources/audio/weird.wav +0 -0
  296. package/vendor/raylib/examples/physics/physics_demo.c +0 -128
  297. package/vendor/raylib/examples/physics/physics_demo.png +0 -0
  298. package/vendor/raylib/examples/physics/physics_friction.c +0 -142
  299. package/vendor/raylib/examples/physics/physics_friction.png +0 -0
  300. package/vendor/raylib/examples/physics/physics_movement.c +0 -128
  301. package/vendor/raylib/examples/physics/physics_movement.png +0 -0
  302. package/vendor/raylib/examples/physics/physics_restitution.c +0 -129
  303. package/vendor/raylib/examples/physics/physics_restitution.png +0 -0
  304. package/vendor/raylib/examples/physics/physics_shatter.c +0 -111
  305. package/vendor/raylib/examples/physics/physics_shatter.png +0 -0
  306. package/vendor/raylib/parser/raylib_api.json +0 -6668
  307. package/vendor/raylib/projects/VS2019/raylib/raylib.rc +0 -0
  308. package/vendor/raylib/projects/VS2019/raylib/resource.h +0 -14
  309. package/vendor/raylib/src/extras/physac.h +0 -1977
  310. package/vendor/raylib/src/extras/rmem.h +0 -751
  311. package/vendor/raylib/src/raudio.h +0 -198
@@ -0,0 +1,671 @@
1
+ /*
2
+
3
+ QOI - The "Quite OK Image" format for fast, lossless image compression
4
+
5
+ Dominic Szablewski - https://phoboslab.org
6
+
7
+
8
+ -- LICENSE: The MIT License(MIT)
9
+
10
+ Copyright(c) 2021 Dominic Szablewski
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
13
+ this software and associated documentation files(the "Software"), to deal in
14
+ the Software without restriction, including without limitation the rights to
15
+ use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies
16
+ of the Software, and to permit persons to whom the Software is furnished to do
17
+ so, subject to the following conditions :
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+
29
+ -- About
30
+
31
+ QOI encodes and decodes images in a lossless format. Compared to stb_image and
32
+ stb_image_write QOI offers 20x-50x faster encoding, 3x-4x faster decoding and
33
+ 20% better compression.
34
+
35
+
36
+ -- Synopsis
37
+
38
+ // Define `QOI_IMPLEMENTATION` in *one* C/C++ file before including this
39
+ // library to create the implementation.
40
+
41
+ #define QOI_IMPLEMENTATION
42
+ #include "qoi.h"
43
+
44
+ // Encode and store an RGBA buffer to the file system. The qoi_desc describes
45
+ // the input pixel data.
46
+ qoi_write("image_new.qoi", rgba_pixels, &(qoi_desc){
47
+ .width = 1920,
48
+ .height = 1080,
49
+ .channels = 4,
50
+ .colorspace = QOI_SRGB
51
+ });
52
+
53
+ // Load and decode a QOI image from the file system into a 32bbp RGBA buffer.
54
+ // The qoi_desc struct will be filled with the width, height, number of channels
55
+ // and colorspace read from the file header.
56
+ qoi_desc desc;
57
+ void *rgba_pixels = qoi_read("image.qoi", &desc, 4);
58
+
59
+
60
+
61
+ -- Documentation
62
+
63
+ This library provides the following functions;
64
+ - qoi_read -- read and decode a QOI file
65
+ - qoi_decode -- decode the raw bytes of a QOI image from memory
66
+ - qoi_write -- encode and write a QOI file
67
+ - qoi_encode -- encode an rgba buffer into a QOI image in memory
68
+
69
+ See the function declaration below for the signature and more information.
70
+
71
+ If you don't want/need the qoi_read and qoi_write functions, you can define
72
+ QOI_NO_STDIO before including this library.
73
+
74
+ This library uses malloc() and free(). To supply your own malloc implementation
75
+ you can define QOI_MALLOC and QOI_FREE before including this library.
76
+
77
+ This library uses memset() to zero-initialize the index. To supply your own
78
+ implementation you can define QOI_ZEROARR before including this library.
79
+
80
+
81
+ -- Data Format
82
+
83
+ A QOI file has a 14 byte header, followed by any number of data "chunks" and an
84
+ 8-byte end marker.
85
+
86
+ struct qoi_header_t {
87
+ char magic[4]; // magic bytes "qoif"
88
+ uint32_t width; // image width in pixels (BE)
89
+ uint32_t height; // image height in pixels (BE)
90
+ uint8_t channels; // 3 = RGB, 4 = RGBA
91
+ uint8_t colorspace; // 0 = sRGB with linear alpha, 1 = all channels linear
92
+ };
93
+
94
+ Images are encoded row by row, left to right, top to bottom. The decoder and
95
+ encoder start with {r: 0, g: 0, b: 0, a: 255} as the previous pixel value. An
96
+ image is complete when all pixels specified by width * height have been covered.
97
+
98
+ Pixels are encoded as
99
+ - a run of the previous pixel
100
+ - an index into an array of previously seen pixels
101
+ - a difference to the previous pixel value in r,g,b
102
+ - full r,g,b or r,g,b,a values
103
+
104
+ The color channels are assumed to not be premultiplied with the alpha channel
105
+ ("un-premultiplied alpha").
106
+
107
+ A running array[64] (zero-initialized) of previously seen pixel values is
108
+ maintained by the encoder and decoder. Each pixel that is seen by the encoder
109
+ and decoder is put into this array at the position formed by a hash function of
110
+ the color value. In the encoder, if the pixel value at the index matches the
111
+ current pixel, this index position is written to the stream as QOI_OP_INDEX.
112
+ The hash function for the index is:
113
+
114
+ index_position = (r * 3 + g * 5 + b * 7 + a * 11) % 64
115
+
116
+ Each chunk starts with a 2- or 8-bit tag, followed by a number of data bits. The
117
+ bit length of chunks is divisible by 8 - i.e. all chunks are byte aligned. All
118
+ values encoded in these data bits have the most significant bit on the left.
119
+
120
+ The 8-bit tags have precedence over the 2-bit tags. A decoder must check for the
121
+ presence of an 8-bit tag first.
122
+
123
+ The byte stream's end is marked with 7 0x00 bytes followed a single 0x01 byte.
124
+
125
+
126
+ The possible chunks are:
127
+
128
+
129
+ .- QOI_OP_INDEX ----------.
130
+ | Byte[0] |
131
+ | 7 6 5 4 3 2 1 0 |
132
+ |-------+-----------------|
133
+ | 0 0 | index |
134
+ `-------------------------`
135
+ 2-bit tag b00
136
+ 6-bit index into the color index array: 0..63
137
+
138
+ A valid encoder must not issue 2 or more consecutive QOI_OP_INDEX chunks to the
139
+ same index. QOI_OP_RUN should be used instead.
140
+
141
+
142
+ .- QOI_OP_DIFF -----------.
143
+ | Byte[0] |
144
+ | 7 6 5 4 3 2 1 0 |
145
+ |-------+-----+-----+-----|
146
+ | 0 1 | dr | dg | db |
147
+ `-------------------------`
148
+ 2-bit tag b01
149
+ 2-bit red channel difference from the previous pixel between -2..1
150
+ 2-bit green channel difference from the previous pixel between -2..1
151
+ 2-bit blue channel difference from the previous pixel between -2..1
152
+
153
+ The difference to the current channel values are using a wraparound operation,
154
+ so "1 - 2" will result in 255, while "255 + 1" will result in 0.
155
+
156
+ Values are stored as unsigned integers with a bias of 2. E.g. -2 is stored as
157
+ 0 (b00). 1 is stored as 3 (b11).
158
+
159
+ The alpha value remains unchanged from the previous pixel.
160
+
161
+
162
+ .- QOI_OP_LUMA -------------------------------------.
163
+ | Byte[0] | Byte[1] |
164
+ | 7 6 5 4 3 2 1 0 | 7 6 5 4 3 2 1 0 |
165
+ |-------+-----------------+-------------+-----------|
166
+ | 1 0 | green diff | dr - dg | db - dg |
167
+ `---------------------------------------------------`
168
+ 2-bit tag b10
169
+ 6-bit green channel difference from the previous pixel -32..31
170
+ 4-bit red channel difference minus green channel difference -8..7
171
+ 4-bit blue channel difference minus green channel difference -8..7
172
+
173
+ The green channel is used to indicate the general direction of change and is
174
+ encoded in 6 bits. The red and blue channels (dr and db) base their diffs off
175
+ of the green channel difference and are encoded in 4 bits. I.e.:
176
+ dr_dg = (cur_px.r - prev_px.r) - (cur_px.g - prev_px.g)
177
+ db_dg = (cur_px.b - prev_px.b) - (cur_px.g - prev_px.g)
178
+
179
+ The difference to the current channel values are using a wraparound operation,
180
+ so "10 - 13" will result in 253, while "250 + 7" will result in 1.
181
+
182
+ Values are stored as unsigned integers with a bias of 32 for the green channel
183
+ and a bias of 8 for the red and blue channel.
184
+
185
+ The alpha value remains unchanged from the previous pixel.
186
+
187
+
188
+ .- QOI_OP_RUN ------------.
189
+ | Byte[0] |
190
+ | 7 6 5 4 3 2 1 0 |
191
+ |-------+-----------------|
192
+ | 1 1 | run |
193
+ `-------------------------`
194
+ 2-bit tag b11
195
+ 6-bit run-length repeating the previous pixel: 1..62
196
+
197
+ The run-length is stored with a bias of -1. Note that the run-lengths 63 and 64
198
+ (b111110 and b111111) are illegal as they are occupied by the QOI_OP_RGB and
199
+ QOI_OP_RGBA tags.
200
+
201
+
202
+ .- QOI_OP_RGB ------------------------------------------.
203
+ | Byte[0] | Byte[1] | Byte[2] | Byte[3] |
204
+ | 7 6 5 4 3 2 1 0 | 7 .. 0 | 7 .. 0 | 7 .. 0 |
205
+ |-------------------------+---------+---------+---------|
206
+ | 1 1 1 1 1 1 1 0 | red | green | blue |
207
+ `-------------------------------------------------------`
208
+ 8-bit tag b11111110
209
+ 8-bit red channel value
210
+ 8-bit green channel value
211
+ 8-bit blue channel value
212
+
213
+ The alpha value remains unchanged from the previous pixel.
214
+
215
+
216
+ .- QOI_OP_RGBA ---------------------------------------------------.
217
+ | Byte[0] | Byte[1] | Byte[2] | Byte[3] | Byte[4] |
218
+ | 7 6 5 4 3 2 1 0 | 7 .. 0 | 7 .. 0 | 7 .. 0 | 7 .. 0 |
219
+ |-------------------------+---------+---------+---------+---------|
220
+ | 1 1 1 1 1 1 1 1 | red | green | blue | alpha |
221
+ `-----------------------------------------------------------------`
222
+ 8-bit tag b11111111
223
+ 8-bit red channel value
224
+ 8-bit green channel value
225
+ 8-bit blue channel value
226
+ 8-bit alpha channel value
227
+
228
+ */
229
+
230
+
231
+ /* -----------------------------------------------------------------------------
232
+ Header - Public functions */
233
+
234
+ #ifndef QOI_H
235
+ #define QOI_H
236
+
237
+ #ifdef __cplusplus
238
+ extern "C" {
239
+ #endif
240
+
241
+ /* A pointer to a qoi_desc struct has to be supplied to all of qoi's functions.
242
+ It describes either the input format (for qoi_write and qoi_encode), or is
243
+ filled with the description read from the file header (for qoi_read and
244
+ qoi_decode).
245
+
246
+ The colorspace in this qoi_desc is an enum where
247
+ 0 = sRGB, i.e. gamma scaled RGB channels and a linear alpha channel
248
+ 1 = all channels are linear
249
+ You may use the constants QOI_SRGB or QOI_LINEAR. The colorspace is purely
250
+ informative. It will be saved to the file header, but does not affect
251
+ how chunks are en-/decoded. */
252
+
253
+ #define QOI_SRGB 0
254
+ #define QOI_LINEAR 1
255
+
256
+ typedef struct {
257
+ unsigned int width;
258
+ unsigned int height;
259
+ unsigned char channels;
260
+ unsigned char colorspace;
261
+ } qoi_desc;
262
+
263
+ #ifndef QOI_NO_STDIO
264
+
265
+ /* Encode raw RGB or RGBA pixels into a QOI image and write it to the file
266
+ system. The qoi_desc struct must be filled with the image width, height,
267
+ number of channels (3 = RGB, 4 = RGBA) and the colorspace.
268
+
269
+ The function returns 0 on failure (invalid parameters, or fopen or malloc
270
+ failed) or the number of bytes written on success. */
271
+
272
+ int qoi_write(const char *filename, const void *data, const qoi_desc *desc);
273
+
274
+
275
+ /* Read and decode a QOI image from the file system. If channels is 0, the
276
+ number of channels from the file header is used. If channels is 3 or 4 the
277
+ output format will be forced into this number of channels.
278
+
279
+ The function either returns NULL on failure (invalid data, or malloc or fopen
280
+ failed) or a pointer to the decoded pixels. On success, the qoi_desc struct
281
+ will be filled with the description from the file header.
282
+
283
+ The returned pixel data should be free()d after use. */
284
+
285
+ void *qoi_read(const char *filename, qoi_desc *desc, int channels);
286
+
287
+ #endif /* QOI_NO_STDIO */
288
+
289
+
290
+ /* Encode raw RGB or RGBA pixels into a QOI image in memory.
291
+
292
+ The function either returns NULL on failure (invalid parameters or malloc
293
+ failed) or a pointer to the encoded data on success. On success the out_len
294
+ is set to the size in bytes of the encoded data.
295
+
296
+ The returned qoi data should be free()d after use. */
297
+
298
+ void *qoi_encode(const void *data, const qoi_desc *desc, int *out_len);
299
+
300
+
301
+ /* Decode a QOI image from memory.
302
+
303
+ The function either returns NULL on failure (invalid parameters or malloc
304
+ failed) or a pointer to the decoded pixels. On success, the qoi_desc struct
305
+ is filled with the description from the file header.
306
+
307
+ The returned pixel data should be free()d after use. */
308
+
309
+ void *qoi_decode(const void *data, int size, qoi_desc *desc, int channels);
310
+
311
+
312
+ #ifdef __cplusplus
313
+ }
314
+ #endif
315
+ #endif /* QOI_H */
316
+
317
+
318
+ /* -----------------------------------------------------------------------------
319
+ Implementation */
320
+
321
+ #ifdef QOI_IMPLEMENTATION
322
+ #include <stdlib.h>
323
+ #include <string.h>
324
+
325
+ #ifndef QOI_MALLOC
326
+ #define QOI_MALLOC(sz) malloc(sz)
327
+ #define QOI_FREE(p) free(p)
328
+ #endif
329
+ #ifndef QOI_ZEROARR
330
+ #define QOI_ZEROARR(a) memset((a),0,sizeof(a))
331
+ #endif
332
+
333
+ #define QOI_OP_INDEX 0x00 /* 00xxxxxx */
334
+ #define QOI_OP_DIFF 0x40 /* 01xxxxxx */
335
+ #define QOI_OP_LUMA 0x80 /* 10xxxxxx */
336
+ #define QOI_OP_RUN 0xc0 /* 11xxxxxx */
337
+ #define QOI_OP_RGB 0xfe /* 11111110 */
338
+ #define QOI_OP_RGBA 0xff /* 11111111 */
339
+
340
+ #define QOI_MASK_2 0xc0 /* 11000000 */
341
+
342
+ #define QOI_COLOR_HASH(C) (C.rgba.r*3 + C.rgba.g*5 + C.rgba.b*7 + C.rgba.a*11)
343
+ #define QOI_MAGIC \
344
+ (((unsigned int)'q') << 24 | ((unsigned int)'o') << 16 | \
345
+ ((unsigned int)'i') << 8 | ((unsigned int)'f'))
346
+ #define QOI_HEADER_SIZE 14
347
+
348
+ /* 2GB is the max file size that this implementation can safely handle. We guard
349
+ against anything larger than that, assuming the worst case with 5 bytes per
350
+ pixel, rounded down to a nice clean value. 400 million pixels ought to be
351
+ enough for anybody. */
352
+ #define QOI_PIXELS_MAX ((unsigned int)400000000)
353
+
354
+ typedef union {
355
+ struct { unsigned char r, g, b, a; } rgba;
356
+ unsigned int v;
357
+ } qoi_rgba_t;
358
+
359
+ static const unsigned char qoi_padding[8] = {0,0,0,0,0,0,0,1};
360
+
361
+ static void qoi_write_32(unsigned char *bytes, int *p, unsigned int v) {
362
+ bytes[(*p)++] = (0xff000000 & v) >> 24;
363
+ bytes[(*p)++] = (0x00ff0000 & v) >> 16;
364
+ bytes[(*p)++] = (0x0000ff00 & v) >> 8;
365
+ bytes[(*p)++] = (0x000000ff & v);
366
+ }
367
+
368
+ static unsigned int qoi_read_32(const unsigned char *bytes, int *p) {
369
+ unsigned int a = bytes[(*p)++];
370
+ unsigned int b = bytes[(*p)++];
371
+ unsigned int c = bytes[(*p)++];
372
+ unsigned int d = bytes[(*p)++];
373
+ return a << 24 | b << 16 | c << 8 | d;
374
+ }
375
+
376
+ void *qoi_encode(const void *data, const qoi_desc *desc, int *out_len) {
377
+ int i, max_size, p, run;
378
+ int px_len, px_end, px_pos, channels;
379
+ unsigned char *bytes;
380
+ const unsigned char *pixels;
381
+ qoi_rgba_t index[64];
382
+ qoi_rgba_t px, px_prev;
383
+
384
+ if (
385
+ data == NULL || out_len == NULL || desc == NULL ||
386
+ desc->width == 0 || desc->height == 0 ||
387
+ desc->channels < 3 || desc->channels > 4 ||
388
+ desc->colorspace > 1 ||
389
+ desc->height >= QOI_PIXELS_MAX / desc->width
390
+ ) {
391
+ return NULL;
392
+ }
393
+
394
+ max_size =
395
+ desc->width * desc->height * (desc->channels + 1) +
396
+ QOI_HEADER_SIZE + sizeof(qoi_padding);
397
+
398
+ p = 0;
399
+ bytes = (unsigned char *) QOI_MALLOC(max_size);
400
+ if (!bytes) {
401
+ return NULL;
402
+ }
403
+
404
+ qoi_write_32(bytes, &p, QOI_MAGIC);
405
+ qoi_write_32(bytes, &p, desc->width);
406
+ qoi_write_32(bytes, &p, desc->height);
407
+ bytes[p++] = desc->channels;
408
+ bytes[p++] = desc->colorspace;
409
+
410
+
411
+ pixels = (const unsigned char *)data;
412
+
413
+ QOI_ZEROARR(index);
414
+
415
+ run = 0;
416
+ px_prev.rgba.r = 0;
417
+ px_prev.rgba.g = 0;
418
+ px_prev.rgba.b = 0;
419
+ px_prev.rgba.a = 255;
420
+ px = px_prev;
421
+
422
+ px_len = desc->width * desc->height * desc->channels;
423
+ px_end = px_len - desc->channels;
424
+ channels = desc->channels;
425
+
426
+ for (px_pos = 0; px_pos < px_len; px_pos += channels) {
427
+ if (channels == 4) {
428
+ px = *(qoi_rgba_t *)(pixels + px_pos);
429
+ }
430
+ else {
431
+ px.rgba.r = pixels[px_pos + 0];
432
+ px.rgba.g = pixels[px_pos + 1];
433
+ px.rgba.b = pixels[px_pos + 2];
434
+ }
435
+
436
+ if (px.v == px_prev.v) {
437
+ run++;
438
+ if (run == 62 || px_pos == px_end) {
439
+ bytes[p++] = QOI_OP_RUN | (run - 1);
440
+ run = 0;
441
+ }
442
+ }
443
+ else {
444
+ int index_pos;
445
+
446
+ if (run > 0) {
447
+ bytes[p++] = QOI_OP_RUN | (run - 1);
448
+ run = 0;
449
+ }
450
+
451
+ index_pos = QOI_COLOR_HASH(px) % 64;
452
+
453
+ if (index[index_pos].v == px.v) {
454
+ bytes[p++] = QOI_OP_INDEX | index_pos;
455
+ }
456
+ else {
457
+ index[index_pos] = px;
458
+
459
+ if (px.rgba.a == px_prev.rgba.a) {
460
+ signed char vr = px.rgba.r - px_prev.rgba.r;
461
+ signed char vg = px.rgba.g - px_prev.rgba.g;
462
+ signed char vb = px.rgba.b - px_prev.rgba.b;
463
+
464
+ signed char vg_r = vr - vg;
465
+ signed char vg_b = vb - vg;
466
+
467
+ if (
468
+ vr > -3 && vr < 2 &&
469
+ vg > -3 && vg < 2 &&
470
+ vb > -3 && vb < 2
471
+ ) {
472
+ bytes[p++] = QOI_OP_DIFF | (vr + 2) << 4 | (vg + 2) << 2 | (vb + 2);
473
+ }
474
+ else if (
475
+ vg_r > -9 && vg_r < 8 &&
476
+ vg > -33 && vg < 32 &&
477
+ vg_b > -9 && vg_b < 8
478
+ ) {
479
+ bytes[p++] = QOI_OP_LUMA | (vg + 32);
480
+ bytes[p++] = (vg_r + 8) << 4 | (vg_b + 8);
481
+ }
482
+ else {
483
+ bytes[p++] = QOI_OP_RGB;
484
+ bytes[p++] = px.rgba.r;
485
+ bytes[p++] = px.rgba.g;
486
+ bytes[p++] = px.rgba.b;
487
+ }
488
+ }
489
+ else {
490
+ bytes[p++] = QOI_OP_RGBA;
491
+ bytes[p++] = px.rgba.r;
492
+ bytes[p++] = px.rgba.g;
493
+ bytes[p++] = px.rgba.b;
494
+ bytes[p++] = px.rgba.a;
495
+ }
496
+ }
497
+ }
498
+ px_prev = px;
499
+ }
500
+
501
+ for (i = 0; i < (int)sizeof(qoi_padding); i++) {
502
+ bytes[p++] = qoi_padding[i];
503
+ }
504
+
505
+ *out_len = p;
506
+ return bytes;
507
+ }
508
+
509
+ void *qoi_decode(const void *data, int size, qoi_desc *desc, int channels) {
510
+ const unsigned char *bytes;
511
+ unsigned int header_magic;
512
+ unsigned char *pixels;
513
+ qoi_rgba_t index[64];
514
+ qoi_rgba_t px;
515
+ int px_len, chunks_len, px_pos;
516
+ int p = 0, run = 0;
517
+
518
+ if (
519
+ data == NULL || desc == NULL ||
520
+ (channels != 0 && channels != 3 && channels != 4) ||
521
+ size < QOI_HEADER_SIZE + (int)sizeof(qoi_padding)
522
+ ) {
523
+ return NULL;
524
+ }
525
+
526
+ bytes = (const unsigned char *)data;
527
+
528
+ header_magic = qoi_read_32(bytes, &p);
529
+ desc->width = qoi_read_32(bytes, &p);
530
+ desc->height = qoi_read_32(bytes, &p);
531
+ desc->channels = bytes[p++];
532
+ desc->colorspace = bytes[p++];
533
+
534
+ if (
535
+ desc->width == 0 || desc->height == 0 ||
536
+ desc->channels < 3 || desc->channels > 4 ||
537
+ desc->colorspace > 1 ||
538
+ header_magic != QOI_MAGIC ||
539
+ desc->height >= QOI_PIXELS_MAX / desc->width
540
+ ) {
541
+ return NULL;
542
+ }
543
+
544
+ if (channels == 0) {
545
+ channels = desc->channels;
546
+ }
547
+
548
+ px_len = desc->width * desc->height * channels;
549
+ pixels = (unsigned char *) QOI_MALLOC(px_len);
550
+ if (!pixels) {
551
+ return NULL;
552
+ }
553
+
554
+ QOI_ZEROARR(index);
555
+ px.rgba.r = 0;
556
+ px.rgba.g = 0;
557
+ px.rgba.b = 0;
558
+ px.rgba.a = 255;
559
+
560
+ chunks_len = size - (int)sizeof(qoi_padding);
561
+ for (px_pos = 0; px_pos < px_len; px_pos += channels) {
562
+ if (run > 0) {
563
+ run--;
564
+ }
565
+ else if (p < chunks_len) {
566
+ int b1 = bytes[p++];
567
+
568
+ if (b1 == QOI_OP_RGB) {
569
+ px.rgba.r = bytes[p++];
570
+ px.rgba.g = bytes[p++];
571
+ px.rgba.b = bytes[p++];
572
+ }
573
+ else if (b1 == QOI_OP_RGBA) {
574
+ px.rgba.r = bytes[p++];
575
+ px.rgba.g = bytes[p++];
576
+ px.rgba.b = bytes[p++];
577
+ px.rgba.a = bytes[p++];
578
+ }
579
+ else if ((b1 & QOI_MASK_2) == QOI_OP_INDEX) {
580
+ px = index[b1];
581
+ }
582
+ else if ((b1 & QOI_MASK_2) == QOI_OP_DIFF) {
583
+ px.rgba.r += ((b1 >> 4) & 0x03) - 2;
584
+ px.rgba.g += ((b1 >> 2) & 0x03) - 2;
585
+ px.rgba.b += ( b1 & 0x03) - 2;
586
+ }
587
+ else if ((b1 & QOI_MASK_2) == QOI_OP_LUMA) {
588
+ int b2 = bytes[p++];
589
+ int vg = (b1 & 0x3f) - 32;
590
+ px.rgba.r += vg - 8 + ((b2 >> 4) & 0x0f);
591
+ px.rgba.g += vg;
592
+ px.rgba.b += vg - 8 + (b2 & 0x0f);
593
+ }
594
+ else if ((b1 & QOI_MASK_2) == QOI_OP_RUN) {
595
+ run = (b1 & 0x3f);
596
+ }
597
+
598
+ index[QOI_COLOR_HASH(px) % 64] = px;
599
+ }
600
+
601
+ if (channels == 4) {
602
+ *(qoi_rgba_t*)(pixels + px_pos) = px;
603
+ }
604
+ else {
605
+ pixels[px_pos + 0] = px.rgba.r;
606
+ pixels[px_pos + 1] = px.rgba.g;
607
+ pixels[px_pos + 2] = px.rgba.b;
608
+ }
609
+ }
610
+
611
+ return pixels;
612
+ }
613
+
614
+ #ifndef QOI_NO_STDIO
615
+ #include <stdio.h>
616
+
617
+ int qoi_write(const char *filename, const void *data, const qoi_desc *desc) {
618
+ FILE *f = fopen(filename, "wb");
619
+ int size;
620
+ void *encoded;
621
+
622
+ if (!f) {
623
+ return 0;
624
+ }
625
+
626
+ encoded = qoi_encode(data, desc, &size);
627
+ if (!encoded) {
628
+ fclose(f);
629
+ return 0;
630
+ }
631
+
632
+ fwrite(encoded, 1, size, f);
633
+ fclose(f);
634
+
635
+ QOI_FREE(encoded);
636
+ return size;
637
+ }
638
+
639
+ void *qoi_read(const char *filename, qoi_desc *desc, int channels) {
640
+ FILE *f = fopen(filename, "rb");
641
+ int size, bytes_read;
642
+ void *pixels, *data;
643
+
644
+ if (!f) {
645
+ return NULL;
646
+ }
647
+
648
+ fseek(f, 0, SEEK_END);
649
+ size = ftell(f);
650
+ if (size <= 0) {
651
+ fclose(f);
652
+ return NULL;
653
+ }
654
+ fseek(f, 0, SEEK_SET);
655
+
656
+ data = QOI_MALLOC(size);
657
+ if (!data) {
658
+ fclose(f);
659
+ return NULL;
660
+ }
661
+
662
+ bytes_read = fread(data, 1, size, f);
663
+ fclose(f);
664
+
665
+ pixels = qoi_decode(data, bytes_read, desc, channels);
666
+ QOI_FREE(data);
667
+ return pixels;
668
+ }
669
+
670
+ #endif /* QOI_NO_STDIO */
671
+ #endif /* QOI_IMPLEMENTATION */
@@ -570,7 +570,7 @@ enum STBVorbisError
570
570
  #if defined(_MSC_VER) || defined(__MINGW32__)
571
571
  #include <malloc.h>
572
572
  #endif
573
- #if defined(__linux__) || defined(__linux) || defined(__EMSCRIPTEN__) || defined(__APPLE__)
573
+ #if defined(__linux__) || defined(__linux) || defined(__EMSCRIPTEN__) || defined(__APPLE__) || defined(__CYGWIN__)
574
574
  #include <alloca.h>
575
575
  #endif
576
576
  #else // STB_VORBIS_NO_CRT