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.
- package/ChangeLog.md +6 -0
- package/build/qemu/2.1.2/koffi_darwin_arm64.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_darwin_x64.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_freebsd_arm64.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_freebsd_ia32.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_freebsd_x64.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_linux_arm32hf.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_linux_arm64.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_linux_ia32.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_linux_riscv64hf64.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_linux_x64.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_openbsd_ia32.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_openbsd_x64.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_win32_arm64.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_win32_ia32.tar.gz +0 -0
- package/build/qemu/2.1.2/koffi_win32_x64.tar.gz +0 -0
- package/doc/templates/badges.html +3 -0
- package/package.json +2 -2
- package/src/abi_arm64.cc +35 -1
- package/src/abi_x64_win.cc +2 -8
- package/src/abi_x86.cc +1 -7
- package/src/ffi.hh +1 -1
- package/src/util.hh +6 -0
- package/test/raylib.js +37 -5
- package/vendor/libcc/libcc.cc +430 -196
- package/vendor/libcc/libcc.hh +1417 -1283
- package/vendor/raylib/BINDINGS.md +87 -70
- package/vendor/raylib/CHANGELOG +263 -50
- package/vendor/raylib/CMakeLists.txt +12 -0
- package/vendor/raylib/CMakeOptions.txt +8 -1
- package/vendor/raylib/CONVENTIONS.md +2 -3
- package/vendor/raylib/FAQ.md +137 -0
- package/vendor/raylib/HISTORY.md +62 -29
- package/vendor/raylib/LICENSE +1 -1
- package/vendor/raylib/README.md +22 -17
- package/vendor/raylib/ROADMAP.md +8 -7
- package/vendor/raylib/cmake/CompileDefinitions.cmake +19 -15
- package/vendor/raylib/cmake/GlfwImport.cmake +2 -0
- package/vendor/raylib/cmake/LibraryConfigurations.cmake +22 -16
- package/vendor/raylib/cmake/raylib-config.cmake +52 -49
- package/vendor/raylib/examples/CMakeLists.txt +14 -9
- package/vendor/raylib/examples/Makefile +112 -125
- package/vendor/raylib/examples/Makefile.Android +1 -1
- package/vendor/raylib/examples/Makefile.Web +145 -158
- package/vendor/raylib/examples/README.md +141 -141
- package/vendor/raylib/examples/audio/audio_module_playing.c +9 -4
- package/vendor/raylib/examples/audio/audio_multichannel_sound.c +8 -3
- package/vendor/raylib/examples/audio/audio_music_stream.c +16 -11
- package/vendor/raylib/examples/audio/audio_raw_stream.c +57 -9
- package/vendor/raylib/examples/audio/audio_sound_loading.c +8 -3
- package/vendor/raylib/examples/audio/audio_stream_effects.c +179 -0
- package/vendor/raylib/examples/audio/audio_stream_effects.png +0 -0
- package/vendor/raylib/examples/build.zig +17 -6
- package/vendor/raylib/examples/core/core_2d_camera.c +8 -4
- package/vendor/raylib/examples/core/core_2d_camera_mouse_zoom.c +105 -0
- package/vendor/raylib/examples/core/core_2d_camera_mouse_zoom.png +0 -0
- package/vendor/raylib/examples/core/core_2d_camera_platformer.c +11 -6
- package/vendor/raylib/examples/core/core_3d_camera_first_person.c +9 -4
- package/vendor/raylib/examples/core/core_3d_camera_free.c +9 -4
- package/vendor/raylib/examples/core/core_3d_camera_mode.c +8 -3
- package/vendor/raylib/examples/core/core_3d_picking.c +9 -4
- package/vendor/raylib/examples/core/core_basic_screen_manager.c +9 -7
- package/vendor/raylib/examples/core/core_basic_window.c +8 -3
- package/vendor/raylib/examples/core/core_basic_window_web.c +13 -11
- package/vendor/raylib/examples/core/core_custom_frame_control.c +9 -4
- package/vendor/raylib/examples/core/core_custom_logging.c +12 -8
- package/vendor/raylib/examples/core/core_drop_files.c +20 -12
- package/vendor/raylib/examples/core/core_input_gamepad.c +20 -15
- package/vendor/raylib/examples/core/core_input_gestures.c +19 -15
- package/vendor/raylib/examples/core/core_input_keys.c +8 -3
- package/vendor/raylib/examples/core/core_input_mouse.c +8 -3
- package/vendor/raylib/examples/core/core_input_mouse_wheel.c +8 -3
- package/vendor/raylib/examples/core/core_input_multitouch.c +8 -3
- package/vendor/raylib/examples/core/core_loading_thread.c +10 -6
- package/vendor/raylib/examples/core/core_random_values.c +8 -3
- package/vendor/raylib/examples/core/core_scissor_test.c +8 -3
- package/vendor/raylib/examples/core/core_smooth_pixelperfect.c +9 -4
- package/vendor/raylib/examples/core/core_split_screen.c +8 -3
- package/vendor/raylib/examples/core/core_storage_values.c +109 -3
- package/vendor/raylib/examples/core/core_vr_simulator.c +15 -7
- package/vendor/raylib/examples/core/core_window_flags.c +8 -3
- package/vendor/raylib/examples/core/core_window_letterbox.c +13 -18
- package/vendor/raylib/examples/core/core_window_should_close.c +77 -0
- package/vendor/raylib/examples/core/core_window_should_close.png +0 -0
- package/vendor/raylib/examples/core/core_world_screen.c +9 -4
- package/vendor/raylib/examples/examples_template.c +8 -3
- package/vendor/raylib/examples/models/models_animation.c +11 -7
- package/vendor/raylib/examples/models/models_billboard.c +9 -4
- package/vendor/raylib/examples/models/models_box_collisions.c +8 -3
- package/vendor/raylib/examples/models/models_cubicmap.c +9 -4
- package/vendor/raylib/examples/models/models_first_person_maze.c +9 -4
- package/vendor/raylib/examples/models/models_geometric_shapes.c +8 -3
- package/vendor/raylib/examples/models/models_heightmap.c +9 -4
- package/vendor/raylib/examples/models/models_loading.c +21 -17
- package/vendor/raylib/examples/models/models_loading_gltf.c +15 -41
- package/vendor/raylib/examples/models/models_loading_vox.c +9 -4
- package/vendor/raylib/examples/models/models_mesh_generation.c +71 -58
- package/vendor/raylib/examples/models/models_mesh_picking.c +25 -7
- package/vendor/raylib/examples/models/models_orthographic_projection.c +8 -5
- package/vendor/raylib/examples/models/models_rlgl_solar_system.c +6 -4
- package/vendor/raylib/examples/models/models_skybox.c +16 -12
- package/vendor/raylib/examples/models/models_waving_cubes.c +9 -4
- package/vendor/raylib/examples/models/models_yaw_pitch_roll.c +12 -7
- package/vendor/raylib/examples/models/resources/LICENSE.md +9 -10
- package/vendor/raylib/examples/models/resources/models/gltf/LICENSE +2 -23
- package/vendor/raylib/examples/models/resources/models/gltf/{raylib_32x32.glb → raylib_logo_3d.glb} +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/robot.blend +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/robot.glb +0 -0
- package/vendor/raylib/examples/others/easings_testbed.c +10 -8
- package/vendor/raylib/examples/others/easings_testbed.png +0 -0
- package/vendor/raylib/examples/others/embedded_files_loading.c +10 -5
- package/vendor/raylib/examples/others/embedded_files_loading.png +0 -0
- package/vendor/raylib/examples/others/raylib_opengl_interop.c +10 -6
- package/vendor/raylib/{src/extras/easings.h → examples/others/reasings.h} +38 -38
- package/vendor/raylib/examples/others/rlgl_compute_shader.c +21 -20
- package/vendor/raylib/examples/others/rlgl_compute_shader.png +0 -0
- package/vendor/raylib/examples/others/rlgl_standalone.c +4 -4
- package/vendor/raylib/examples/others/rlgl_standalone.png +0 -0
- package/vendor/raylib/examples/raylib_compile_execute.bat +2 -2
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/lighting.fs +1 -1
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/{base_lighting_instanced.vs → lighting_instancing.vs} +2 -2
- package/vendor/raylib/examples/shaders/rlights.h +14 -27
- package/vendor/raylib/examples/shaders/shaders_basic_lighting.c +24 -26
- package/vendor/raylib/examples/shaders/shaders_custom_uniform.c +10 -5
- package/vendor/raylib/examples/shaders/shaders_eratosthenes.c +13 -8
- package/vendor/raylib/examples/shaders/shaders_fog.c +8 -12
- package/vendor/raylib/examples/shaders/shaders_hot_reloading.c +10 -5
- package/vendor/raylib/examples/shaders/shaders_julia_set.c +9 -4
- package/vendor/raylib/examples/shaders/shaders_mesh_instancing.c +45 -119
- package/vendor/raylib/examples/shaders/shaders_model_shader.c +10 -5
- package/vendor/raylib/examples/shaders/shaders_multi_sample2d.c +8 -3
- package/vendor/raylib/examples/shaders/shaders_palette_switch.c +8 -3
- package/vendor/raylib/examples/shaders/shaders_postprocessing.c +9 -4
- package/vendor/raylib/examples/shaders/shaders_raymarching.c +14 -11
- package/vendor/raylib/examples/shaders/shaders_shapes_textures.c +8 -3
- package/vendor/raylib/examples/shaders/shaders_simple_mask.c +10 -5
- package/vendor/raylib/examples/shaders/shaders_spotlight.c +10 -6
- package/vendor/raylib/examples/shaders/shaders_texture_drawing.c +9 -4
- package/vendor/raylib/examples/shaders/shaders_texture_outline.c +8 -3
- package/vendor/raylib/examples/shaders/shaders_texture_waves.c +8 -3
- package/vendor/raylib/{src/extras → examples/shapes}/raygui.h +1290 -1141
- package/vendor/raylib/examples/{others/easings.h → shapes/reasings.h} +40 -40
- package/vendor/raylib/examples/shapes/shapes_basic_shapes.c +8 -3
- package/vendor/raylib/examples/shapes/shapes_bouncing_ball.c +8 -3
- package/vendor/raylib/examples/shapes/shapes_collision_area.c +10 -4
- package/vendor/raylib/examples/shapes/shapes_colors_palette.c +8 -3
- package/vendor/raylib/examples/shapes/shapes_draw_circle_sector.c +9 -4
- package/vendor/raylib/examples/shapes/shapes_draw_rectangle_rounded.c +9 -4
- package/vendor/raylib/examples/shapes/shapes_draw_ring.c +10 -6
- package/vendor/raylib/examples/shapes/shapes_easings_ball_anim.c +9 -4
- package/vendor/raylib/examples/shapes/shapes_easings_box_anim.c +9 -4
- package/vendor/raylib/examples/shapes/shapes_easings_rectangle_array.c +9 -4
- package/vendor/raylib/examples/shapes/shapes_following_eyes.c +8 -3
- package/vendor/raylib/examples/shapes/shapes_lines_bezier.c +8 -3
- package/vendor/raylib/examples/shapes/shapes_logo_raylib.c +8 -3
- package/vendor/raylib/examples/shapes/shapes_logo_raylib_anim.c +8 -3
- package/vendor/raylib/examples/shapes/shapes_rectangle_scaling.c +14 -5
- package/vendor/raylib/examples/shapes/shapes_top_down_lights.c +355 -0
- package/vendor/raylib/examples/shapes/shapes_top_down_lights.png +0 -0
- package/vendor/raylib/examples/text/resources/DotGothic16-Regular.ttf +0 -0
- package/vendor/raylib/examples/text/resources/DotGothic16-Regular_OFL.txt +93 -0
- package/vendor/raylib/examples/text/resources/LICENSE.md +1 -1
- package/vendor/raylib/examples/text/text_codepoints_loading.c +138 -0
- package/vendor/raylib/examples/text/text_codepoints_loading.png +0 -0
- package/vendor/raylib/examples/text/text_draw_3d.c +42 -33
- package/vendor/raylib/examples/text/text_font_filters.c +14 -11
- package/vendor/raylib/examples/text/text_font_loading.c +9 -4
- package/vendor/raylib/examples/text/text_font_sdf.c +9 -4
- package/vendor/raylib/examples/text/text_font_spritefont.c +12 -6
- package/vendor/raylib/examples/text/text_format_text.c +8 -3
- package/vendor/raylib/examples/text/text_input_box.c +8 -3
- package/vendor/raylib/examples/text/text_raylib_fonts.c +9 -4
- package/vendor/raylib/examples/text/text_rectangle_bounds.c +9 -5
- package/vendor/raylib/examples/text/text_unicode.c +9 -7
- package/vendor/raylib/examples/text/text_writing_anim.c +8 -3
- package/vendor/raylib/examples/textures/resources/scarfy_run.gif +0 -0
- package/vendor/raylib/examples/textures/textures_background_scrolling.c +8 -3
- package/vendor/raylib/examples/textures/textures_blend_modes.c +8 -3
- package/vendor/raylib/examples/textures/textures_bunnymark.c +8 -3
- package/vendor/raylib/examples/textures/textures_draw_tiled.c +14 -10
- package/vendor/raylib/examples/textures/textures_fog_of_war.c +154 -0
- package/vendor/raylib/examples/textures/textures_fog_of_war.png +0 -0
- package/vendor/raylib/examples/textures/textures_gif_player.c +121 -0
- package/vendor/raylib/examples/textures/textures_gif_player.png +0 -0
- package/vendor/raylib/examples/textures/textures_image_drawing.c +8 -3
- package/vendor/raylib/examples/textures/textures_image_generation.c +8 -3
- package/vendor/raylib/examples/textures/textures_image_loading.c +8 -3
- package/vendor/raylib/examples/textures/textures_image_processing.c +8 -3
- package/vendor/raylib/examples/textures/textures_image_text.c +8 -3
- package/vendor/raylib/examples/textures/textures_logo_raylib.c +8 -3
- package/vendor/raylib/examples/textures/textures_mouse_painting.c +9 -4
- package/vendor/raylib/examples/textures/textures_npatch_drawing.c +8 -3
- package/vendor/raylib/examples/textures/textures_particles_blending.c +8 -3
- package/vendor/raylib/examples/textures/textures_polygon.c +9 -5
- package/vendor/raylib/examples/textures/textures_raw_data.c +8 -3
- package/vendor/raylib/examples/textures/{textures_rectangle.c → textures_sprite_anim.c} +11 -5
- package/vendor/raylib/examples/textures/{textures_rectangle.png → textures_sprite_anim.png} +0 -0
- package/vendor/raylib/examples/textures/textures_sprite_button.c +8 -3
- package/vendor/raylib/examples/textures/textures_sprite_explosion.c +8 -3
- package/vendor/raylib/examples/textures/textures_srcrec_dstrec.c +8 -3
- package/vendor/raylib/examples/textures/textures_to_image.c +8 -3
- package/vendor/raylib/parser/LICENSE +1 -1
- package/vendor/raylib/parser/Makefile +28 -0
- package/vendor/raylib/parser/README.md +49 -5
- package/vendor/raylib/parser/output/raylib_api.json +10717 -0
- package/vendor/raylib/parser/output/raylib_api.lua +7435 -0
- package/vendor/raylib/parser/{raylib_api.txt → output/raylib_api.txt} +1371 -824
- package/vendor/raylib/parser/{raylib_api.xml → output/raylib_api.xml} +827 -595
- package/vendor/raylib/parser/raylib_parser.c +1174 -196
- package/vendor/raylib/projects/4coder/Makefile +2 -4
- package/vendor/raylib/projects/4coder/main.c +0 -1
- package/vendor/raylib/projects/CMake/CMakeLists.txt +13 -16
- package/vendor/raylib/projects/CMake/README.md +27 -0
- package/vendor/raylib/projects/CMake/core_basic_window.c +52 -31
- package/vendor/raylib/projects/CodeBlocks/README.md +4 -4
- package/vendor/raylib/projects/Geany/core_basic_window.c +1 -1
- package/vendor/raylib/projects/Notepad++/c_raylib.xml +168 -128
- 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 +168 -84
- package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h +67 -51
- package/vendor/raylib/projects/README.md +1 -1
- package/vendor/raylib/projects/VSCode/.vscode/c_cpp_properties.json +1 -1
- package/vendor/raylib/projects/VSCode/Makefile +8 -11
- package/vendor/raylib/projects/VSCode/main.c +53 -26
- package/vendor/raylib/projects/VSCode/resources/LICENSE +1 -0
- package/vendor/raylib/projects/scripts/build-linux.sh +6 -6
- package/vendor/raylib/projects/scripts/build-osx.sh +6 -6
- package/vendor/raylib/projects/scripts/build-rpi.sh +6 -6
- package/vendor/raylib/projects/scripts/build-windows.bat +2 -2
- package/vendor/raylib/src/CMakeLists.txt +6 -7
- package/vendor/raylib/src/Makefile +209 -103
- package/vendor/raylib/src/build.zig +56 -20
- package/vendor/raylib/src/config.h +32 -27
- package/vendor/raylib/src/external/cgltf.h +342 -104
- package/vendor/raylib/src/external/dr_wav.h +487 -225
- package/vendor/raylib/src/external/glfw/src/posix_time.c +1 -3
- package/vendor/raylib/src/external/glfw/src/wl_init.c +1 -3
- package/vendor/raylib/src/external/jar_xm.h +2 -1
- package/vendor/raylib/src/external/miniaudio.h +62251 -42061
- package/vendor/raylib/src/external/qoi.h +671 -0
- package/vendor/raylib/src/external/stb_vorbis.h +1 -1
- package/vendor/raylib/src/external/vox_loader.h +30 -25
- package/vendor/raylib/src/minshell.html +82 -0
- package/vendor/raylib/src/raudio.c +359 -201
- package/vendor/raylib/src/raylib.dll.rc +5 -5
- package/vendor/raylib/src/raylib.dll.rc.data +0 -0
- package/vendor/raylib/src/raylib.h +95 -63
- package/vendor/raylib/src/raylib.rc +5 -5
- package/vendor/raylib/src/raylib.rc.data +0 -0
- package/vendor/raylib/src/raymath.h +391 -133
- package/vendor/raylib/src/rcamera.h +32 -41
- package/vendor/raylib/src/rcore.c +775 -471
- package/vendor/raylib/src/rgestures.h +5 -5
- package/vendor/raylib/src/rglfw.c +3 -3
- package/vendor/raylib/src/rlgl.h +184 -144
- package/vendor/raylib/src/rmodels.c +207 -144
- package/vendor/raylib/src/rshapes.c +105 -47
- package/vendor/raylib/src/rtext.c +255 -38
- package/vendor/raylib/src/rtextures.c +167 -71
- package/vendor/raylib/src/shell.html +63 -63
- package/vendor/raylib/src/utils.c +49 -3
- package/vendor/raylib/src/utils.h +3 -3
- package/build/qemu/2.1.1/koffi_darwin_arm64.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_darwin_x64.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_freebsd_arm64.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_freebsd_ia32.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_freebsd_x64.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_linux_arm32hf.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_linux_arm64.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_linux_ia32.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_linux_riscv64hf64.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_linux_x64.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_openbsd_ia32.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_openbsd_x64.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_win32_arm64.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_win32_ia32.tar.gz +0 -0
- package/build/qemu/2.1.1/koffi_win32_x64.tar.gz +0 -0
- package/vendor/raylib/CONTRIBUTORS.md +0 -63
- package/vendor/raylib/SPONSORS.md +0 -68
- package/vendor/raylib/examples/core/core_quat_conversion.c +0 -132
- package/vendor/raylib/examples/core/core_quat_conversion.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 +0 -118
- package/vendor/raylib/examples/models/resources/models/gltf/BoxAnimated.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/girl.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/vertex_colored_object.iqm +0 -0
- package/vendor/raylib/examples/models/rlights.h +0 -183
- package/vendor/raylib/examples/others/raudio_standalone.c +0 -152
- 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/physics/physics_demo.c +0 -128
- package/vendor/raylib/examples/physics/physics_demo.png +0 -0
- package/vendor/raylib/examples/physics/physics_friction.c +0 -142
- package/vendor/raylib/examples/physics/physics_friction.png +0 -0
- package/vendor/raylib/examples/physics/physics_movement.c +0 -128
- package/vendor/raylib/examples/physics/physics_movement.png +0 -0
- package/vendor/raylib/examples/physics/physics_restitution.c +0 -129
- package/vendor/raylib/examples/physics/physics_restitution.png +0 -0
- package/vendor/raylib/examples/physics/physics_shatter.c +0 -111
- package/vendor/raylib/examples/physics/physics_shatter.png +0 -0
- package/vendor/raylib/parser/raylib_api.json +0 -6668
- package/vendor/raylib/projects/VS2019/raylib/raylib.rc +0 -0
- package/vendor/raylib/projects/VS2019/raylib/resource.h +0 -14
- package/vendor/raylib/src/extras/physac.h +0 -1977
- package/vendor/raylib/src/extras/rmem.h +0 -751
- package/vendor/raylib/src/raudio.h +0 -198
|
@@ -1,45 +1,3 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="Windows-1252" ?>
|
|
2
|
-
<NotepadPlus>
|
|
3
|
-
<AutoComplete language="C">
|
|
4
|
-
<Environment ignoreCase="no" startFunc="(" stopFunc=")" paramSeparator="," terminal=";" additionalWordChar = "."/>
|
|
5
|
-
|
|
6
|
-
<!-- raylib Autocompletion -->
|
|
7
|
-
|
|
8
|
-
<!-- raylib data types -->
|
|
9
|
-
<KeyWord name="bool" />
|
|
10
|
-
<KeyWord name="Vector2" />
|
|
11
|
-
<KeyWord name="Vector3" />
|
|
12
|
-
<KeyWord name="Vector4" />
|
|
13
|
-
<KeyWord name="Quaternion" />
|
|
14
|
-
<KeyWord name="Matrix" />
|
|
15
|
-
<KeyWord name="Color" />
|
|
16
|
-
<KeyWord name="Rectangle" />
|
|
17
|
-
<KeyWord name="Image" />
|
|
18
|
-
<KeyWord name="Texture2D" />
|
|
19
|
-
<KeyWord name="RenderTexture2D" />
|
|
20
|
-
<KeyWord name="NPatchInfo" />
|
|
21
|
-
<KeyWord name="GlyphInfo" />
|
|
22
|
-
<KeyWord name="Font" />
|
|
23
|
-
<KeyWord name="Camera3D" />
|
|
24
|
-
<KeyWord name="Camera2D" />
|
|
25
|
-
<KeyWord name="BoundingBox" />
|
|
26
|
-
<KeyWord name="Mesh" />
|
|
27
|
-
<KeyWord name="Shader" />
|
|
28
|
-
<KeyWord name="MaterialMap" />
|
|
29
|
-
<KeyWord name="Material" />
|
|
30
|
-
<KeyWord name="Transform" />
|
|
31
|
-
<KeyWord name="BoneInfo" />
|
|
32
|
-
<KeyWord name="Model" />
|
|
33
|
-
<KeyWord name="ModelAnimation" />
|
|
34
|
-
<KeyWord name="Ray" />
|
|
35
|
-
<KeyWord name="RayCollision" />
|
|
36
|
-
<KeyWord name="Wave" />
|
|
37
|
-
<KeyWord name="Sound" />
|
|
38
|
-
<KeyWord name="Music" />
|
|
39
|
-
<KeyWord name="AudioStream" />
|
|
40
|
-
<KeyWord name="VrDeviceInfo" />
|
|
41
|
-
<KeyWord name="VrStereoConfig" />
|
|
42
|
-
|
|
43
1
|
<!-------------------------------------------------------------------------------------- -->
|
|
44
2
|
<!-- Window and Graphics Device Functions (Module: core) -->
|
|
45
3
|
<!-------------------------------------------------------------------------------------- -->
|
|
@@ -85,7 +43,7 @@
|
|
|
85
43
|
</Overload>
|
|
86
44
|
</KeyWord>
|
|
87
45
|
<KeyWord name="SetWindowState" func="yes">
|
|
88
|
-
<Overload retVal="void" descr="Set window configuration state using flags">
|
|
46
|
+
<Overload retVal="void" descr="Set window configuration state using flags (only PLATFORM_DESKTOP)">
|
|
89
47
|
<Param name="unsigned int flags" />
|
|
90
48
|
</Overload>
|
|
91
49
|
</KeyWord>
|
|
@@ -139,6 +97,11 @@
|
|
|
139
97
|
<Param name="int height" />
|
|
140
98
|
</Overload>
|
|
141
99
|
</KeyWord>
|
|
100
|
+
<KeyWord name="SetWindowOpacity" func="yes">
|
|
101
|
+
<Overload retVal="void" descr="Set window opacity [0.0f..1.0f] (only PLATFORM_DESKTOP)">
|
|
102
|
+
<Param name="float opacity" />
|
|
103
|
+
</Overload>
|
|
104
|
+
</KeyWord>
|
|
142
105
|
<KeyWord name="GetWindowHandle" func="yes">
|
|
143
106
|
<Overload retVal="void" descr="Get native window handle"></Overload>
|
|
144
107
|
</KeyWord>
|
|
@@ -148,6 +111,12 @@
|
|
|
148
111
|
<KeyWord name="GetScreenHeight" func="yes">
|
|
149
112
|
<Overload retVal="int" descr="Get current screen height"></Overload>
|
|
150
113
|
</KeyWord>
|
|
114
|
+
<KeyWord name="GetRenderWidth" func="yes">
|
|
115
|
+
<Overload retVal="int" descr="Get current render width (it considers HiDPI)"></Overload>
|
|
116
|
+
</KeyWord>
|
|
117
|
+
<KeyWord name="GetRenderHeight" func="yes">
|
|
118
|
+
<Overload retVal="int" descr="Get current render height (it considers HiDPI)"></Overload>
|
|
119
|
+
</KeyWord>
|
|
151
120
|
<KeyWord name="GetMonitorCount" func="yes">
|
|
152
121
|
<Overload retVal="int" descr="Get number of connected monitors"></Overload>
|
|
153
122
|
</KeyWord>
|
|
@@ -160,12 +129,12 @@
|
|
|
160
129
|
</Overload>
|
|
161
130
|
</KeyWord>
|
|
162
131
|
<KeyWord name="GetMonitorWidth" func="yes">
|
|
163
|
-
<Overload retVal="int" descr="Get specified monitor width (
|
|
132
|
+
<Overload retVal="int" descr="Get specified monitor width (current video mode used by monitor)">
|
|
164
133
|
<Param name="int monitor" />
|
|
165
134
|
</Overload>
|
|
166
135
|
</KeyWord>
|
|
167
136
|
<KeyWord name="GetMonitorHeight" func="yes">
|
|
168
|
-
<Overload retVal="int" descr="Get specified monitor height (
|
|
137
|
+
<Overload retVal="int" descr="Get specified monitor height (current video mode used by monitor)">
|
|
169
138
|
<Param name="int monitor" />
|
|
170
139
|
</Overload>
|
|
171
140
|
</KeyWord>
|
|
@@ -203,6 +172,12 @@
|
|
|
203
172
|
<KeyWord name="GetClipboardText" func="yes">
|
|
204
173
|
<Overload retVal="const char" descr="Get clipboard text content"></Overload>
|
|
205
174
|
</KeyWord>
|
|
175
|
+
<KeyWord name="EnableEventWaiting" func="yes">
|
|
176
|
+
<Overload retVal="void" descr="Enable waiting for events on EndDrawing(), no automatic event polling"></Overload>
|
|
177
|
+
</KeyWord>
|
|
178
|
+
<KeyWord name="DisableEventWaiting" func="yes">
|
|
179
|
+
<Overload retVal="void" descr="Disable waiting for events on EndDrawing(), automatic events polling"></Overload>
|
|
180
|
+
</KeyWord>
|
|
206
181
|
|
|
207
182
|
<!-- Custom frame control functions -->
|
|
208
183
|
<!-- NOTE: Those functions are intended for advance users that want full control over the frame processing -->
|
|
@@ -215,8 +190,8 @@
|
|
|
215
190
|
<Overload retVal="void" descr="Register all input events"></Overload>
|
|
216
191
|
</KeyWord>
|
|
217
192
|
<KeyWord name="WaitTime" func="yes">
|
|
218
|
-
<Overload retVal="void" descr="Wait for some
|
|
219
|
-
<Param name="
|
|
193
|
+
<Overload retVal="void" descr="Wait for some time (halt program execution)">
|
|
194
|
+
<Param name="double seconds" />
|
|
220
195
|
</Overload>
|
|
221
196
|
</KeyWord>
|
|
222
197
|
|
|
@@ -410,6 +385,12 @@
|
|
|
410
385
|
<Param name="Camera camera" />
|
|
411
386
|
</Overload>
|
|
412
387
|
</KeyWord>
|
|
388
|
+
<KeyWord name="GetScreenToWorld2D" func="yes">
|
|
389
|
+
<Overload retVal="Vector2" descr="Get the world space position for a 2d camera screen space position">
|
|
390
|
+
<Param name="Vector2 position" />
|
|
391
|
+
<Param name="Camera2D camera" />
|
|
392
|
+
</Overload>
|
|
393
|
+
</KeyWord>
|
|
413
394
|
<KeyWord name="GetWorldToScreenEx" func="yes">
|
|
414
395
|
<Overload retVal="Vector2" descr="Get size position for a 3d world space position">
|
|
415
396
|
<Param name="Vector3 position" />
|
|
@@ -424,12 +405,6 @@
|
|
|
424
405
|
<Param name="Camera2D camera" />
|
|
425
406
|
</Overload>
|
|
426
407
|
</KeyWord>
|
|
427
|
-
<KeyWord name="GetScreenToWorld2D" func="yes">
|
|
428
|
-
<Overload retVal="Vector2" descr="Get the world space position for a 2d camera screen space position">
|
|
429
|
-
<Param name="Vector2 position" />
|
|
430
|
-
<Param name="Camera2D camera" />
|
|
431
|
-
</Overload>
|
|
432
|
-
</KeyWord>
|
|
433
408
|
|
|
434
409
|
<!-- Timing-related functions -->
|
|
435
410
|
<KeyWord name="SetTargetFPS" func="yes">
|
|
@@ -494,6 +469,12 @@
|
|
|
494
469
|
<Overload retVal="void" descr="Internal memory free"></Overload>
|
|
495
470
|
</KeyWord>
|
|
496
471
|
|
|
472
|
+
<KeyWord name="OpenURL" func="yes">
|
|
473
|
+
<Overload retVal="void" descr="Open URL with default system browser (if available)">
|
|
474
|
+
<Param name="const char *url" />
|
|
475
|
+
</Overload>
|
|
476
|
+
</KeyWord>
|
|
477
|
+
|
|
497
478
|
<!-- Set custom callbacks -->
|
|
498
479
|
<!-- WARNING: Callbacks setup is intended for advance users -->
|
|
499
480
|
<KeyWord name="SetTraceLogCallback" func="yes">
|
|
@@ -538,6 +519,13 @@
|
|
|
538
519
|
<Overload retVal="bool" descr="Save data to file from byte array (write), returns true on success">
|
|
539
520
|
<Param name="const char *fileName" /></Overload>
|
|
540
521
|
</KeyWord>
|
|
522
|
+
<KeyWord name="ExportDataAsCode" func="yes">
|
|
523
|
+
<Overload retVal="bool" descr="Export data to code (.h), returns true on success">
|
|
524
|
+
<Param name="const char *data" />
|
|
525
|
+
<Param name="unsigned int size" />
|
|
526
|
+
<Param name="const char *fileName" />
|
|
527
|
+
</Overload>
|
|
528
|
+
</KeyWord>
|
|
541
529
|
<KeyWord name="LoadFileText" func="yes">
|
|
542
530
|
<Overload retVal="char" descr="Load text data from file (read), returns a '\0' terminated string">
|
|
543
531
|
<Param name="const char *fileName" />
|
|
@@ -570,6 +558,11 @@
|
|
|
570
558
|
<Param name="const char *ext" />
|
|
571
559
|
</Overload>
|
|
572
560
|
</KeyWord>
|
|
561
|
+
<KeyWord name="GetFileLength" func="yes">
|
|
562
|
+
<Overload retVal="int" descr="Get file length in bytes (NOTE: GetFileSize() conflicts with windows.h)">
|
|
563
|
+
<Param name="const char *fileName" />
|
|
564
|
+
</Overload>
|
|
565
|
+
</KeyWord>
|
|
573
566
|
<KeyWord name="GetFileExtension" func="yes">
|
|
574
567
|
<Overload retVal="const char" descr="Get pointer to extension for a filename string (includes dot: '.png')">
|
|
575
568
|
<Param name="const char *fileName" />
|
|
@@ -598,30 +591,46 @@
|
|
|
598
591
|
<KeyWord name="GetWorkingDirectory" func="yes">
|
|
599
592
|
<Overload retVal="const char" descr="Get current working directory (uses static string)"></Overload>
|
|
600
593
|
</KeyWord>
|
|
601
|
-
<KeyWord name="
|
|
602
|
-
<Overload retVal="char" descr="Get
|
|
603
|
-
<Param name="const char *dirPath" />
|
|
604
|
-
<Param name="int *count" />
|
|
605
|
-
</Overload>
|
|
606
|
-
</KeyWord>
|
|
607
|
-
<KeyWord name="ClearDirectoryFiles" func="yes">
|
|
608
|
-
<Overload retVal="void" descr="Clear directory files paths buffers (free memory)"></Overload>
|
|
594
|
+
<KeyWord name="GetApplicationDirectory" func="yes">
|
|
595
|
+
<Overload retVal="const char" descr="Get the directory if the running application (uses static string)"></Overload>
|
|
609
596
|
</KeyWord>
|
|
610
597
|
<KeyWord name="ChangeDirectory" func="yes">
|
|
611
598
|
<Overload retVal="bool" descr="Change working directory, return true on success">
|
|
612
599
|
<Param name="const char *dir" />
|
|
613
600
|
</Overload>
|
|
614
601
|
</KeyWord>
|
|
602
|
+
<KeyWord name="IsPathFile" func="yes">
|
|
603
|
+
<Overload retVal="bool" descr="Check if a given path is a file or a directory">
|
|
604
|
+
<Param name="const char *path" />
|
|
605
|
+
</Overload>
|
|
606
|
+
</KeyWord>
|
|
607
|
+
<KeyWord name="LoadDirectoryFiles" func="yes">
|
|
608
|
+
<Overload retVal="FilePathList" descr="Load directory filepaths">
|
|
609
|
+
<Param name="const char *dirPath" />
|
|
610
|
+
</Overload>
|
|
611
|
+
</KeyWord>
|
|
612
|
+
<KeyWord name="LoadDirectoryFilesEx" func="yes">
|
|
613
|
+
<Overload retVal="FilePathList" descr="Load directory filepaths with extension filtering and recursive directory scan">
|
|
614
|
+
<Param name="const char *basePath" />
|
|
615
|
+
<Param name="const char *filter" />
|
|
616
|
+
<Param name="bool scanSubdirs" />
|
|
617
|
+
</Overload>
|
|
618
|
+
</KeyWord>
|
|
619
|
+
<KeyWord name="UnloadDirectoryFiles" func="yes">
|
|
620
|
+
<Overload retVal="void" descr="Unload filepaths">
|
|
621
|
+
<Param name="FilePathList files" />
|
|
622
|
+
</Overload>
|
|
623
|
+
</KeyWord>
|
|
615
624
|
<KeyWord name="IsFileDropped" func="yes">
|
|
616
625
|
<Overload retVal="bool" descr="Check if a file has been dropped into window"></Overload>
|
|
617
626
|
</KeyWord>
|
|
618
|
-
<KeyWord name="
|
|
619
|
-
<Overload retVal="
|
|
620
|
-
<Param name="int *count" />
|
|
621
|
-
</Overload>
|
|
627
|
+
<KeyWord name="LoadDroppedFiles" func="yes">
|
|
628
|
+
<Overload retVal="FilePathList" descr="Load dropped filepaths"></Overload>
|
|
622
629
|
</KeyWord>
|
|
623
|
-
<KeyWord name="
|
|
624
|
-
<Overload retVal="void" descr="
|
|
630
|
+
<KeyWord name="UnloadDroppedFiles" func="yes">
|
|
631
|
+
<Overload retVal="void" descr="Unload dropped filepaths">
|
|
632
|
+
<Param name="FilePathList files" />
|
|
633
|
+
</Overload>
|
|
625
634
|
</KeyWord>
|
|
626
635
|
<KeyWord name="GetFileModTime" func="yes">
|
|
627
636
|
<Overload retVal="long" descr="Get file modification time (last write time)">
|
|
@@ -631,49 +640,30 @@
|
|
|
631
640
|
|
|
632
641
|
<!-- Compression/Encoding functionality -->
|
|
633
642
|
<KeyWord name="char *CompressData" func="yes">
|
|
634
|
-
<Overload retVal="unsigned" descr="Compress data (DEFLATE algorithm)">
|
|
635
|
-
<Param name="unsigned char
|
|
636
|
-
<Param name="int
|
|
637
|
-
<Param name="int *
|
|
643
|
+
<Overload retVal="unsigned" descr="Compress data (DEFLATE algorithm), memory must be MemFree()">
|
|
644
|
+
<Param name="const unsigned char" />
|
|
645
|
+
<Param name="int dataSize" />
|
|
646
|
+
<Param name="int *compDataSize" />
|
|
638
647
|
</Overload>
|
|
639
648
|
</KeyWord>
|
|
640
649
|
<KeyWord name="char *DecompressData" func="yes">
|
|
641
|
-
<Overload retVal="unsigned" descr="Decompress data (DEFLATE algorithm)">
|
|
642
|
-
<Param name="unsigned char
|
|
643
|
-
<Param name="int
|
|
644
|
-
<Param name="int *
|
|
650
|
+
<Overload retVal="unsigned" descr="Decompress data (DEFLATE algorithm), memory must be MemFree()">
|
|
651
|
+
<Param name="const unsigned char" />
|
|
652
|
+
<Param name="int compDataSize" />
|
|
653
|
+
<Param name="int *dataSize" />
|
|
645
654
|
</Overload>
|
|
646
655
|
</KeyWord>
|
|
647
656
|
<KeyWord name="EncodeDataBase64" func="yes">
|
|
648
|
-
<Overload retVal="char" descr="Encode data to Base64 string">
|
|
657
|
+
<Overload retVal="char" descr="Encode data to Base64 string, memory must be MemFree()">
|
|
649
658
|
<Param name="const unsigned char" />
|
|
650
|
-
<Param name="int
|
|
651
|
-
<Param name="int *
|
|
659
|
+
<Param name="int dataSize" />
|
|
660
|
+
<Param name="int *outputSize" />
|
|
652
661
|
</Overload>
|
|
653
662
|
</KeyWord>
|
|
654
663
|
<KeyWord name="char *DecodeDataBase64" func="yes">
|
|
655
|
-
<Overload retVal="unsigned" descr="Decode Base64 string data">
|
|
656
|
-
<Param name="unsigned char
|
|
657
|
-
<Param name="int *
|
|
658
|
-
</Overload>
|
|
659
|
-
</KeyWord>
|
|
660
|
-
|
|
661
|
-
<!-- Persistent storage management -->
|
|
662
|
-
<KeyWord name="SaveStorageValue" func="yes">
|
|
663
|
-
<Overload retVal="bool" descr="Save integer value to storage file (to defined position), returns true on success">
|
|
664
|
-
<Param name="unsigned int position" />
|
|
665
|
-
<Param name="int value" />
|
|
666
|
-
</Overload>
|
|
667
|
-
</KeyWord>
|
|
668
|
-
<KeyWord name="LoadStorageValue" func="yes">
|
|
669
|
-
<Overload retVal="int" descr="Load integer value from storage file (from defined position)">
|
|
670
|
-
<Param name="unsigned int position" />
|
|
671
|
-
</Overload>
|
|
672
|
-
</KeyWord>
|
|
673
|
-
|
|
674
|
-
<KeyWord name="OpenURL" func="yes">
|
|
675
|
-
<Overload retVal="void" descr="Open URL with default system browser (if available)">
|
|
676
|
-
<Param name="const char *url" />
|
|
664
|
+
<Overload retVal="unsigned" descr="Decode Base64 string data, memory must be MemFree()">
|
|
665
|
+
<Param name="const unsigned char" />
|
|
666
|
+
<Param name="int *outputSize" />
|
|
677
667
|
</Overload>
|
|
678
668
|
</KeyWord>
|
|
679
669
|
|
|
@@ -821,7 +811,10 @@
|
|
|
821
811
|
</Overload>
|
|
822
812
|
</KeyWord>
|
|
823
813
|
<KeyWord name="GetMouseWheelMove" func="yes">
|
|
824
|
-
<Overload retVal="float" descr="Get mouse wheel movement Y"></Overload>
|
|
814
|
+
<Overload retVal="float" descr="Get mouse wheel movement for X or Y, whichever is larger"></Overload>
|
|
815
|
+
</KeyWord>
|
|
816
|
+
<KeyWord name="GetMouseWheelMoveV" func="yes">
|
|
817
|
+
<Overload retVal="Vector2" descr="Get mouse wheel movement for both X and Y"></Overload>
|
|
825
818
|
</KeyWord>
|
|
826
819
|
<KeyWord name="SetMouseCursor" func="yes">
|
|
827
820
|
<Overload retVal="void" descr="Set mouse cursor">
|
|
@@ -1987,7 +1980,7 @@
|
|
|
1987
1980
|
</Overload>
|
|
1988
1981
|
</KeyWord>
|
|
1989
1982
|
<KeyWord name="LoadFontEx" func="yes">
|
|
1990
|
-
<Overload retVal="Font" descr="Load font from file with extended parameters">
|
|
1983
|
+
<Overload retVal="Font" descr="Load font from file with extended parameters, use NULL for fontChars and 0 for glyphCount to load the default character set">
|
|
1991
1984
|
<Param name="const char *fileName" />
|
|
1992
1985
|
<Param name="int fontSize" />
|
|
1993
1986
|
<Param name="int *fontChars" />
|
|
@@ -2038,8 +2031,14 @@
|
|
|
2038
2031
|
</Overload>
|
|
2039
2032
|
</KeyWord>
|
|
2040
2033
|
<KeyWord name="UnloadFont" func="yes">
|
|
2041
|
-
<Overload retVal="void" descr="Unload
|
|
2034
|
+
<Overload retVal="void" descr="Unload font from GPU memory (VRAM)">
|
|
2035
|
+
<Param name="Font font" />
|
|
2036
|
+
</Overload>
|
|
2037
|
+
</KeyWord>
|
|
2038
|
+
<KeyWord name="ExportFontAsCode" func="yes">
|
|
2039
|
+
<Overload retVal="bool" descr="Export font as code file, returns true on success">
|
|
2042
2040
|
<Param name="Font font" />
|
|
2041
|
+
<Param name="const char *fileName" />
|
|
2043
2042
|
</Overload>
|
|
2044
2043
|
</KeyWord>
|
|
2045
2044
|
|
|
@@ -2090,6 +2089,17 @@
|
|
|
2090
2089
|
<Param name="Color tint" />
|
|
2091
2090
|
</Overload>
|
|
2092
2091
|
</KeyWord>
|
|
2092
|
+
<KeyWord name="DrawTextCodepoints" func="yes">
|
|
2093
|
+
<Overload retVal="void" descr="Draw multiple character (codepoint)">
|
|
2094
|
+
<Param name="Font font" />
|
|
2095
|
+
<Param name="const int *codepoints" />
|
|
2096
|
+
<Param name="int count" />
|
|
2097
|
+
<Param name="Vector2 position" />
|
|
2098
|
+
<Param name="float fontSize" />
|
|
2099
|
+
<Param name="float spacing" />
|
|
2100
|
+
<Param name="Color tint" />
|
|
2101
|
+
</Overload>
|
|
2102
|
+
</KeyWord>
|
|
2093
2103
|
|
|
2094
2104
|
<!-- Text font info functions -->
|
|
2095
2105
|
<KeyWord name="MeasureText" func="yes">
|
|
@@ -2156,7 +2166,7 @@
|
|
|
2156
2166
|
</KeyWord>
|
|
2157
2167
|
<KeyWord name="TextCodepointsToUTF8" func="yes">
|
|
2158
2168
|
<Overload retVal="char" descr="Encode text as codepoints array into UTF-8 text string (WARNING: memory must be freed!)">
|
|
2159
|
-
<Param name="int *codepoints" />
|
|
2169
|
+
<Param name="const int *codepoints" />
|
|
2160
2170
|
<Param name="int length" />
|
|
2161
2171
|
</Overload>
|
|
2162
2172
|
</KeyWord>
|
|
@@ -2552,7 +2562,11 @@
|
|
|
2552
2562
|
<KeyWord name="UpdateMeshBuffer" func="yes">
|
|
2553
2563
|
<Overload retVal="void" descr="Update mesh vertex data in GPU for a specific buffer index">
|
|
2554
2564
|
<Param name="Mesh mesh" />
|
|
2555
|
-
<Param name="int index"
|
|
2565
|
+
<Param name="int index" />
|
|
2566
|
+
<Param name="const void *data" />
|
|
2567
|
+
<Param name="int dataSize" />
|
|
2568
|
+
<Param name="int offset" />
|
|
2569
|
+
</Overload>
|
|
2556
2570
|
</KeyWord>
|
|
2557
2571
|
<KeyWord name="UnloadMesh" func="yes">
|
|
2558
2572
|
<Overload retVal="void" descr="Unload mesh data from CPU and GPU">
|
|
@@ -2570,7 +2584,7 @@
|
|
|
2570
2584
|
<Overload retVal="void" descr="Draw multiple mesh instances with material and different transforms">
|
|
2571
2585
|
<Param name="Mesh mesh" />
|
|
2572
2586
|
<Param name="Material material" />
|
|
2573
|
-
<Param name="Matrix *transforms" />
|
|
2587
|
+
<Param name="const Matrix *transforms" />
|
|
2574
2588
|
<Param name="int instances" />
|
|
2575
2589
|
</Overload>
|
|
2576
2590
|
</KeyWord>
|
|
@@ -2590,11 +2604,6 @@
|
|
|
2590
2604
|
<Param name="Mesh *mesh" />
|
|
2591
2605
|
</Overload>
|
|
2592
2606
|
</KeyWord>
|
|
2593
|
-
<KeyWord name="GenMeshBinormals" func="yes">
|
|
2594
|
-
<Overload retVal="void" descr="Compute mesh binormals">
|
|
2595
|
-
<Param name="Mesh *mesh" />
|
|
2596
|
-
</Overload>
|
|
2597
|
-
</KeyWord>
|
|
2598
2607
|
|
|
2599
2608
|
<!-- Mesh generation functions -->
|
|
2600
2609
|
<KeyWord name="GenMeshPoly" func="yes">
|
|
@@ -2726,7 +2735,7 @@
|
|
|
2726
2735
|
</KeyWord>
|
|
2727
2736
|
<KeyWord name="UnloadModelAnimations" func="yes">
|
|
2728
2737
|
<Overload retVal="void" descr="Unload animation array data">
|
|
2729
|
-
<Param name="ModelAnimation*
|
|
2738
|
+
<Param name="ModelAnimation *animations" />
|
|
2730
2739
|
<Param name="unsigned int count" />
|
|
2731
2740
|
</Overload>
|
|
2732
2741
|
</KeyWord>
|
|
@@ -2772,12 +2781,6 @@
|
|
|
2772
2781
|
<Param name="BoundingBox box" />
|
|
2773
2782
|
</Overload>
|
|
2774
2783
|
</KeyWord>
|
|
2775
|
-
<KeyWord name="GetRayCollisionModel" func="yes">
|
|
2776
|
-
<Overload retVal="RayCollision" descr="Get collision info between ray and model">
|
|
2777
|
-
<Param name="Ray ray" />
|
|
2778
|
-
<Param name="Model model" />
|
|
2779
|
-
</Overload>
|
|
2780
|
-
</KeyWord>
|
|
2781
2784
|
<KeyWord name="GetRayCollisionMesh" func="yes">
|
|
2782
2785
|
<Overload retVal="RayCollision" descr="Get collision info between ray and mesh">
|
|
2783
2786
|
<Param name="Ray ray" />
|
|
@@ -2925,12 +2928,10 @@
|
|
|
2925
2928
|
<Param name="float pitch" />
|
|
2926
2929
|
</Overload>
|
|
2927
2930
|
</KeyWord>
|
|
2928
|
-
<KeyWord name="
|
|
2929
|
-
<Overload retVal="void" descr="
|
|
2930
|
-
<Param name="
|
|
2931
|
-
<Param name="
|
|
2932
|
-
<Param name="int sampleSize" />
|
|
2933
|
-
<Param name="int channels" />
|
|
2931
|
+
<KeyWord name="SetSoundPan" func="yes">
|
|
2932
|
+
<Overload retVal="void" descr="Set pan for a sound (0.5 is center)">
|
|
2933
|
+
<Param name="Sound sound" />
|
|
2934
|
+
<Param name="float pan" />
|
|
2934
2935
|
</Overload>
|
|
2935
2936
|
</KeyWord>
|
|
2936
2937
|
<KeyWord name="WaveCopy" func="yes">
|
|
@@ -2945,8 +2946,16 @@
|
|
|
2945
2946
|
<Param name="int finalSample" />
|
|
2946
2947
|
</Overload>
|
|
2947
2948
|
</KeyWord>
|
|
2949
|
+
<KeyWord name="WaveFormat" func="yes">
|
|
2950
|
+
<Overload retVal="void" descr="Convert wave data to desired format">
|
|
2951
|
+
<Param name="Wave *wave" />
|
|
2952
|
+
<Param name="int sampleRate" />
|
|
2953
|
+
<Param name="int sampleSize" />
|
|
2954
|
+
<Param name="int channels" />
|
|
2955
|
+
</Overload>
|
|
2956
|
+
</KeyWord>
|
|
2948
2957
|
<KeyWord name="LoadWaveSamples" func="yes">
|
|
2949
|
-
<Overload retVal="float" descr="Load samples data from wave as a
|
|
2958
|
+
<Overload retVal="float" descr="Load samples data from wave as a 32bit float data array">
|
|
2950
2959
|
<Param name="Wave wave" />
|
|
2951
2960
|
</Overload>
|
|
2952
2961
|
</KeyWord>
|
|
@@ -2965,7 +2974,7 @@
|
|
|
2965
2974
|
<KeyWord name="LoadMusicStreamFromMemory" func="yes">
|
|
2966
2975
|
<Overload retVal="Music" descr="Load music stream from data">
|
|
2967
2976
|
<Param name="const char *fileType" />
|
|
2968
|
-
<Param name="unsigned char
|
|
2977
|
+
<Param name="const unsigned char" />
|
|
2969
2978
|
<Param name="int dataSize" />
|
|
2970
2979
|
</Overload>
|
|
2971
2980
|
</KeyWord>
|
|
@@ -3022,6 +3031,12 @@
|
|
|
3022
3031
|
<Param name="float pitch" />
|
|
3023
3032
|
</Overload>
|
|
3024
3033
|
</KeyWord>
|
|
3034
|
+
<KeyWord name="SetMusicPan" func="yes">
|
|
3035
|
+
<Overload retVal="void" descr="Set pan for a music (0.5 is center)">
|
|
3036
|
+
<Param name="Music music" />
|
|
3037
|
+
<Param name="float pan" />
|
|
3038
|
+
</Overload>
|
|
3039
|
+
</KeyWord>
|
|
3025
3040
|
<KeyWord name="GetMusicTimeLength" func="yes">
|
|
3026
3041
|
<Overload retVal="float" descr="Get music time length (in seconds)">
|
|
3027
3042
|
<Param name="Music music" />
|
|
@@ -3095,10 +3110,35 @@
|
|
|
3095
3110
|
<Param name="float pitch" />
|
|
3096
3111
|
</Overload>
|
|
3097
3112
|
</KeyWord>
|
|
3113
|
+
<KeyWord name="SetAudioStreamPan" func="yes">
|
|
3114
|
+
<Overload retVal="void" descr="Set pan for audio stream (0.5 is centered)">
|
|
3115
|
+
<Param name="AudioStream stream" />
|
|
3116
|
+
<Param name="float pan" />
|
|
3117
|
+
</Overload>
|
|
3118
|
+
</KeyWord>
|
|
3098
3119
|
<KeyWord name="SetAudioStreamBufferSizeDefault" func="yes">
|
|
3099
3120
|
<Overload retVal="void" descr="Default size for new audio streams">
|
|
3100
3121
|
<Param name="int size" />
|
|
3101
3122
|
</Overload>
|
|
3102
3123
|
</KeyWord>
|
|
3103
|
-
|
|
3104
|
-
|
|
3124
|
+
<KeyWord name="SetAudioStreamCallback" func="yes">
|
|
3125
|
+
<Overload retVal="void" descr="Audio thread callback to request new data">
|
|
3126
|
+
<Param name="AudioStream stream" />
|
|
3127
|
+
<Param name="AudioCallback callback" />
|
|
3128
|
+
</Overload>
|
|
3129
|
+
</KeyWord>
|
|
3130
|
+
|
|
3131
|
+
<KeyWord name="AttachAudioStreamProcessor" func="yes">
|
|
3132
|
+
<Overload retVal="void" descr="Attach audio stream processor to stream">
|
|
3133
|
+
<Param name="AudioStream stream" />
|
|
3134
|
+
<Param name="AudioCallback processor" />
|
|
3135
|
+
</Overload>
|
|
3136
|
+
</KeyWord>
|
|
3137
|
+
<KeyWord name="DetachAudioStreamProcessor" func="yes">
|
|
3138
|
+
<Overload retVal="void" descr="Detach audio stream processor from stream">
|
|
3139
|
+
<Param name="AudioStream stream" />
|
|
3140
|
+
<Param name="AudioCallback processor" />
|
|
3141
|
+
</Overload>
|
|
3142
|
+
</KeyWord>
|
|
3143
|
+
|
|
3144
|
+
|
|
Binary file
|
|
Binary file
|
|
Binary file
|