koffi 0.9.5 → 0.9.8
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 +74 -9
- package/package.json +27 -7
- package/src/call.hh +2 -1
- package/src/call_arm32.cc +525 -0
- package/src/call_arm32_fwd.S +108 -0
- package/src/call_arm64.cc +90 -63
- package/src/call_arm64_fwd.S +24 -29
- package/src/call_x64_sysv.cc +61 -48
- package/src/call_x64_win.cc +69 -43
- package/src/call_x86.cc +83 -62
- package/src/ffi.cc +166 -37
- package/src/ffi.hh +43 -12
- package/src/util.cc +72 -32
- package/src/util.hh +127 -18
- package/test/files/node32.cmd +6 -0
- package/test/files/node64.cmd +6 -0
- package/test/registry/machines.json +185 -0
- package/test/registry/sha256sum.txt +24 -0
- package/test/test.js +625 -0
- package/test/tests/misc.c +40 -0
- package/test/tests/misc.js +54 -0
- package/test/tests/raylib.js +167 -0
- package/vendor/dragonbox/include/dragonbox/dragonbox.h +6 -2
- package/vendor/dragonbox/other_files/Dragonbox.pdf +0 -0
- package/vendor/libcc/libcc.cc +36 -18
- package/vendor/libcc/libcc.hh +23 -1
- 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/examples/audio_module_playing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/audio_multichannel_sound.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/audio_music_stream.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/audio_raw_stream.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/audio_sound_loading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_2d_camera.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_2d_camera_platformer.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_3d_camera_first_person.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_3d_camera_free.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_3d_camera_mode.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_3d_picking.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_basic_window.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_custom_logging.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_drop_files.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_gamepad.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_gestures.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_keys.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_mouse.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_mouse_wheel.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_multitouch.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_loading_thread.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_quat_conversion.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_random_values.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_scissor_test.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_split_screen.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_storage_values.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_vr_simulator.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_window_flags.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_window_letterbox.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_world_screen.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/easings_testbed.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/embedded_files_loading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_animation.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_billboard.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_box_collisions.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_cubicmap.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_first_person_maze.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_geometric_shapes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_heightmap.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_loading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_loading_gltf.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_loading_vox.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_mesh_generation.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_mesh_picking.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_orthographic_projection.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_rlgl_solar_system.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_skybox.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_waving_cubes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_yaw_pitch_roll.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/physics_demo.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/physics_friction.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/physics_movement.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/physics_restitution.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/physics_shatter.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/raudio_standalone.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/rlgl_standalone.vcxproj +391 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_basic_lighting.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_custom_uniform.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_eratosthenes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_fog.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_hot_reloading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_julia_set.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_mesh_instancing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_model_shader.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_multi_sample2d.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_palette_switch.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_postprocessing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_raymarching.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_shapes_textures.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_simple_mask.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_spotlight.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_texture_drawing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_texture_waves.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_basic_shapes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_bouncing_ball.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_collision_area.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_colors_palette.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_draw_circle_sector.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_draw_rectangle_rounded.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_draw_ring.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_easings_ball_anim.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_easings_box_anim.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_easings_rectangle_array.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_following_eyes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_lines_bezier.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_logo_raylib.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_logo_raylib_anim.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_rectangle_scaling.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_font_filters.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_font_loading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_font_sdf.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_font_spritefont.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_format_text.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_input_box.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_raylib_fonts.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_rectangle_bounds.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_unicode.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_writing_anim.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_background_scrolling.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_blend_modes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_bunnymark.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_draw_tiled.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_image_drawing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_image_generation.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_image_loading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_image_processing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_image_text.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_logo_raylib.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_mouse_painting.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_npatch_drawing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_particles_blending.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_raw_data.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_rectangle.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_sprite_button.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_sprite_explosion.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_srcrec_dstrec.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_to_image.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/raylib/raylib.rc +0 -0
- package/vendor/raylib/projects/VS2019/raylib/raylib.vcxproj +341 -0
- package/vendor/raylib/projects/VS2019/raylib/resource.h +14 -0
- package/vendor/raylib/projects/VS2019/raylib.sln +2274 -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.NativeActivity/raylib_android.NativeActivity.vcxproj +226 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/raylib_android.NativeActivity.vcxproj.filters +10 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/raylib_android.NativeActivity.vcxproj.user +4 -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/VS2019-Android/raylib_android.sln +75 -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 -60
|
@@ -0,0 +1,3568 @@
|
|
|
1
|
+
|
|
2
|
+
Structures found: 31
|
|
3
|
+
|
|
4
|
+
Struct 01: Vector2 (2 fields)
|
|
5
|
+
Name: Vector2
|
|
6
|
+
Description:
|
|
7
|
+
Field[1]: float x // Vector x component
|
|
8
|
+
Field[2]: float y // Vector y component
|
|
9
|
+
Struct 02: Vector3 (3 fields)
|
|
10
|
+
Name: Vector3
|
|
11
|
+
Description:
|
|
12
|
+
Field[1]: float x // Vector x component
|
|
13
|
+
Field[2]: float y // Vector y component
|
|
14
|
+
Field[3]: float z // Vector z component
|
|
15
|
+
Struct 03: Vector4 (4 fields)
|
|
16
|
+
Name: Vector4
|
|
17
|
+
Description:
|
|
18
|
+
Field[1]: float x // Vector x component
|
|
19
|
+
Field[2]: float y // Vector y component
|
|
20
|
+
Field[3]: float z // Vector z component
|
|
21
|
+
Field[4]: float w // Vector w component
|
|
22
|
+
Struct 04: Matrix (4 fields)
|
|
23
|
+
Name: Matrix
|
|
24
|
+
Description:
|
|
25
|
+
Field[1]: float m0, m4, m8, m12 // Matrix first row (4 components)
|
|
26
|
+
Field[2]: float m1, m5, m9, m13 // Matrix second row (4 components)
|
|
27
|
+
Field[3]: float m2, m6, m10, m14 // Matrix third row (4 components)
|
|
28
|
+
Field[4]: float m3, m7, m11, m15 // Matrix fourth row (4 components)
|
|
29
|
+
Struct 05: Color (4 fields)
|
|
30
|
+
Name: Color
|
|
31
|
+
Description:
|
|
32
|
+
Field[1]: unsigned char r // Color red value
|
|
33
|
+
Field[2]: unsigned char g // Color green value
|
|
34
|
+
Field[3]: unsigned char b // Color blue value
|
|
35
|
+
Field[4]: unsigned char a // Color alpha value
|
|
36
|
+
Struct 06: Rectangle (4 fields)
|
|
37
|
+
Name: Rectangle
|
|
38
|
+
Description:
|
|
39
|
+
Field[1]: float x // Rectangle top-left corner position x
|
|
40
|
+
Field[2]: float y // Rectangle top-left corner position y
|
|
41
|
+
Field[3]: float width // Rectangle width
|
|
42
|
+
Field[4]: float height // Rectangle height
|
|
43
|
+
Struct 07: Image (5 fields)
|
|
44
|
+
Name: Image
|
|
45
|
+
Description:
|
|
46
|
+
Field[1]: void * data // Image raw data
|
|
47
|
+
Field[2]: int width // Image base width
|
|
48
|
+
Field[3]: int height // Image base height
|
|
49
|
+
Field[4]: int mipmaps // Mipmap levels, 1 by default
|
|
50
|
+
Field[5]: int format // Data format (PixelFormat type)
|
|
51
|
+
Struct 08: Texture (5 fields)
|
|
52
|
+
Name: Texture
|
|
53
|
+
Description:
|
|
54
|
+
Field[1]: unsigned int id // OpenGL texture id
|
|
55
|
+
Field[2]: int width // Texture base width
|
|
56
|
+
Field[3]: int height // Texture base height
|
|
57
|
+
Field[4]: int mipmaps // Mipmap levels, 1 by default
|
|
58
|
+
Field[5]: int format // Data format (PixelFormat type)
|
|
59
|
+
Struct 09: RenderTexture (3 fields)
|
|
60
|
+
Name: RenderTexture
|
|
61
|
+
Description:
|
|
62
|
+
Field[1]: unsigned int id // OpenGL framebuffer object id
|
|
63
|
+
Field[2]: Texture texture // Color buffer attachment texture
|
|
64
|
+
Field[3]: Texture depth // Depth buffer attachment texture
|
|
65
|
+
Struct 10: NPatchInfo (6 fields)
|
|
66
|
+
Name: NPatchInfo
|
|
67
|
+
Description:
|
|
68
|
+
Field[1]: Rectangle source // Texture source rectangle
|
|
69
|
+
Field[2]: int left // Left border offset
|
|
70
|
+
Field[3]: int top // Top border offset
|
|
71
|
+
Field[4]: int right // Right border offset
|
|
72
|
+
Field[5]: int bottom // Bottom border offset
|
|
73
|
+
Field[6]: int layout // Layout of the n-patch: 3x3, 1x3 or 3x1
|
|
74
|
+
Struct 11: CharInfo (5 fields)
|
|
75
|
+
Name: CharInfo
|
|
76
|
+
Description:
|
|
77
|
+
Field[1]: int value // Character value (Unicode)
|
|
78
|
+
Field[2]: int offsetX // Character offset X when drawing
|
|
79
|
+
Field[3]: int offsetY // Character offset Y when drawing
|
|
80
|
+
Field[4]: int advanceX // Character advance position X
|
|
81
|
+
Field[5]: Image image // Character image data
|
|
82
|
+
Struct 12: Font (6 fields)
|
|
83
|
+
Name: Font
|
|
84
|
+
Description:
|
|
85
|
+
Field[1]: int baseSize // Base size (default chars height)
|
|
86
|
+
Field[2]: int charsCount // Number of characters
|
|
87
|
+
Field[3]: int charsPadding // Padding around the chars
|
|
88
|
+
Field[4]: Texture2D texture // Characters texture atlas
|
|
89
|
+
Field[5]: Rectangle * recs // Characters rectangles in texture
|
|
90
|
+
Field[6]: CharInfo * chars // Characters info data
|
|
91
|
+
Struct 13: Camera3D (5 fields)
|
|
92
|
+
Name: Camera3D
|
|
93
|
+
Description:
|
|
94
|
+
Field[1]: Vector3 position // Camera position
|
|
95
|
+
Field[2]: Vector3 target // Camera target it looks-at
|
|
96
|
+
Field[3]: Vector3 up // Camera up vector (rotation over its axis)
|
|
97
|
+
Field[4]: float fovy // Camera field-of-view apperture in Y (degrees) in perspective, used as near plane width in orthographic
|
|
98
|
+
Field[5]: int projection // Camera projection: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC
|
|
99
|
+
Struct 14: Camera2D (4 fields)
|
|
100
|
+
Name: Camera2D
|
|
101
|
+
Description:
|
|
102
|
+
Field[1]: Vector2 offset // Camera offset (displacement from target)
|
|
103
|
+
Field[2]: Vector2 target // Camera target (rotation and zoom origin)
|
|
104
|
+
Field[3]: float rotation // Camera rotation in degrees
|
|
105
|
+
Field[4]: float zoom // Camera zoom (scaling), should be 1.0f by default
|
|
106
|
+
Struct 15: Mesh (15 fields)
|
|
107
|
+
Name: Mesh
|
|
108
|
+
Description:
|
|
109
|
+
Field[1]: int vertexCount // Number of vertices stored in arrays
|
|
110
|
+
Field[2]: int triangleCount // Number of triangles stored (indexed or not)
|
|
111
|
+
Field[3]: float * vertices // Vertex position (XYZ - 3 components per vertex) (shader-location = 0)
|
|
112
|
+
Field[4]: float * texcoords // Vertex texture coordinates (UV - 2 components per vertex) (shader-location = 1)
|
|
113
|
+
Field[5]: float * texcoords2 // Vertex second texture coordinates (useful for lightmaps) (shader-location = 5)
|
|
114
|
+
Field[6]: float * normals // Vertex normals (XYZ - 3 components per vertex) (shader-location = 2)
|
|
115
|
+
Field[7]: float * tangents // Vertex tangents (XYZW - 4 components per vertex) (shader-location = 4)
|
|
116
|
+
Field[8]: unsigned char * colors // Vertex colors (RGBA - 4 components per vertex) (shader-location = 3)
|
|
117
|
+
Field[9]: unsigned short * indices // Vertex indices (in case vertex data comes indexed)
|
|
118
|
+
Field[10]: float * animVertices // Animated vertex positions (after bones transformations)
|
|
119
|
+
Field[11]: float * animNormals // Animated normals (after bones transformations)
|
|
120
|
+
Field[12]: int * boneIds // Vertex bone ids, up to 4 bones influence by vertex (skinning)
|
|
121
|
+
Field[13]: float * boneWeights // Vertex bone weight, up to 4 bones influence by vertex (skinning)
|
|
122
|
+
Field[14]: unsigned int vaoId // OpenGL Vertex Array Object id
|
|
123
|
+
Field[15]: unsigned int * vboId // OpenGL Vertex Buffer Objects id (default vertex data)
|
|
124
|
+
Struct 16: Shader (2 fields)
|
|
125
|
+
Name: Shader
|
|
126
|
+
Description:
|
|
127
|
+
Field[1]: unsigned int id // Shader program id
|
|
128
|
+
Field[2]: int * locs // Shader locations array (MAX_SHADER_LOCATIONS)
|
|
129
|
+
Struct 17: MaterialMap (3 fields)
|
|
130
|
+
Name: MaterialMap
|
|
131
|
+
Description:
|
|
132
|
+
Field[1]: Texture2D texture // Material map texture
|
|
133
|
+
Field[2]: Color color // Material map color
|
|
134
|
+
Field[3]: float value // Material map value
|
|
135
|
+
Struct 18: Material (3 fields)
|
|
136
|
+
Name: Material
|
|
137
|
+
Description:
|
|
138
|
+
Field[1]: Shader shader // Material shader
|
|
139
|
+
Field[2]: MaterialMap * maps // Material maps array (MAX_MATERIAL_MAPS)
|
|
140
|
+
Field[3]: float params[4] // Material generic parameters (if required)
|
|
141
|
+
Struct 19: Transform (3 fields)
|
|
142
|
+
Name: Transform
|
|
143
|
+
Description:
|
|
144
|
+
Field[1]: Vector3 translation // Translation
|
|
145
|
+
Field[2]: Quaternion rotation // Rotation
|
|
146
|
+
Field[3]: Vector3 scale // Scale
|
|
147
|
+
Struct 20: BoneInfo (2 fields)
|
|
148
|
+
Name: BoneInfo
|
|
149
|
+
Description:
|
|
150
|
+
Field[1]: char name[32] // Bone name
|
|
151
|
+
Field[2]: int parent // Bone parent
|
|
152
|
+
Struct 21: Model (9 fields)
|
|
153
|
+
Name: Model
|
|
154
|
+
Description:
|
|
155
|
+
Field[1]: Matrix transform // Local transform matrix
|
|
156
|
+
Field[2]: int meshCount // Number of meshes
|
|
157
|
+
Field[3]: int materialCount // Number of materials
|
|
158
|
+
Field[4]: Mesh * meshes // Meshes array
|
|
159
|
+
Field[5]: Material * materials // Materials array
|
|
160
|
+
Field[6]: int * meshMaterial // Mesh material number
|
|
161
|
+
Field[7]: int boneCount // Number of bones
|
|
162
|
+
Field[8]: BoneInfo * bones // Bones information (skeleton)
|
|
163
|
+
Field[9]: Transform * bindPose // Bones base transformation (pose)
|
|
164
|
+
Struct 22: ModelAnimation (4 fields)
|
|
165
|
+
Name: ModelAnimation
|
|
166
|
+
Description:
|
|
167
|
+
Field[1]: int boneCount // Number of bones
|
|
168
|
+
Field[2]: int frameCount // Number of animation frames
|
|
169
|
+
Field[3]: BoneInfo * bones // Bones information (skeleton)
|
|
170
|
+
Field[4]: Transform ** framePoses // Poses array by frame
|
|
171
|
+
Struct 23: Ray (2 fields)
|
|
172
|
+
Name: Ray
|
|
173
|
+
Description:
|
|
174
|
+
Field[1]: Vector3 position // Ray position (origin)
|
|
175
|
+
Field[2]: Vector3 direction // Ray direction
|
|
176
|
+
Struct 24: RayCollision (4 fields)
|
|
177
|
+
Name: RayCollision
|
|
178
|
+
Description:
|
|
179
|
+
Field[1]: bool hit // Did the ray hit something?
|
|
180
|
+
Field[2]: float distance // Distance to nearest hit
|
|
181
|
+
Field[3]: Vector3 point // Point of nearest hit
|
|
182
|
+
Field[4]: Vector3 normal // Surface normal of hit
|
|
183
|
+
Struct 25: BoundingBox (2 fields)
|
|
184
|
+
Name: BoundingBox
|
|
185
|
+
Description:
|
|
186
|
+
Field[1]: Vector3 min // Minimum vertex box-corner
|
|
187
|
+
Field[2]: Vector3 max // Maximum vertex box-corner
|
|
188
|
+
Struct 26: Wave (5 fields)
|
|
189
|
+
Name: Wave
|
|
190
|
+
Description:
|
|
191
|
+
Field[1]: unsigned int sampleCount // Total number of samples (considering channels!)
|
|
192
|
+
Field[2]: unsigned int sampleRate // Frequency (samples per second)
|
|
193
|
+
Field[3]: unsigned int sampleSize // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
|
|
194
|
+
Field[4]: unsigned int channels // Number of channels (1-mono, 2-stereo)
|
|
195
|
+
Field[5]: void * data // Buffer data pointer
|
|
196
|
+
Struct 27: AudioStream (4 fields)
|
|
197
|
+
Name: AudioStream
|
|
198
|
+
Description:
|
|
199
|
+
Field[1]: rAudioBuffer * buffer // Pointer to internal data used by the audio system
|
|
200
|
+
Field[2]: unsigned int sampleRate // Frequency (samples per second)
|
|
201
|
+
Field[3]: unsigned int sampleSize // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
|
|
202
|
+
Field[4]: unsigned int channels // Number of channels (1-mono, 2-stereo)
|
|
203
|
+
Struct 28: Sound (2 fields)
|
|
204
|
+
Name: Sound
|
|
205
|
+
Description:
|
|
206
|
+
Field[1]: AudioStream stream // Audio stream
|
|
207
|
+
Field[2]: unsigned int sampleCount // Total number of samples
|
|
208
|
+
Struct 29: Music (5 fields)
|
|
209
|
+
Name: Music
|
|
210
|
+
Description:
|
|
211
|
+
Field[1]: AudioStream stream // Audio stream
|
|
212
|
+
Field[2]: unsigned int sampleCount // Total number of samples
|
|
213
|
+
Field[3]: bool looping // Music looping enable
|
|
214
|
+
Field[4]: int ctxType // Type of music context (audio filetype)
|
|
215
|
+
Field[5]: void * ctxData // Audio context data, depends on type
|
|
216
|
+
Struct 30: VrDeviceInfo (10 fields)
|
|
217
|
+
Name: VrDeviceInfo
|
|
218
|
+
Description:
|
|
219
|
+
Field[1]: int hResolution // Horizontal resolution in pixels
|
|
220
|
+
Field[2]: int vResolution // Vertical resolution in pixels
|
|
221
|
+
Field[3]: float hScreenSize // Horizontal size in meters
|
|
222
|
+
Field[4]: float vScreenSize // Vertical size in meters
|
|
223
|
+
Field[5]: float vScreenCenter // Screen center in meters
|
|
224
|
+
Field[6]: float eyeToScreenDistance // Distance between eye and display in meters
|
|
225
|
+
Field[7]: float lensSeparationDistance // Lens separation distance in meters
|
|
226
|
+
Field[8]: float interpupillaryDistance // IPD (distance between pupils) in meters
|
|
227
|
+
Field[9]: float lensDistortionValues[4] // Lens distortion constant parameters
|
|
228
|
+
Field[10]: float chromaAbCorrection[4] // Chromatic aberration correction parameters
|
|
229
|
+
Struct 31: VrStereoConfig (8 fields)
|
|
230
|
+
Name: VrStereoConfig
|
|
231
|
+
Description:
|
|
232
|
+
Field[1]: Matrix projection[2] // VR projection matrices (per eye)
|
|
233
|
+
Field[2]: Matrix viewOffset[2] // VR view offset matrices (per eye)
|
|
234
|
+
Field[3]: float leftLensCenter[2] // VR left lens center
|
|
235
|
+
Field[4]: float rightLensCenter[2] // VR right lens center
|
|
236
|
+
Field[5]: float leftScreenCenter[2] // VR left screen center
|
|
237
|
+
Field[6]: float rightScreenCenter[2] // VR right screen center
|
|
238
|
+
Field[7]: float scale[2] // VR distortion scale
|
|
239
|
+
Field[8]: float scaleIn[2] // VR distortion scale in
|
|
240
|
+
|
|
241
|
+
Enums found: 21
|
|
242
|
+
|
|
243
|
+
Enum 01: ConfigFlags (14 values)
|
|
244
|
+
Name: ConfigFlags
|
|
245
|
+
Description:
|
|
246
|
+
Value[FLAG_VSYNC_HINT]: 64
|
|
247
|
+
Value[FLAG_FULLSCREEN_MODE]: 2
|
|
248
|
+
Value[FLAG_WINDOW_RESIZABLE]: 4
|
|
249
|
+
Value[FLAG_WINDOW_UNDECORATED]: 8
|
|
250
|
+
Value[FLAG_WINDOW_HIDDEN]: 128
|
|
251
|
+
Value[FLAG_WINDOW_MINIMIZED]: 512
|
|
252
|
+
Value[FLAG_WINDOW_MAXIMIZED]: 1024
|
|
253
|
+
Value[FLAG_WINDOW_UNFOCUSED]: 2048
|
|
254
|
+
Value[FLAG_WINDOW_TOPMOST]: 4096
|
|
255
|
+
Value[FLAG_WINDOW_ALWAYS_RUN]: 256
|
|
256
|
+
Value[FLAG_WINDOW_TRANSPARENT]: 16
|
|
257
|
+
Value[FLAG_WINDOW_HIGHDPI]: 8192
|
|
258
|
+
Value[FLAG_MSAA_4X_HINT]: 32
|
|
259
|
+
Value[FLAG_INTERLACED_HINT]: 65536
|
|
260
|
+
Enum 02: TraceLogLevel (8 values)
|
|
261
|
+
Name: TraceLogLevel
|
|
262
|
+
Description:
|
|
263
|
+
Value[LOG_ALL]: 0
|
|
264
|
+
Value[LOG_TRACE]: 1
|
|
265
|
+
Value[LOG_DEBUG]: 2
|
|
266
|
+
Value[LOG_INFO]: 3
|
|
267
|
+
Value[LOG_WARNING]: 4
|
|
268
|
+
Value[LOG_ERROR]: 5
|
|
269
|
+
Value[LOG_FATAL]: 6
|
|
270
|
+
Value[LOG_NONE]: 7
|
|
271
|
+
Enum 03: KeyboardKey (110 values)
|
|
272
|
+
Name: KeyboardKey
|
|
273
|
+
Description:
|
|
274
|
+
Value[KEY_NULL]: 0
|
|
275
|
+
Value[KEY_APOSTROPHE]: 39
|
|
276
|
+
Value[KEY_COMMA]: 44
|
|
277
|
+
Value[KEY_MINUS]: 45
|
|
278
|
+
Value[KEY_PERIOD]: 46
|
|
279
|
+
Value[KEY_SLASH]: 47
|
|
280
|
+
Value[KEY_ZERO]: 48
|
|
281
|
+
Value[KEY_ONE]: 49
|
|
282
|
+
Value[KEY_TWO]: 50
|
|
283
|
+
Value[KEY_THREE]: 51
|
|
284
|
+
Value[KEY_FOUR]: 52
|
|
285
|
+
Value[KEY_FIVE]: 53
|
|
286
|
+
Value[KEY_SIX]: 54
|
|
287
|
+
Value[KEY_SEVEN]: 55
|
|
288
|
+
Value[KEY_EIGHT]: 56
|
|
289
|
+
Value[KEY_NINE]: 57
|
|
290
|
+
Value[KEY_SEMICOLON]: 59
|
|
291
|
+
Value[KEY_EQUAL]: 61
|
|
292
|
+
Value[KEY_A]: 65
|
|
293
|
+
Value[KEY_B]: 66
|
|
294
|
+
Value[KEY_C]: 67
|
|
295
|
+
Value[KEY_D]: 68
|
|
296
|
+
Value[KEY_E]: 69
|
|
297
|
+
Value[KEY_F]: 70
|
|
298
|
+
Value[KEY_G]: 71
|
|
299
|
+
Value[KEY_H]: 72
|
|
300
|
+
Value[KEY_I]: 73
|
|
301
|
+
Value[KEY_J]: 74
|
|
302
|
+
Value[KEY_K]: 75
|
|
303
|
+
Value[KEY_L]: 76
|
|
304
|
+
Value[KEY_M]: 77
|
|
305
|
+
Value[KEY_N]: 78
|
|
306
|
+
Value[KEY_O]: 79
|
|
307
|
+
Value[KEY_P]: 80
|
|
308
|
+
Value[KEY_Q]: 81
|
|
309
|
+
Value[KEY_R]: 82
|
|
310
|
+
Value[KEY_S]: 83
|
|
311
|
+
Value[KEY_T]: 84
|
|
312
|
+
Value[KEY_U]: 85
|
|
313
|
+
Value[KEY_V]: 86
|
|
314
|
+
Value[KEY_W]: 87
|
|
315
|
+
Value[KEY_X]: 88
|
|
316
|
+
Value[KEY_Y]: 89
|
|
317
|
+
Value[KEY_Z]: 90
|
|
318
|
+
Value[KEY_SPACE]: 32
|
|
319
|
+
Value[KEY_ESCAPE]: 256
|
|
320
|
+
Value[KEY_ENTER]: 257
|
|
321
|
+
Value[KEY_TAB]: 258
|
|
322
|
+
Value[KEY_BACKSPACE]: 259
|
|
323
|
+
Value[KEY_INSERT]: 260
|
|
324
|
+
Value[KEY_DELETE]: 261
|
|
325
|
+
Value[KEY_RIGHT]: 262
|
|
326
|
+
Value[KEY_LEFT]: 263
|
|
327
|
+
Value[KEY_DOWN]: 264
|
|
328
|
+
Value[KEY_UP]: 265
|
|
329
|
+
Value[KEY_PAGE_UP]: 266
|
|
330
|
+
Value[KEY_PAGE_DOWN]: 267
|
|
331
|
+
Value[KEY_HOME]: 268
|
|
332
|
+
Value[KEY_END]: 269
|
|
333
|
+
Value[KEY_CAPS_LOCK]: 280
|
|
334
|
+
Value[KEY_SCROLL_LOCK]: 281
|
|
335
|
+
Value[KEY_NUM_LOCK]: 282
|
|
336
|
+
Value[KEY_PRINT_SCREEN]: 283
|
|
337
|
+
Value[KEY_PAUSE]: 284
|
|
338
|
+
Value[KEY_F1]: 290
|
|
339
|
+
Value[KEY_F2]: 291
|
|
340
|
+
Value[KEY_F3]: 292
|
|
341
|
+
Value[KEY_F4]: 293
|
|
342
|
+
Value[KEY_F5]: 294
|
|
343
|
+
Value[KEY_F6]: 295
|
|
344
|
+
Value[KEY_F7]: 296
|
|
345
|
+
Value[KEY_F8]: 297
|
|
346
|
+
Value[KEY_F9]: 298
|
|
347
|
+
Value[KEY_F10]: 299
|
|
348
|
+
Value[KEY_F11]: 300
|
|
349
|
+
Value[KEY_F12]: 301
|
|
350
|
+
Value[KEY_LEFT_SHIFT]: 340
|
|
351
|
+
Value[KEY_LEFT_CONTROL]: 341
|
|
352
|
+
Value[KEY_LEFT_ALT]: 342
|
|
353
|
+
Value[KEY_LEFT_SUPER]: 343
|
|
354
|
+
Value[KEY_RIGHT_SHIFT]: 344
|
|
355
|
+
Value[KEY_RIGHT_CONTROL]: 345
|
|
356
|
+
Value[KEY_RIGHT_ALT]: 346
|
|
357
|
+
Value[KEY_RIGHT_SUPER]: 347
|
|
358
|
+
Value[KEY_KB_MENU]: 348
|
|
359
|
+
Value[KEY_LEFT_BRACKET]: 91
|
|
360
|
+
Value[KEY_BACKSLASH]: 92
|
|
361
|
+
Value[KEY_RIGHT_BRACKET]: 93
|
|
362
|
+
Value[KEY_GRAVE]: 96
|
|
363
|
+
Value[KEY_KP_0]: 320
|
|
364
|
+
Value[KEY_KP_1]: 321
|
|
365
|
+
Value[KEY_KP_2]: 322
|
|
366
|
+
Value[KEY_KP_3]: 323
|
|
367
|
+
Value[KEY_KP_4]: 324
|
|
368
|
+
Value[KEY_KP_5]: 325
|
|
369
|
+
Value[KEY_KP_6]: 326
|
|
370
|
+
Value[KEY_KP_7]: 327
|
|
371
|
+
Value[KEY_KP_8]: 328
|
|
372
|
+
Value[KEY_KP_9]: 329
|
|
373
|
+
Value[KEY_KP_DECIMAL]: 330
|
|
374
|
+
Value[KEY_KP_DIVIDE]: 331
|
|
375
|
+
Value[KEY_KP_MULTIPLY]: 332
|
|
376
|
+
Value[KEY_KP_SUBTRACT]: 333
|
|
377
|
+
Value[KEY_KP_ADD]: 334
|
|
378
|
+
Value[KEY_KP_ENTER]: 335
|
|
379
|
+
Value[KEY_KP_EQUAL]: 336
|
|
380
|
+
Value[KEY_BACK]: 4
|
|
381
|
+
Value[KEY_MENU]: 82
|
|
382
|
+
Value[KEY_VOLUME_UP]: 24
|
|
383
|
+
Value[KEY_VOLUME_DOWN]: 25
|
|
384
|
+
Enum 04: MouseButton (7 values)
|
|
385
|
+
Name: MouseButton
|
|
386
|
+
Description:
|
|
387
|
+
Value[MOUSE_BUTTON_LEFT]: 0
|
|
388
|
+
Value[MOUSE_BUTTON_RIGHT]: 1
|
|
389
|
+
Value[MOUSE_BUTTON_MIDDLE]: 2
|
|
390
|
+
Value[MOUSE_BUTTON_SIDE]: 3
|
|
391
|
+
Value[MOUSE_BUTTON_EXTRA]: 4
|
|
392
|
+
Value[MOUSE_BUTTON_FORWARD]: 5
|
|
393
|
+
Value[MOUSE_BUTTON_BACK]: 6
|
|
394
|
+
Enum 05: MouseCursor (11 values)
|
|
395
|
+
Name: MouseCursor
|
|
396
|
+
Description:
|
|
397
|
+
Value[MOUSE_CURSOR_DEFAULT]: 0
|
|
398
|
+
Value[MOUSE_CURSOR_ARROW]: 1
|
|
399
|
+
Value[MOUSE_CURSOR_IBEAM]: 2
|
|
400
|
+
Value[MOUSE_CURSOR_CROSSHAIR]: 3
|
|
401
|
+
Value[MOUSE_CURSOR_POINTING_HAND]: 4
|
|
402
|
+
Value[MOUSE_CURSOR_RESIZE_EW]: 5
|
|
403
|
+
Value[MOUSE_CURSOR_RESIZE_NS]: 6
|
|
404
|
+
Value[MOUSE_CURSOR_RESIZE_NWSE]: 7
|
|
405
|
+
Value[MOUSE_CURSOR_RESIZE_NESW]: 8
|
|
406
|
+
Value[MOUSE_CURSOR_RESIZE_ALL]: 9
|
|
407
|
+
Value[MOUSE_CURSOR_NOT_ALLOWED]: 10
|
|
408
|
+
Enum 06: GamepadButton (18 values)
|
|
409
|
+
Name: GamepadButton
|
|
410
|
+
Description:
|
|
411
|
+
Value[GAMEPAD_BUTTON_UNKNOWN]: 0
|
|
412
|
+
Value[GAMEPAD_BUTTON_LEFT_FACE_UP]: 1
|
|
413
|
+
Value[GAMEPAD_BUTTON_LEFT_FACE_RIGHT]: 2
|
|
414
|
+
Value[GAMEPAD_BUTTON_LEFT_FACE_DOWN]: 3
|
|
415
|
+
Value[GAMEPAD_BUTTON_LEFT_FACE_LEFT]: 4
|
|
416
|
+
Value[GAMEPAD_BUTTON_RIGHT_FACE_UP]: 5
|
|
417
|
+
Value[GAMEPAD_BUTTON_RIGHT_FACE_RIGHT]: 6
|
|
418
|
+
Value[GAMEPAD_BUTTON_RIGHT_FACE_DOWN]: 7
|
|
419
|
+
Value[GAMEPAD_BUTTON_RIGHT_FACE_LEFT]: 8
|
|
420
|
+
Value[GAMEPAD_BUTTON_LEFT_TRIGGER_1]: 9
|
|
421
|
+
Value[GAMEPAD_BUTTON_LEFT_TRIGGER_2]: 10
|
|
422
|
+
Value[GAMEPAD_BUTTON_RIGHT_TRIGGER_1]: 11
|
|
423
|
+
Value[GAMEPAD_BUTTON_RIGHT_TRIGGER_2]: 12
|
|
424
|
+
Value[GAMEPAD_BUTTON_MIDDLE_LEFT]: 13
|
|
425
|
+
Value[GAMEPAD_BUTTON_MIDDLE]: 14
|
|
426
|
+
Value[GAMEPAD_BUTTON_MIDDLE_RIGHT]: 15
|
|
427
|
+
Value[GAMEPAD_BUTTON_LEFT_THUMB]: 16
|
|
428
|
+
Value[GAMEPAD_BUTTON_RIGHT_THUMB]: 17
|
|
429
|
+
Enum 07: GamepadAxis (6 values)
|
|
430
|
+
Name: GamepadAxis
|
|
431
|
+
Description:
|
|
432
|
+
Value[GAMEPAD_AXIS_LEFT_X]: 0
|
|
433
|
+
Value[GAMEPAD_AXIS_LEFT_Y]: 1
|
|
434
|
+
Value[GAMEPAD_AXIS_RIGHT_X]: 2
|
|
435
|
+
Value[GAMEPAD_AXIS_RIGHT_Y]: 3
|
|
436
|
+
Value[GAMEPAD_AXIS_LEFT_TRIGGER]: 4
|
|
437
|
+
Value[GAMEPAD_AXIS_RIGHT_TRIGGER]: 5
|
|
438
|
+
Enum 08: MaterialMapIndex (11 values)
|
|
439
|
+
Name: MaterialMapIndex
|
|
440
|
+
Description:
|
|
441
|
+
Value[MATERIAL_MAP_ALBEDO]: 0
|
|
442
|
+
Value[MATERIAL_MAP_METALNESS]: 1
|
|
443
|
+
Value[MATERIAL_MAP_NORMAL]: 2
|
|
444
|
+
Value[MATERIAL_MAP_ROUGHNESS]: 3
|
|
445
|
+
Value[MATERIAL_MAP_OCCLUSION]: 4
|
|
446
|
+
Value[MATERIAL_MAP_EMISSION]: 5
|
|
447
|
+
Value[MATERIAL_MAP_HEIGHT]: 6
|
|
448
|
+
Value[MATERIAL_MAP_CUBEMAP]: 7
|
|
449
|
+
Value[MATERIAL_MAP_IRRADIANCE]: 8
|
|
450
|
+
Value[MATERIAL_MAP_PREFILTER]: 9
|
|
451
|
+
Value[MATERIAL_MAP_BRDF]: 10
|
|
452
|
+
Enum 09: ShaderLocationIndex (26 values)
|
|
453
|
+
Name: ShaderLocationIndex
|
|
454
|
+
Description:
|
|
455
|
+
Value[SHADER_LOC_VERTEX_POSITION]: 0
|
|
456
|
+
Value[SHADER_LOC_VERTEX_TEXCOORD01]: 1
|
|
457
|
+
Value[SHADER_LOC_VERTEX_TEXCOORD02]: 2
|
|
458
|
+
Value[SHADER_LOC_VERTEX_NORMAL]: 3
|
|
459
|
+
Value[SHADER_LOC_VERTEX_TANGENT]: 4
|
|
460
|
+
Value[SHADER_LOC_VERTEX_COLOR]: 5
|
|
461
|
+
Value[SHADER_LOC_MATRIX_MVP]: 6
|
|
462
|
+
Value[SHADER_LOC_MATRIX_VIEW]: 7
|
|
463
|
+
Value[SHADER_LOC_MATRIX_PROJECTION]: 8
|
|
464
|
+
Value[SHADER_LOC_MATRIX_MODEL]: 9
|
|
465
|
+
Value[SHADER_LOC_MATRIX_NORMAL]: 10
|
|
466
|
+
Value[SHADER_LOC_VECTOR_VIEW]: 11
|
|
467
|
+
Value[SHADER_LOC_COLOR_DIFFUSE]: 12
|
|
468
|
+
Value[SHADER_LOC_COLOR_SPECULAR]: 13
|
|
469
|
+
Value[SHADER_LOC_COLOR_AMBIENT]: 14
|
|
470
|
+
Value[SHADER_LOC_MAP_ALBEDO]: 15
|
|
471
|
+
Value[SHADER_LOC_MAP_METALNESS]: 16
|
|
472
|
+
Value[SHADER_LOC_MAP_NORMAL]: 17
|
|
473
|
+
Value[SHADER_LOC_MAP_ROUGHNESS]: 18
|
|
474
|
+
Value[SHADER_LOC_MAP_OCCLUSION]: 19
|
|
475
|
+
Value[SHADER_LOC_MAP_EMISSION]: 20
|
|
476
|
+
Value[SHADER_LOC_MAP_HEIGHT]: 21
|
|
477
|
+
Value[SHADER_LOC_MAP_CUBEMAP]: 22
|
|
478
|
+
Value[SHADER_LOC_MAP_IRRADIANCE]: 23
|
|
479
|
+
Value[SHADER_LOC_MAP_PREFILTER]: 24
|
|
480
|
+
Value[SHADER_LOC_MAP_BRDF]: 25
|
|
481
|
+
Enum 10: ShaderUniformDataType (9 values)
|
|
482
|
+
Name: ShaderUniformDataType
|
|
483
|
+
Description:
|
|
484
|
+
Value[SHADER_UNIFORM_FLOAT]: 0
|
|
485
|
+
Value[SHADER_UNIFORM_VEC2]: 1
|
|
486
|
+
Value[SHADER_UNIFORM_VEC3]: 2
|
|
487
|
+
Value[SHADER_UNIFORM_VEC4]: 3
|
|
488
|
+
Value[SHADER_UNIFORM_INT]: 4
|
|
489
|
+
Value[SHADER_UNIFORM_IVEC2]: 5
|
|
490
|
+
Value[SHADER_UNIFORM_IVEC3]: 6
|
|
491
|
+
Value[SHADER_UNIFORM_IVEC4]: 7
|
|
492
|
+
Value[SHADER_UNIFORM_SAMPLER2D]: 8
|
|
493
|
+
Enum 11: ShaderAttributeDataType (4 values)
|
|
494
|
+
Name: ShaderAttributeDataType
|
|
495
|
+
Description:
|
|
496
|
+
Value[SHADER_ATTRIB_FLOAT]: 0
|
|
497
|
+
Value[SHADER_ATTRIB_VEC2]: 1
|
|
498
|
+
Value[SHADER_ATTRIB_VEC3]: 2
|
|
499
|
+
Value[SHADER_ATTRIB_VEC4]: 3
|
|
500
|
+
Enum 12: PixelFormat (21 values)
|
|
501
|
+
Name: PixelFormat
|
|
502
|
+
Description:
|
|
503
|
+
Value[PIXELFORMAT_UNCOMPRESSED_GRAYSCALE]: 1
|
|
504
|
+
Value[PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA]: 2
|
|
505
|
+
Value[PIXELFORMAT_UNCOMPRESSED_R5G6B5]: 3
|
|
506
|
+
Value[PIXELFORMAT_UNCOMPRESSED_R8G8B8]: 4
|
|
507
|
+
Value[PIXELFORMAT_UNCOMPRESSED_R5G5B5A1]: 5
|
|
508
|
+
Value[PIXELFORMAT_UNCOMPRESSED_R4G4B4A4]: 6
|
|
509
|
+
Value[PIXELFORMAT_UNCOMPRESSED_R8G8B8A8]: 7
|
|
510
|
+
Value[PIXELFORMAT_UNCOMPRESSED_R32]: 8
|
|
511
|
+
Value[PIXELFORMAT_UNCOMPRESSED_R32G32B32]: 9
|
|
512
|
+
Value[PIXELFORMAT_UNCOMPRESSED_R32G32B32A32]: 10
|
|
513
|
+
Value[PIXELFORMAT_COMPRESSED_DXT1_RGB]: 11
|
|
514
|
+
Value[PIXELFORMAT_COMPRESSED_DXT1_RGBA]: 12
|
|
515
|
+
Value[PIXELFORMAT_COMPRESSED_DXT3_RGBA]: 13
|
|
516
|
+
Value[PIXELFORMAT_COMPRESSED_DXT5_RGBA]: 14
|
|
517
|
+
Value[PIXELFORMAT_COMPRESSED_ETC1_RGB]: 15
|
|
518
|
+
Value[PIXELFORMAT_COMPRESSED_ETC2_RGB]: 16
|
|
519
|
+
Value[PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA]: 17
|
|
520
|
+
Value[PIXELFORMAT_COMPRESSED_PVRT_RGB]: 18
|
|
521
|
+
Value[PIXELFORMAT_COMPRESSED_PVRT_RGBA]: 19
|
|
522
|
+
Value[PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA]: 20
|
|
523
|
+
Value[PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA]: 21
|
|
524
|
+
Enum 13: TextureFilter (6 values)
|
|
525
|
+
Name: TextureFilter
|
|
526
|
+
Description:
|
|
527
|
+
Value[TEXTURE_FILTER_POINT]: 0
|
|
528
|
+
Value[TEXTURE_FILTER_BILINEAR]: 1
|
|
529
|
+
Value[TEXTURE_FILTER_TRILINEAR]: 2
|
|
530
|
+
Value[TEXTURE_FILTER_ANISOTROPIC_4X]: 3
|
|
531
|
+
Value[TEXTURE_FILTER_ANISOTROPIC_8X]: 4
|
|
532
|
+
Value[TEXTURE_FILTER_ANISOTROPIC_16X]: 5
|
|
533
|
+
Enum 14: TextureWrap (4 values)
|
|
534
|
+
Name: TextureWrap
|
|
535
|
+
Description:
|
|
536
|
+
Value[TEXTURE_WRAP_REPEAT]: 0
|
|
537
|
+
Value[TEXTURE_WRAP_CLAMP]: 1
|
|
538
|
+
Value[TEXTURE_WRAP_MIRROR_REPEAT]: 2
|
|
539
|
+
Value[TEXTURE_WRAP_MIRROR_CLAMP]: 3
|
|
540
|
+
Enum 15: CubemapLayout (6 values)
|
|
541
|
+
Name: CubemapLayout
|
|
542
|
+
Description:
|
|
543
|
+
Value[CUBEMAP_LAYOUT_AUTO_DETECT]: 0
|
|
544
|
+
Value[CUBEMAP_LAYOUT_LINE_VERTICAL]: 1
|
|
545
|
+
Value[CUBEMAP_LAYOUT_LINE_HORIZONTAL]: 2
|
|
546
|
+
Value[CUBEMAP_LAYOUT_CROSS_THREE_BY_FOUR]: 3
|
|
547
|
+
Value[CUBEMAP_LAYOUT_CROSS_FOUR_BY_THREE]: 4
|
|
548
|
+
Value[CUBEMAP_LAYOUT_PANORAMA]: 5
|
|
549
|
+
Enum 16: FontType (3 values)
|
|
550
|
+
Name: FontType
|
|
551
|
+
Description:
|
|
552
|
+
Value[FONT_DEFAULT]: 0
|
|
553
|
+
Value[FONT_BITMAP]: 1
|
|
554
|
+
Value[FONT_SDF]: 2
|
|
555
|
+
Enum 17: BlendMode (6 values)
|
|
556
|
+
Name: BlendMode
|
|
557
|
+
Description:
|
|
558
|
+
Value[BLEND_ALPHA]: 0
|
|
559
|
+
Value[BLEND_ADDITIVE]: 1
|
|
560
|
+
Value[BLEND_MULTIPLIED]: 2
|
|
561
|
+
Value[BLEND_ADD_COLORS]: 3
|
|
562
|
+
Value[BLEND_SUBTRACT_COLORS]: 4
|
|
563
|
+
Value[BLEND_CUSTOM]: 5
|
|
564
|
+
Enum 18: Gesture (11 values)
|
|
565
|
+
Name: Gesture
|
|
566
|
+
Description:
|
|
567
|
+
Value[GESTURE_NONE]: 0
|
|
568
|
+
Value[GESTURE_TAP]: 1
|
|
569
|
+
Value[GESTURE_DOUBLETAP]: 2
|
|
570
|
+
Value[GESTURE_HOLD]: 4
|
|
571
|
+
Value[GESTURE_DRAG]: 8
|
|
572
|
+
Value[GESTURE_SWIPE_RIGHT]: 16
|
|
573
|
+
Value[GESTURE_SWIPE_LEFT]: 32
|
|
574
|
+
Value[GESTURE_SWIPE_UP]: 64
|
|
575
|
+
Value[GESTURE_SWIPE_DOWN]: 128
|
|
576
|
+
Value[GESTURE_PINCH_IN]: 256
|
|
577
|
+
Value[GESTURE_PINCH_OUT]: 512
|
|
578
|
+
Enum 19: CameraMode (5 values)
|
|
579
|
+
Name: CameraMode
|
|
580
|
+
Description:
|
|
581
|
+
Value[CAMERA_CUSTOM]: 0
|
|
582
|
+
Value[CAMERA_FREE]: 1
|
|
583
|
+
Value[CAMERA_ORBITAL]: 2
|
|
584
|
+
Value[CAMERA_FIRST_PERSON]: 3
|
|
585
|
+
Value[CAMERA_THIRD_PERSON]: 4
|
|
586
|
+
Enum 20: CameraProjection (2 values)
|
|
587
|
+
Name: CameraProjection
|
|
588
|
+
Description:
|
|
589
|
+
Value[CAMERA_PERSPECTIVE]: 0
|
|
590
|
+
Value[CAMERA_ORTHOGRAPHIC]: 1
|
|
591
|
+
Enum 21: NPatchLayout (3 values)
|
|
592
|
+
Name: NPatchLayout
|
|
593
|
+
Description:
|
|
594
|
+
Value[NPATCH_NINE_PATCH]: 0
|
|
595
|
+
Value[NPATCH_THREE_PATCH_VERTICAL]: 1
|
|
596
|
+
Value[NPATCH_THREE_PATCH_HORIZONTAL]: 2
|
|
597
|
+
|
|
598
|
+
Functions found: 470
|
|
599
|
+
|
|
600
|
+
Function 001: InitWindow() (3 input parameters)
|
|
601
|
+
Name: InitWindow
|
|
602
|
+
Return type: void
|
|
603
|
+
Description: Initialize window and OpenGL context
|
|
604
|
+
Param[1]: width (type: int)
|
|
605
|
+
Param[2]: height (type: int)
|
|
606
|
+
Param[3]: title (type: const char *)
|
|
607
|
+
Function 002: WindowShouldClose() (0 input parameters)
|
|
608
|
+
Name: WindowShouldClose
|
|
609
|
+
Return type: bool
|
|
610
|
+
Description: Check if KEY_ESCAPE pressed or Close icon pressed
|
|
611
|
+
No input parameters
|
|
612
|
+
Function 003: CloseWindow() (0 input parameters)
|
|
613
|
+
Name: CloseWindow
|
|
614
|
+
Return type: void
|
|
615
|
+
Description: Close window and unload OpenGL context
|
|
616
|
+
No input parameters
|
|
617
|
+
Function 004: IsWindowReady() (0 input parameters)
|
|
618
|
+
Name: IsWindowReady
|
|
619
|
+
Return type: bool
|
|
620
|
+
Description: Check if window has been initialized successfully
|
|
621
|
+
No input parameters
|
|
622
|
+
Function 005: IsWindowFullscreen() (0 input parameters)
|
|
623
|
+
Name: IsWindowFullscreen
|
|
624
|
+
Return type: bool
|
|
625
|
+
Description: Check if window is currently fullscreen
|
|
626
|
+
No input parameters
|
|
627
|
+
Function 006: IsWindowHidden() (0 input parameters)
|
|
628
|
+
Name: IsWindowHidden
|
|
629
|
+
Return type: bool
|
|
630
|
+
Description: Check if window is currently hidden (only PLATFORM_DESKTOP)
|
|
631
|
+
No input parameters
|
|
632
|
+
Function 007: IsWindowMinimized() (0 input parameters)
|
|
633
|
+
Name: IsWindowMinimized
|
|
634
|
+
Return type: bool
|
|
635
|
+
Description: Check if window is currently minimized (only PLATFORM_DESKTOP)
|
|
636
|
+
No input parameters
|
|
637
|
+
Function 008: IsWindowMaximized() (0 input parameters)
|
|
638
|
+
Name: IsWindowMaximized
|
|
639
|
+
Return type: bool
|
|
640
|
+
Description: Check if window is currently maximized (only PLATFORM_DESKTOP)
|
|
641
|
+
No input parameters
|
|
642
|
+
Function 009: IsWindowFocused() (0 input parameters)
|
|
643
|
+
Name: IsWindowFocused
|
|
644
|
+
Return type: bool
|
|
645
|
+
Description: Check if window is currently focused (only PLATFORM_DESKTOP)
|
|
646
|
+
No input parameters
|
|
647
|
+
Function 010: IsWindowResized() (0 input parameters)
|
|
648
|
+
Name: IsWindowResized
|
|
649
|
+
Return type: bool
|
|
650
|
+
Description: Check if window has been resized last frame
|
|
651
|
+
No input parameters
|
|
652
|
+
Function 011: IsWindowState() (1 input parameters)
|
|
653
|
+
Name: IsWindowState
|
|
654
|
+
Return type: bool
|
|
655
|
+
Description: Check if one specific window flag is enabled
|
|
656
|
+
Param[1]: flag (type: unsigned int)
|
|
657
|
+
Function 012: SetWindowState() (1 input parameters)
|
|
658
|
+
Name: SetWindowState
|
|
659
|
+
Return type: void
|
|
660
|
+
Description: Set window configuration state using flags
|
|
661
|
+
Param[1]: flags (type: unsigned int)
|
|
662
|
+
Function 013: ClearWindowState() (1 input parameters)
|
|
663
|
+
Name: ClearWindowState
|
|
664
|
+
Return type: void
|
|
665
|
+
Description: Clear window configuration state flags
|
|
666
|
+
Param[1]: flags (type: unsigned int)
|
|
667
|
+
Function 014: ToggleFullscreen() (0 input parameters)
|
|
668
|
+
Name: ToggleFullscreen
|
|
669
|
+
Return type: void
|
|
670
|
+
Description: Toggle window state: fullscreen/windowed (only PLATFORM_DESKTOP)
|
|
671
|
+
No input parameters
|
|
672
|
+
Function 015: MaximizeWindow() (0 input parameters)
|
|
673
|
+
Name: MaximizeWindow
|
|
674
|
+
Return type: void
|
|
675
|
+
Description: Set window state: maximized, if resizable (only PLATFORM_DESKTOP)
|
|
676
|
+
No input parameters
|
|
677
|
+
Function 016: MinimizeWindow() (0 input parameters)
|
|
678
|
+
Name: MinimizeWindow
|
|
679
|
+
Return type: void
|
|
680
|
+
Description: Set window state: minimized, if resizable (only PLATFORM_DESKTOP)
|
|
681
|
+
No input parameters
|
|
682
|
+
Function 017: RestoreWindow() (0 input parameters)
|
|
683
|
+
Name: RestoreWindow
|
|
684
|
+
Return type: void
|
|
685
|
+
Description: Set window state: not minimized/maximized (only PLATFORM_DESKTOP)
|
|
686
|
+
No input parameters
|
|
687
|
+
Function 018: SetWindowIcon() (1 input parameters)
|
|
688
|
+
Name: SetWindowIcon
|
|
689
|
+
Return type: void
|
|
690
|
+
Description: Set icon for window (only PLATFORM_DESKTOP)
|
|
691
|
+
Param[1]: image (type: Image)
|
|
692
|
+
Function 019: SetWindowTitle() (1 input parameters)
|
|
693
|
+
Name: SetWindowTitle
|
|
694
|
+
Return type: void
|
|
695
|
+
Description: Set title for window (only PLATFORM_DESKTOP)
|
|
696
|
+
Param[1]: title (type: const char *)
|
|
697
|
+
Function 020: SetWindowPosition() (2 input parameters)
|
|
698
|
+
Name: SetWindowPosition
|
|
699
|
+
Return type: void
|
|
700
|
+
Description: Set window position on screen (only PLATFORM_DESKTOP)
|
|
701
|
+
Param[1]: x (type: int)
|
|
702
|
+
Param[2]: y (type: int)
|
|
703
|
+
Function 021: SetWindowMonitor() (1 input parameters)
|
|
704
|
+
Name: SetWindowMonitor
|
|
705
|
+
Return type: void
|
|
706
|
+
Description: Set monitor for the current window (fullscreen mode)
|
|
707
|
+
Param[1]: monitor (type: int)
|
|
708
|
+
Function 022: SetWindowMinSize() (2 input parameters)
|
|
709
|
+
Name: SetWindowMinSize
|
|
710
|
+
Return type: void
|
|
711
|
+
Description: Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE)
|
|
712
|
+
Param[1]: width (type: int)
|
|
713
|
+
Param[2]: height (type: int)
|
|
714
|
+
Function 023: SetWindowSize() (2 input parameters)
|
|
715
|
+
Name: SetWindowSize
|
|
716
|
+
Return type: void
|
|
717
|
+
Description: Set window dimensions
|
|
718
|
+
Param[1]: width (type: int)
|
|
719
|
+
Param[2]: height (type: int)
|
|
720
|
+
Function 024: GetWindowHandle() (0 input parameters)
|
|
721
|
+
Name: GetWindowHandle
|
|
722
|
+
Return type: void *
|
|
723
|
+
Description: Get native window handle
|
|
724
|
+
No input parameters
|
|
725
|
+
Function 025: GetScreenWidth() (0 input parameters)
|
|
726
|
+
Name: GetScreenWidth
|
|
727
|
+
Return type: int
|
|
728
|
+
Description: Get current screen width
|
|
729
|
+
No input parameters
|
|
730
|
+
Function 026: GetScreenHeight() (0 input parameters)
|
|
731
|
+
Name: GetScreenHeight
|
|
732
|
+
Return type: int
|
|
733
|
+
Description: Get current screen height
|
|
734
|
+
No input parameters
|
|
735
|
+
Function 027: GetMonitorCount() (0 input parameters)
|
|
736
|
+
Name: GetMonitorCount
|
|
737
|
+
Return type: int
|
|
738
|
+
Description: Get number of connected monitors
|
|
739
|
+
No input parameters
|
|
740
|
+
Function 028: GetCurrentMonitor() (0 input parameters)
|
|
741
|
+
Name: GetCurrentMonitor
|
|
742
|
+
Return type: int
|
|
743
|
+
Description: Get current connected monitor
|
|
744
|
+
No input parameters
|
|
745
|
+
Function 029: GetMonitorPosition() (1 input parameters)
|
|
746
|
+
Name: GetMonitorPosition
|
|
747
|
+
Return type: Vector2
|
|
748
|
+
Description: Get specified monitor position
|
|
749
|
+
Param[1]: monitor (type: int)
|
|
750
|
+
Function 030: GetMonitorWidth() (1 input parameters)
|
|
751
|
+
Name: GetMonitorWidth
|
|
752
|
+
Return type: int
|
|
753
|
+
Description: Get specified monitor width (max available by monitor)
|
|
754
|
+
Param[1]: monitor (type: int)
|
|
755
|
+
Function 031: GetMonitorHeight() (1 input parameters)
|
|
756
|
+
Name: GetMonitorHeight
|
|
757
|
+
Return type: int
|
|
758
|
+
Description: Get specified monitor height (max available by monitor)
|
|
759
|
+
Param[1]: monitor (type: int)
|
|
760
|
+
Function 032: GetMonitorPhysicalWidth() (1 input parameters)
|
|
761
|
+
Name: GetMonitorPhysicalWidth
|
|
762
|
+
Return type: int
|
|
763
|
+
Description: Get specified monitor physical width in millimetres
|
|
764
|
+
Param[1]: monitor (type: int)
|
|
765
|
+
Function 033: GetMonitorPhysicalHeight() (1 input parameters)
|
|
766
|
+
Name: GetMonitorPhysicalHeight
|
|
767
|
+
Return type: int
|
|
768
|
+
Description: Get specified monitor physical height in millimetres
|
|
769
|
+
Param[1]: monitor (type: int)
|
|
770
|
+
Function 034: GetMonitorRefreshRate() (1 input parameters)
|
|
771
|
+
Name: GetMonitorRefreshRate
|
|
772
|
+
Return type: int
|
|
773
|
+
Description: Get specified monitor refresh rate
|
|
774
|
+
Param[1]: monitor (type: int)
|
|
775
|
+
Function 035: GetWindowPosition() (0 input parameters)
|
|
776
|
+
Name: GetWindowPosition
|
|
777
|
+
Return type: Vector2
|
|
778
|
+
Description: Get window position XY on monitor
|
|
779
|
+
No input parameters
|
|
780
|
+
Function 036: GetWindowScaleDPI() (0 input parameters)
|
|
781
|
+
Name: GetWindowScaleDPI
|
|
782
|
+
Return type: Vector2
|
|
783
|
+
Description: Get window scale DPI factor
|
|
784
|
+
No input parameters
|
|
785
|
+
Function 037: GetMonitorName() (1 input parameters)
|
|
786
|
+
Name: GetMonitorName
|
|
787
|
+
Return type: const char *
|
|
788
|
+
Description: Get the human-readable, UTF-8 encoded name of the primary monitor
|
|
789
|
+
Param[1]: monitor (type: int)
|
|
790
|
+
Function 038: SetClipboardText() (1 input parameters)
|
|
791
|
+
Name: SetClipboardText
|
|
792
|
+
Return type: void
|
|
793
|
+
Description: Set clipboard text content
|
|
794
|
+
Param[1]: text (type: const char *)
|
|
795
|
+
Function 039: GetClipboardText() (0 input parameters)
|
|
796
|
+
Name: GetClipboardText
|
|
797
|
+
Return type: const char *
|
|
798
|
+
Description: Get clipboard text content
|
|
799
|
+
No input parameters
|
|
800
|
+
Function 040: ShowCursor() (0 input parameters)
|
|
801
|
+
Name: ShowCursor
|
|
802
|
+
Return type: void
|
|
803
|
+
Description: Shows cursor
|
|
804
|
+
No input parameters
|
|
805
|
+
Function 041: HideCursor() (0 input parameters)
|
|
806
|
+
Name: HideCursor
|
|
807
|
+
Return type: void
|
|
808
|
+
Description: Hides cursor
|
|
809
|
+
No input parameters
|
|
810
|
+
Function 042: IsCursorHidden() (0 input parameters)
|
|
811
|
+
Name: IsCursorHidden
|
|
812
|
+
Return type: bool
|
|
813
|
+
Description: Check if cursor is not visible
|
|
814
|
+
No input parameters
|
|
815
|
+
Function 043: EnableCursor() (0 input parameters)
|
|
816
|
+
Name: EnableCursor
|
|
817
|
+
Return type: void
|
|
818
|
+
Description: Enables cursor (unlock cursor)
|
|
819
|
+
No input parameters
|
|
820
|
+
Function 044: DisableCursor() (0 input parameters)
|
|
821
|
+
Name: DisableCursor
|
|
822
|
+
Return type: void
|
|
823
|
+
Description: Disables cursor (lock cursor)
|
|
824
|
+
No input parameters
|
|
825
|
+
Function 045: IsCursorOnScreen() (0 input parameters)
|
|
826
|
+
Name: IsCursorOnScreen
|
|
827
|
+
Return type: bool
|
|
828
|
+
Description: Check if cursor is on the screen
|
|
829
|
+
No input parameters
|
|
830
|
+
Function 046: ClearBackground() (1 input parameters)
|
|
831
|
+
Name: ClearBackground
|
|
832
|
+
Return type: void
|
|
833
|
+
Description: Set background color (framebuffer clear color)
|
|
834
|
+
Param[1]: color (type: Color)
|
|
835
|
+
Function 047: BeginDrawing() (0 input parameters)
|
|
836
|
+
Name: BeginDrawing
|
|
837
|
+
Return type: void
|
|
838
|
+
Description: Setup canvas (framebuffer) to start drawing
|
|
839
|
+
No input parameters
|
|
840
|
+
Function 048: EndDrawing() (0 input parameters)
|
|
841
|
+
Name: EndDrawing
|
|
842
|
+
Return type: void
|
|
843
|
+
Description: End canvas drawing and swap buffers (double buffering)
|
|
844
|
+
No input parameters
|
|
845
|
+
Function 049: BeginMode2D() (1 input parameters)
|
|
846
|
+
Name: BeginMode2D
|
|
847
|
+
Return type: void
|
|
848
|
+
Description: Begin 2D mode with custom camera (2D)
|
|
849
|
+
Param[1]: camera (type: Camera2D)
|
|
850
|
+
Function 050: EndMode2D() (0 input parameters)
|
|
851
|
+
Name: EndMode2D
|
|
852
|
+
Return type: void
|
|
853
|
+
Description: Ends 2D mode with custom camera
|
|
854
|
+
No input parameters
|
|
855
|
+
Function 051: BeginMode3D() (1 input parameters)
|
|
856
|
+
Name: BeginMode3D
|
|
857
|
+
Return type: void
|
|
858
|
+
Description: Begin 3D mode with custom camera (3D)
|
|
859
|
+
Param[1]: camera (type: Camera3D)
|
|
860
|
+
Function 052: EndMode3D() (0 input parameters)
|
|
861
|
+
Name: EndMode3D
|
|
862
|
+
Return type: void
|
|
863
|
+
Description: Ends 3D mode and returns to default 2D orthographic mode
|
|
864
|
+
No input parameters
|
|
865
|
+
Function 053: BeginTextureMode() (1 input parameters)
|
|
866
|
+
Name: BeginTextureMode
|
|
867
|
+
Return type: void
|
|
868
|
+
Description: Begin drawing to render texture
|
|
869
|
+
Param[1]: target (type: RenderTexture2D)
|
|
870
|
+
Function 054: EndTextureMode() (0 input parameters)
|
|
871
|
+
Name: EndTextureMode
|
|
872
|
+
Return type: void
|
|
873
|
+
Description: Ends drawing to render texture
|
|
874
|
+
No input parameters
|
|
875
|
+
Function 055: BeginShaderMode() (1 input parameters)
|
|
876
|
+
Name: BeginShaderMode
|
|
877
|
+
Return type: void
|
|
878
|
+
Description: Begin custom shader drawing
|
|
879
|
+
Param[1]: shader (type: Shader)
|
|
880
|
+
Function 056: EndShaderMode() (0 input parameters)
|
|
881
|
+
Name: EndShaderMode
|
|
882
|
+
Return type: void
|
|
883
|
+
Description: End custom shader drawing (use default shader)
|
|
884
|
+
No input parameters
|
|
885
|
+
Function 057: BeginBlendMode() (1 input parameters)
|
|
886
|
+
Name: BeginBlendMode
|
|
887
|
+
Return type: void
|
|
888
|
+
Description: Begin blending mode (alpha, additive, multiplied, subtract, custom)
|
|
889
|
+
Param[1]: mode (type: int)
|
|
890
|
+
Function 058: EndBlendMode() (0 input parameters)
|
|
891
|
+
Name: EndBlendMode
|
|
892
|
+
Return type: void
|
|
893
|
+
Description: End blending mode (reset to default: alpha blending)
|
|
894
|
+
No input parameters
|
|
895
|
+
Function 059: BeginScissorMode() (4 input parameters)
|
|
896
|
+
Name: BeginScissorMode
|
|
897
|
+
Return type: void
|
|
898
|
+
Description: Begin scissor mode (define screen area for following drawing)
|
|
899
|
+
Param[1]: x (type: int)
|
|
900
|
+
Param[2]: y (type: int)
|
|
901
|
+
Param[3]: width (type: int)
|
|
902
|
+
Param[4]: height (type: int)
|
|
903
|
+
Function 060: EndScissorMode() (0 input parameters)
|
|
904
|
+
Name: EndScissorMode
|
|
905
|
+
Return type: void
|
|
906
|
+
Description: End scissor mode
|
|
907
|
+
No input parameters
|
|
908
|
+
Function 061: BeginVrStereoMode() (1 input parameters)
|
|
909
|
+
Name: BeginVrStereoMode
|
|
910
|
+
Return type: void
|
|
911
|
+
Description: Begin stereo rendering (requires VR simulator)
|
|
912
|
+
Param[1]: config (type: VrStereoConfig)
|
|
913
|
+
Function 062: EndVrStereoMode() (0 input parameters)
|
|
914
|
+
Name: EndVrStereoMode
|
|
915
|
+
Return type: void
|
|
916
|
+
Description: End stereo rendering (requires VR simulator)
|
|
917
|
+
No input parameters
|
|
918
|
+
Function 063: LoadVrStereoConfig() (1 input parameters)
|
|
919
|
+
Name: LoadVrStereoConfig
|
|
920
|
+
Return type: VrStereoConfig
|
|
921
|
+
Description: Load VR stereo config for VR simulator device parameters
|
|
922
|
+
Param[1]: device (type: VrDeviceInfo)
|
|
923
|
+
Function 064: UnloadVrStereoConfig() (1 input parameters)
|
|
924
|
+
Name: UnloadVrStereoConfig
|
|
925
|
+
Return type: void
|
|
926
|
+
Description: Unload VR stereo config
|
|
927
|
+
Param[1]: config (type: VrStereoConfig)
|
|
928
|
+
Function 065: LoadShader() (2 input parameters)
|
|
929
|
+
Name: LoadShader
|
|
930
|
+
Return type: Shader
|
|
931
|
+
Description: Load shader from files and bind default locations
|
|
932
|
+
Param[1]: vsFileName (type: const char *)
|
|
933
|
+
Param[2]: fsFileName (type: const char *)
|
|
934
|
+
Function 066: LoadShaderFromMemory() (2 input parameters)
|
|
935
|
+
Name: LoadShaderFromMemory
|
|
936
|
+
Return type: Shader
|
|
937
|
+
Description: Load shader from code strings and bind default locations
|
|
938
|
+
Param[1]: vsCode (type: const char *)
|
|
939
|
+
Param[2]: fsCode (type: const char *)
|
|
940
|
+
Function 067: GetShaderLocation() (2 input parameters)
|
|
941
|
+
Name: GetShaderLocation
|
|
942
|
+
Return type: int
|
|
943
|
+
Description: Get shader uniform location
|
|
944
|
+
Param[1]: shader (type: Shader)
|
|
945
|
+
Param[2]: uniformName (type: const char *)
|
|
946
|
+
Function 068: GetShaderLocationAttrib() (2 input parameters)
|
|
947
|
+
Name: GetShaderLocationAttrib
|
|
948
|
+
Return type: int
|
|
949
|
+
Description: Get shader attribute location
|
|
950
|
+
Param[1]: shader (type: Shader)
|
|
951
|
+
Param[2]: attribName (type: const char *)
|
|
952
|
+
Function 069: SetShaderValue() (4 input parameters)
|
|
953
|
+
Name: SetShaderValue
|
|
954
|
+
Return type: void
|
|
955
|
+
Description: Set shader uniform value
|
|
956
|
+
Param[1]: shader (type: Shader)
|
|
957
|
+
Param[2]: locIndex (type: int)
|
|
958
|
+
Param[3]: value (type: const void *)
|
|
959
|
+
Param[4]: uniformType (type: int)
|
|
960
|
+
Function 070: SetShaderValueV() (5 input parameters)
|
|
961
|
+
Name: SetShaderValueV
|
|
962
|
+
Return type: void
|
|
963
|
+
Description: Set shader uniform value vector
|
|
964
|
+
Param[1]: shader (type: Shader)
|
|
965
|
+
Param[2]: locIndex (type: int)
|
|
966
|
+
Param[3]: value (type: const void *)
|
|
967
|
+
Param[4]: uniformType (type: int)
|
|
968
|
+
Param[5]: count (type: int)
|
|
969
|
+
Function 071: SetShaderValueMatrix() (3 input parameters)
|
|
970
|
+
Name: SetShaderValueMatrix
|
|
971
|
+
Return type: void
|
|
972
|
+
Description: Set shader uniform value (matrix 4x4)
|
|
973
|
+
Param[1]: shader (type: Shader)
|
|
974
|
+
Param[2]: locIndex (type: int)
|
|
975
|
+
Param[3]: mat (type: Matrix)
|
|
976
|
+
Function 072: SetShaderValueTexture() (3 input parameters)
|
|
977
|
+
Name: SetShaderValueTexture
|
|
978
|
+
Return type: void
|
|
979
|
+
Description: Set shader uniform value for texture (sampler2d)
|
|
980
|
+
Param[1]: shader (type: Shader)
|
|
981
|
+
Param[2]: locIndex (type: int)
|
|
982
|
+
Param[3]: texture (type: Texture2D)
|
|
983
|
+
Function 073: UnloadShader() (1 input parameters)
|
|
984
|
+
Name: UnloadShader
|
|
985
|
+
Return type: void
|
|
986
|
+
Description: Unload shader from GPU memory (VRAM)
|
|
987
|
+
Param[1]: shader (type: Shader)
|
|
988
|
+
Function 074: GetMouseRay() (2 input parameters)
|
|
989
|
+
Name: GetMouseRay
|
|
990
|
+
Return type: Ray
|
|
991
|
+
Description: Get a ray trace from mouse position
|
|
992
|
+
Param[1]: mousePosition (type: Vector2)
|
|
993
|
+
Param[2]: camera (type: Camera)
|
|
994
|
+
Function 075: GetCameraMatrix() (1 input parameters)
|
|
995
|
+
Name: GetCameraMatrix
|
|
996
|
+
Return type: Matrix
|
|
997
|
+
Description: Get camera transform matrix (view matrix)
|
|
998
|
+
Param[1]: camera (type: Camera)
|
|
999
|
+
Function 076: GetCameraMatrix2D() (1 input parameters)
|
|
1000
|
+
Name: GetCameraMatrix2D
|
|
1001
|
+
Return type: Matrix
|
|
1002
|
+
Description: Get camera 2d transform matrix
|
|
1003
|
+
Param[1]: camera (type: Camera2D)
|
|
1004
|
+
Function 077: GetWorldToScreen() (2 input parameters)
|
|
1005
|
+
Name: GetWorldToScreen
|
|
1006
|
+
Return type: Vector2
|
|
1007
|
+
Description: Get the screen space position for a 3d world space position
|
|
1008
|
+
Param[1]: position (type: Vector3)
|
|
1009
|
+
Param[2]: camera (type: Camera)
|
|
1010
|
+
Function 078: GetWorldToScreenEx() (4 input parameters)
|
|
1011
|
+
Name: GetWorldToScreenEx
|
|
1012
|
+
Return type: Vector2
|
|
1013
|
+
Description: Get size position for a 3d world space position
|
|
1014
|
+
Param[1]: position (type: Vector3)
|
|
1015
|
+
Param[2]: camera (type: Camera)
|
|
1016
|
+
Param[3]: width (type: int)
|
|
1017
|
+
Param[4]: height (type: int)
|
|
1018
|
+
Function 079: GetWorldToScreen2D() (2 input parameters)
|
|
1019
|
+
Name: GetWorldToScreen2D
|
|
1020
|
+
Return type: Vector2
|
|
1021
|
+
Description: Get the screen space position for a 2d camera world space position
|
|
1022
|
+
Param[1]: position (type: Vector2)
|
|
1023
|
+
Param[2]: camera (type: Camera2D)
|
|
1024
|
+
Function 080: GetScreenToWorld2D() (2 input parameters)
|
|
1025
|
+
Name: GetScreenToWorld2D
|
|
1026
|
+
Return type: Vector2
|
|
1027
|
+
Description: Get the world space position for a 2d camera screen space position
|
|
1028
|
+
Param[1]: position (type: Vector2)
|
|
1029
|
+
Param[2]: camera (type: Camera2D)
|
|
1030
|
+
Function 081: SetTargetFPS() (1 input parameters)
|
|
1031
|
+
Name: SetTargetFPS
|
|
1032
|
+
Return type: void
|
|
1033
|
+
Description: Set target FPS (maximum)
|
|
1034
|
+
Param[1]: fps (type: int)
|
|
1035
|
+
Function 082: GetFPS() (0 input parameters)
|
|
1036
|
+
Name: GetFPS
|
|
1037
|
+
Return type: int
|
|
1038
|
+
Description: Get current FPS
|
|
1039
|
+
No input parameters
|
|
1040
|
+
Function 083: GetFrameTime() (0 input parameters)
|
|
1041
|
+
Name: GetFrameTime
|
|
1042
|
+
Return type: float
|
|
1043
|
+
Description: Get time in seconds for last frame drawn (delta time)
|
|
1044
|
+
No input parameters
|
|
1045
|
+
Function 084: GetTime() (0 input parameters)
|
|
1046
|
+
Name: GetTime
|
|
1047
|
+
Return type: double
|
|
1048
|
+
Description: Get elapsed time in seconds since InitWindow()
|
|
1049
|
+
No input parameters
|
|
1050
|
+
Function 085: GetRandomValue() (2 input parameters)
|
|
1051
|
+
Name: GetRandomValue
|
|
1052
|
+
Return type: int
|
|
1053
|
+
Description: Get a random value between min and max (both included)
|
|
1054
|
+
Param[1]: min (type: int)
|
|
1055
|
+
Param[2]: max (type: int)
|
|
1056
|
+
Function 086: TakeScreenshot() (1 input parameters)
|
|
1057
|
+
Name: TakeScreenshot
|
|
1058
|
+
Return type: void
|
|
1059
|
+
Description: Takes a screenshot of current screen (filename extension defines format)
|
|
1060
|
+
Param[1]: fileName (type: const char *)
|
|
1061
|
+
Function 087: SetConfigFlags() (1 input parameters)
|
|
1062
|
+
Name: SetConfigFlags
|
|
1063
|
+
Return type: void
|
|
1064
|
+
Description: Setup init configuration flags (view FLAGS)
|
|
1065
|
+
Param[1]: flags (type: unsigned int)
|
|
1066
|
+
Function 088: TraceLog() (3 input parameters)
|
|
1067
|
+
Name: TraceLog
|
|
1068
|
+
Return type: void
|
|
1069
|
+
Description: Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR...)
|
|
1070
|
+
Param[1]: logLevel (type: int)
|
|
1071
|
+
Param[2]: text (type: const char *)
|
|
1072
|
+
Param[3]: (type: )
|
|
1073
|
+
Function 089: SetTraceLogLevel() (1 input parameters)
|
|
1074
|
+
Name: SetTraceLogLevel
|
|
1075
|
+
Return type: void
|
|
1076
|
+
Description: Set the current threshold (minimum) log level
|
|
1077
|
+
Param[1]: logLevel (type: int)
|
|
1078
|
+
Function 090: MemAlloc() (1 input parameters)
|
|
1079
|
+
Name: MemAlloc
|
|
1080
|
+
Return type: void *
|
|
1081
|
+
Description: Internal memory allocator
|
|
1082
|
+
Param[1]: size (type: int)
|
|
1083
|
+
Function 091: MemRealloc() (2 input parameters)
|
|
1084
|
+
Name: MemRealloc
|
|
1085
|
+
Return type: void *
|
|
1086
|
+
Description: Internal memory reallocator
|
|
1087
|
+
Param[1]: ptr (type: void *)
|
|
1088
|
+
Param[2]: size (type: int)
|
|
1089
|
+
Function 092: MemFree() (1 input parameters)
|
|
1090
|
+
Name: MemFree
|
|
1091
|
+
Return type: void
|
|
1092
|
+
Description: Internal memory free
|
|
1093
|
+
Param[1]: ptr (type: void *)
|
|
1094
|
+
Function 093: SetTraceLogCallback() (1 input parameters)
|
|
1095
|
+
Name: SetTraceLogCallback
|
|
1096
|
+
Return type: void
|
|
1097
|
+
Description: Set custom trace log
|
|
1098
|
+
Param[1]: callback (type: TraceLogCallback)
|
|
1099
|
+
Function 094: SetLoadFileDataCallback() (1 input parameters)
|
|
1100
|
+
Name: SetLoadFileDataCallback
|
|
1101
|
+
Return type: void
|
|
1102
|
+
Description: Set custom file binary data loader
|
|
1103
|
+
Param[1]: callback (type: LoadFileDataCallback)
|
|
1104
|
+
Function 095: SetSaveFileDataCallback() (1 input parameters)
|
|
1105
|
+
Name: SetSaveFileDataCallback
|
|
1106
|
+
Return type: void
|
|
1107
|
+
Description: Set custom file binary data saver
|
|
1108
|
+
Param[1]: callback (type: SaveFileDataCallback)
|
|
1109
|
+
Function 096: SetLoadFileTextCallback() (1 input parameters)
|
|
1110
|
+
Name: SetLoadFileTextCallback
|
|
1111
|
+
Return type: void
|
|
1112
|
+
Description: Set custom file text data loader
|
|
1113
|
+
Param[1]: callback (type: LoadFileTextCallback)
|
|
1114
|
+
Function 097: SetSaveFileTextCallback() (1 input parameters)
|
|
1115
|
+
Name: SetSaveFileTextCallback
|
|
1116
|
+
Return type: void
|
|
1117
|
+
Description: Set custom file text data saver
|
|
1118
|
+
Param[1]: callback (type: SaveFileTextCallback)
|
|
1119
|
+
Function 098: LoadFileData() (2 input parameters)
|
|
1120
|
+
Name: LoadFileData
|
|
1121
|
+
Return type: unsigned char *
|
|
1122
|
+
Description: Load file data as byte array (read)
|
|
1123
|
+
Param[1]: fileName (type: const char *)
|
|
1124
|
+
Param[2]: bytesRead (type: unsigned int *)
|
|
1125
|
+
Function 099: UnloadFileData() (1 input parameters)
|
|
1126
|
+
Name: UnloadFileData
|
|
1127
|
+
Return type: void
|
|
1128
|
+
Description: Unload file data allocated by LoadFileData()
|
|
1129
|
+
Param[1]: data (type: unsigned char *)
|
|
1130
|
+
Function 100: SaveFileData() (3 input parameters)
|
|
1131
|
+
Name: SaveFileData
|
|
1132
|
+
Return type: bool
|
|
1133
|
+
Description: Save data to file from byte array (write), returns true on success
|
|
1134
|
+
Param[1]: fileName (type: const char *)
|
|
1135
|
+
Param[2]: data (type: void *)
|
|
1136
|
+
Param[3]: bytesToWrite (type: unsigned int)
|
|
1137
|
+
Function 101: LoadFileText() (1 input parameters)
|
|
1138
|
+
Name: LoadFileText
|
|
1139
|
+
Return type: char *
|
|
1140
|
+
Description: Load text data from file (read), returns a '\0' terminated string
|
|
1141
|
+
Param[1]: fileName (type: const char *)
|
|
1142
|
+
Function 102: UnloadFileText() (1 input parameters)
|
|
1143
|
+
Name: UnloadFileText
|
|
1144
|
+
Return type: void
|
|
1145
|
+
Description: Unload file text data allocated by LoadFileText()
|
|
1146
|
+
Param[1]: text (type: char *)
|
|
1147
|
+
Function 103: SaveFileText() (2 input parameters)
|
|
1148
|
+
Name: SaveFileText
|
|
1149
|
+
Return type: bool
|
|
1150
|
+
Description: Save text data to file (write), string must be '\0' terminated, returns true on success
|
|
1151
|
+
Param[1]: fileName (type: const char *)
|
|
1152
|
+
Param[2]: text (type: char *)
|
|
1153
|
+
Function 104: FileExists() (1 input parameters)
|
|
1154
|
+
Name: FileExists
|
|
1155
|
+
Return type: bool
|
|
1156
|
+
Description: Check if file exists
|
|
1157
|
+
Param[1]: fileName (type: const char *)
|
|
1158
|
+
Function 105: DirectoryExists() (1 input parameters)
|
|
1159
|
+
Name: DirectoryExists
|
|
1160
|
+
Return type: bool
|
|
1161
|
+
Description: Check if a directory path exists
|
|
1162
|
+
Param[1]: dirPath (type: const char *)
|
|
1163
|
+
Function 106: IsFileExtension() (2 input parameters)
|
|
1164
|
+
Name: IsFileExtension
|
|
1165
|
+
Return type: bool
|
|
1166
|
+
Description: Check file extension (including point: .png, .wav)
|
|
1167
|
+
Param[1]: fileName (type: const char *)
|
|
1168
|
+
Param[2]: ext (type: const char *)
|
|
1169
|
+
Function 107: GetFileExtension() (1 input parameters)
|
|
1170
|
+
Name: GetFileExtension
|
|
1171
|
+
Return type: const char *
|
|
1172
|
+
Description: Get pointer to extension for a filename string (includes dot: '.png')
|
|
1173
|
+
Param[1]: fileName (type: const char *)
|
|
1174
|
+
Function 108: GetFileName() (1 input parameters)
|
|
1175
|
+
Name: GetFileName
|
|
1176
|
+
Return type: const char *
|
|
1177
|
+
Description: Get pointer to filename for a path string
|
|
1178
|
+
Param[1]: filePath (type: const char *)
|
|
1179
|
+
Function 109: GetFileNameWithoutExt() (1 input parameters)
|
|
1180
|
+
Name: GetFileNameWithoutExt
|
|
1181
|
+
Return type: const char *
|
|
1182
|
+
Description: Get filename string without extension (uses static string)
|
|
1183
|
+
Param[1]: filePath (type: const char *)
|
|
1184
|
+
Function 110: GetDirectoryPath() (1 input parameters)
|
|
1185
|
+
Name: GetDirectoryPath
|
|
1186
|
+
Return type: const char *
|
|
1187
|
+
Description: Get full path for a given fileName with path (uses static string)
|
|
1188
|
+
Param[1]: filePath (type: const char *)
|
|
1189
|
+
Function 111: GetPrevDirectoryPath() (1 input parameters)
|
|
1190
|
+
Name: GetPrevDirectoryPath
|
|
1191
|
+
Return type: const char *
|
|
1192
|
+
Description: Get previous directory path for a given path (uses static string)
|
|
1193
|
+
Param[1]: dirPath (type: const char *)
|
|
1194
|
+
Function 112: GetWorkingDirectory() (0 input parameters)
|
|
1195
|
+
Name: GetWorkingDirectory
|
|
1196
|
+
Return type: const char *
|
|
1197
|
+
Description: Get current working directory (uses static string)
|
|
1198
|
+
No input parameters
|
|
1199
|
+
Function 113: GetDirectoryFiles() (2 input parameters)
|
|
1200
|
+
Name: GetDirectoryFiles
|
|
1201
|
+
Return type: char **
|
|
1202
|
+
Description: Get filenames in a directory path (memory should be freed)
|
|
1203
|
+
Param[1]: dirPath (type: const char *)
|
|
1204
|
+
Param[2]: count (type: int *)
|
|
1205
|
+
Function 114: ClearDirectoryFiles() (0 input parameters)
|
|
1206
|
+
Name: ClearDirectoryFiles
|
|
1207
|
+
Return type: void
|
|
1208
|
+
Description: Clear directory files paths buffers (free memory)
|
|
1209
|
+
No input parameters
|
|
1210
|
+
Function 115: ChangeDirectory() (1 input parameters)
|
|
1211
|
+
Name: ChangeDirectory
|
|
1212
|
+
Return type: bool
|
|
1213
|
+
Description: Change working directory, return true on success
|
|
1214
|
+
Param[1]: dir (type: const char *)
|
|
1215
|
+
Function 116: IsFileDropped() (0 input parameters)
|
|
1216
|
+
Name: IsFileDropped
|
|
1217
|
+
Return type: bool
|
|
1218
|
+
Description: Check if a file has been dropped into window
|
|
1219
|
+
No input parameters
|
|
1220
|
+
Function 117: GetDroppedFiles() (1 input parameters)
|
|
1221
|
+
Name: GetDroppedFiles
|
|
1222
|
+
Return type: char **
|
|
1223
|
+
Description: Get dropped files names (memory should be freed)
|
|
1224
|
+
Param[1]: count (type: int *)
|
|
1225
|
+
Function 118: ClearDroppedFiles() (0 input parameters)
|
|
1226
|
+
Name: ClearDroppedFiles
|
|
1227
|
+
Return type: void
|
|
1228
|
+
Description: Clear dropped files paths buffer (free memory)
|
|
1229
|
+
No input parameters
|
|
1230
|
+
Function 119: GetFileModTime() (1 input parameters)
|
|
1231
|
+
Name: GetFileModTime
|
|
1232
|
+
Return type: long
|
|
1233
|
+
Description: Get file modification time (last write time)
|
|
1234
|
+
Param[1]: fileName (type: const char *)
|
|
1235
|
+
Function 120: CompressData() (3 input parameters)
|
|
1236
|
+
Name: CompressData
|
|
1237
|
+
Return type: unsigned char *
|
|
1238
|
+
Description: Compress data (DEFLATE algorithm)
|
|
1239
|
+
Param[1]: data (type: unsigned char *)
|
|
1240
|
+
Param[2]: dataLength (type: int)
|
|
1241
|
+
Param[3]: compDataLength (type: int *)
|
|
1242
|
+
Function 121: DecompressData() (3 input parameters)
|
|
1243
|
+
Name: DecompressData
|
|
1244
|
+
Return type: unsigned char *
|
|
1245
|
+
Description: Decompress data (DEFLATE algorithm)
|
|
1246
|
+
Param[1]: compData (type: unsigned char *)
|
|
1247
|
+
Param[2]: compDataLength (type: int)
|
|
1248
|
+
Param[3]: dataLength (type: int *)
|
|
1249
|
+
Function 122: SaveStorageValue() (2 input parameters)
|
|
1250
|
+
Name: SaveStorageValue
|
|
1251
|
+
Return type: bool
|
|
1252
|
+
Description: Save integer value to storage file (to defined position), returns true on success
|
|
1253
|
+
Param[1]: position (type: unsigned int)
|
|
1254
|
+
Param[2]: value (type: int)
|
|
1255
|
+
Function 123: LoadStorageValue() (1 input parameters)
|
|
1256
|
+
Name: LoadStorageValue
|
|
1257
|
+
Return type: int
|
|
1258
|
+
Description: Load integer value from storage file (from defined position)
|
|
1259
|
+
Param[1]: position (type: unsigned int)
|
|
1260
|
+
Function 124: OpenURL() (1 input parameters)
|
|
1261
|
+
Name: OpenURL
|
|
1262
|
+
Return type: void
|
|
1263
|
+
Description: Open URL with default system browser (if available)
|
|
1264
|
+
Param[1]: url (type: const char *)
|
|
1265
|
+
Function 125: IsKeyPressed() (1 input parameters)
|
|
1266
|
+
Name: IsKeyPressed
|
|
1267
|
+
Return type: bool
|
|
1268
|
+
Description: Check if a key has been pressed once
|
|
1269
|
+
Param[1]: key (type: int)
|
|
1270
|
+
Function 126: IsKeyDown() (1 input parameters)
|
|
1271
|
+
Name: IsKeyDown
|
|
1272
|
+
Return type: bool
|
|
1273
|
+
Description: Check if a key is being pressed
|
|
1274
|
+
Param[1]: key (type: int)
|
|
1275
|
+
Function 127: IsKeyReleased() (1 input parameters)
|
|
1276
|
+
Name: IsKeyReleased
|
|
1277
|
+
Return type: bool
|
|
1278
|
+
Description: Check if a key has been released once
|
|
1279
|
+
Param[1]: key (type: int)
|
|
1280
|
+
Function 128: IsKeyUp() (1 input parameters)
|
|
1281
|
+
Name: IsKeyUp
|
|
1282
|
+
Return type: bool
|
|
1283
|
+
Description: Check if a key is NOT being pressed
|
|
1284
|
+
Param[1]: key (type: int)
|
|
1285
|
+
Function 129: SetExitKey() (1 input parameters)
|
|
1286
|
+
Name: SetExitKey
|
|
1287
|
+
Return type: void
|
|
1288
|
+
Description: Set a custom key to exit program (default is ESC)
|
|
1289
|
+
Param[1]: key (type: int)
|
|
1290
|
+
Function 130: GetKeyPressed() (0 input parameters)
|
|
1291
|
+
Name: GetKeyPressed
|
|
1292
|
+
Return type: int
|
|
1293
|
+
Description: Get key pressed (keycode), call it multiple times for keys queued
|
|
1294
|
+
No input parameters
|
|
1295
|
+
Function 131: GetCharPressed() (0 input parameters)
|
|
1296
|
+
Name: GetCharPressed
|
|
1297
|
+
Return type: int
|
|
1298
|
+
Description: Get char pressed (unicode), call it multiple times for chars queued
|
|
1299
|
+
No input parameters
|
|
1300
|
+
Function 132: IsGamepadAvailable() (1 input parameters)
|
|
1301
|
+
Name: IsGamepadAvailable
|
|
1302
|
+
Return type: bool
|
|
1303
|
+
Description: Check if a gamepad is available
|
|
1304
|
+
Param[1]: gamepad (type: int)
|
|
1305
|
+
Function 133: IsGamepadName() (2 input parameters)
|
|
1306
|
+
Name: IsGamepadName
|
|
1307
|
+
Return type: bool
|
|
1308
|
+
Description: Check gamepad name (if available)
|
|
1309
|
+
Param[1]: gamepad (type: int)
|
|
1310
|
+
Param[2]: name (type: const char *)
|
|
1311
|
+
Function 134: GetGamepadName() (1 input parameters)
|
|
1312
|
+
Name: GetGamepadName
|
|
1313
|
+
Return type: const char *
|
|
1314
|
+
Description: Get gamepad internal name id
|
|
1315
|
+
Param[1]: gamepad (type: int)
|
|
1316
|
+
Function 135: IsGamepadButtonPressed() (2 input parameters)
|
|
1317
|
+
Name: IsGamepadButtonPressed
|
|
1318
|
+
Return type: bool
|
|
1319
|
+
Description: Check if a gamepad button has been pressed once
|
|
1320
|
+
Param[1]: gamepad (type: int)
|
|
1321
|
+
Param[2]: button (type: int)
|
|
1322
|
+
Function 136: IsGamepadButtonDown() (2 input parameters)
|
|
1323
|
+
Name: IsGamepadButtonDown
|
|
1324
|
+
Return type: bool
|
|
1325
|
+
Description: Check if a gamepad button is being pressed
|
|
1326
|
+
Param[1]: gamepad (type: int)
|
|
1327
|
+
Param[2]: button (type: int)
|
|
1328
|
+
Function 137: IsGamepadButtonReleased() (2 input parameters)
|
|
1329
|
+
Name: IsGamepadButtonReleased
|
|
1330
|
+
Return type: bool
|
|
1331
|
+
Description: Check if a gamepad button has been released once
|
|
1332
|
+
Param[1]: gamepad (type: int)
|
|
1333
|
+
Param[2]: button (type: int)
|
|
1334
|
+
Function 138: IsGamepadButtonUp() (2 input parameters)
|
|
1335
|
+
Name: IsGamepadButtonUp
|
|
1336
|
+
Return type: bool
|
|
1337
|
+
Description: Check if a gamepad button is NOT being pressed
|
|
1338
|
+
Param[1]: gamepad (type: int)
|
|
1339
|
+
Param[2]: button (type: int)
|
|
1340
|
+
Function 139: GetGamepadButtonPressed() (0 input parameters)
|
|
1341
|
+
Name: GetGamepadButtonPressed
|
|
1342
|
+
Return type: int
|
|
1343
|
+
Description: Get the last gamepad button pressed
|
|
1344
|
+
No input parameters
|
|
1345
|
+
Function 140: GetGamepadAxisCount() (1 input parameters)
|
|
1346
|
+
Name: GetGamepadAxisCount
|
|
1347
|
+
Return type: int
|
|
1348
|
+
Description: Get gamepad axis count for a gamepad
|
|
1349
|
+
Param[1]: gamepad (type: int)
|
|
1350
|
+
Function 141: GetGamepadAxisMovement() (2 input parameters)
|
|
1351
|
+
Name: GetGamepadAxisMovement
|
|
1352
|
+
Return type: float
|
|
1353
|
+
Description: Get axis movement value for a gamepad axis
|
|
1354
|
+
Param[1]: gamepad (type: int)
|
|
1355
|
+
Param[2]: axis (type: int)
|
|
1356
|
+
Function 142: SetGamepadMappings() (1 input parameters)
|
|
1357
|
+
Name: SetGamepadMappings
|
|
1358
|
+
Return type: int
|
|
1359
|
+
Description: Set internal gamepad mappings (SDL_GameControllerDB)
|
|
1360
|
+
Param[1]: mappings (type: const char *)
|
|
1361
|
+
Function 143: IsMouseButtonPressed() (1 input parameters)
|
|
1362
|
+
Name: IsMouseButtonPressed
|
|
1363
|
+
Return type: bool
|
|
1364
|
+
Description: Check if a mouse button has been pressed once
|
|
1365
|
+
Param[1]: button (type: int)
|
|
1366
|
+
Function 144: IsMouseButtonDown() (1 input parameters)
|
|
1367
|
+
Name: IsMouseButtonDown
|
|
1368
|
+
Return type: bool
|
|
1369
|
+
Description: Check if a mouse button is being pressed
|
|
1370
|
+
Param[1]: button (type: int)
|
|
1371
|
+
Function 145: IsMouseButtonReleased() (1 input parameters)
|
|
1372
|
+
Name: IsMouseButtonReleased
|
|
1373
|
+
Return type: bool
|
|
1374
|
+
Description: Check if a mouse button has been released once
|
|
1375
|
+
Param[1]: button (type: int)
|
|
1376
|
+
Function 146: IsMouseButtonUp() (1 input parameters)
|
|
1377
|
+
Name: IsMouseButtonUp
|
|
1378
|
+
Return type: bool
|
|
1379
|
+
Description: Check if a mouse button is NOT being pressed
|
|
1380
|
+
Param[1]: button (type: int)
|
|
1381
|
+
Function 147: GetMouseX() (0 input parameters)
|
|
1382
|
+
Name: GetMouseX
|
|
1383
|
+
Return type: int
|
|
1384
|
+
Description: Get mouse position X
|
|
1385
|
+
No input parameters
|
|
1386
|
+
Function 148: GetMouseY() (0 input parameters)
|
|
1387
|
+
Name: GetMouseY
|
|
1388
|
+
Return type: int
|
|
1389
|
+
Description: Get mouse position Y
|
|
1390
|
+
No input parameters
|
|
1391
|
+
Function 149: GetMousePosition() (0 input parameters)
|
|
1392
|
+
Name: GetMousePosition
|
|
1393
|
+
Return type: Vector2
|
|
1394
|
+
Description: Get mouse position XY
|
|
1395
|
+
No input parameters
|
|
1396
|
+
Function 150: SetMousePosition() (2 input parameters)
|
|
1397
|
+
Name: SetMousePosition
|
|
1398
|
+
Return type: void
|
|
1399
|
+
Description: Set mouse position XY
|
|
1400
|
+
Param[1]: x (type: int)
|
|
1401
|
+
Param[2]: y (type: int)
|
|
1402
|
+
Function 151: SetMouseOffset() (2 input parameters)
|
|
1403
|
+
Name: SetMouseOffset
|
|
1404
|
+
Return type: void
|
|
1405
|
+
Description: Set mouse offset
|
|
1406
|
+
Param[1]: offsetX (type: int)
|
|
1407
|
+
Param[2]: offsetY (type: int)
|
|
1408
|
+
Function 152: SetMouseScale() (2 input parameters)
|
|
1409
|
+
Name: SetMouseScale
|
|
1410
|
+
Return type: void
|
|
1411
|
+
Description: Set mouse scaling
|
|
1412
|
+
Param[1]: scaleX (type: float)
|
|
1413
|
+
Param[2]: scaleY (type: float)
|
|
1414
|
+
Function 153: GetMouseWheelMove() (0 input parameters)
|
|
1415
|
+
Name: GetMouseWheelMove
|
|
1416
|
+
Return type: float
|
|
1417
|
+
Description: Get mouse wheel movement Y
|
|
1418
|
+
No input parameters
|
|
1419
|
+
Function 154: SetMouseCursor() (1 input parameters)
|
|
1420
|
+
Name: SetMouseCursor
|
|
1421
|
+
Return type: void
|
|
1422
|
+
Description: Set mouse cursor
|
|
1423
|
+
Param[1]: cursor (type: int)
|
|
1424
|
+
Function 155: GetTouchX() (0 input parameters)
|
|
1425
|
+
Name: GetTouchX
|
|
1426
|
+
Return type: int
|
|
1427
|
+
Description: Get touch position X for touch point 0 (relative to screen size)
|
|
1428
|
+
No input parameters
|
|
1429
|
+
Function 156: GetTouchY() (0 input parameters)
|
|
1430
|
+
Name: GetTouchY
|
|
1431
|
+
Return type: int
|
|
1432
|
+
Description: Get touch position Y for touch point 0 (relative to screen size)
|
|
1433
|
+
No input parameters
|
|
1434
|
+
Function 157: GetTouchPosition() (1 input parameters)
|
|
1435
|
+
Name: GetTouchPosition
|
|
1436
|
+
Return type: Vector2
|
|
1437
|
+
Description: Get touch position XY for a touch point index (relative to screen size)
|
|
1438
|
+
Param[1]: index (type: int)
|
|
1439
|
+
Function 158: SetGesturesEnabled() (1 input parameters)
|
|
1440
|
+
Name: SetGesturesEnabled
|
|
1441
|
+
Return type: void
|
|
1442
|
+
Description: Enable a set of gestures using flags
|
|
1443
|
+
Param[1]: flags (type: unsigned int)
|
|
1444
|
+
Function 159: IsGestureDetected() (1 input parameters)
|
|
1445
|
+
Name: IsGestureDetected
|
|
1446
|
+
Return type: bool
|
|
1447
|
+
Description: Check if a gesture have been detected
|
|
1448
|
+
Param[1]: gesture (type: int)
|
|
1449
|
+
Function 160: GetGestureDetected() (0 input parameters)
|
|
1450
|
+
Name: GetGestureDetected
|
|
1451
|
+
Return type: int
|
|
1452
|
+
Description: Get latest detected gesture
|
|
1453
|
+
No input parameters
|
|
1454
|
+
Function 161: GetTouchPointsCount() (0 input parameters)
|
|
1455
|
+
Name: GetTouchPointsCount
|
|
1456
|
+
Return type: int
|
|
1457
|
+
Description: Get touch points count
|
|
1458
|
+
No input parameters
|
|
1459
|
+
Function 162: GetGestureHoldDuration() (0 input parameters)
|
|
1460
|
+
Name: GetGestureHoldDuration
|
|
1461
|
+
Return type: float
|
|
1462
|
+
Description: Get gesture hold time in milliseconds
|
|
1463
|
+
No input parameters
|
|
1464
|
+
Function 163: GetGestureDragVector() (0 input parameters)
|
|
1465
|
+
Name: GetGestureDragVector
|
|
1466
|
+
Return type: Vector2
|
|
1467
|
+
Description: Get gesture drag vector
|
|
1468
|
+
No input parameters
|
|
1469
|
+
Function 164: GetGestureDragAngle() (0 input parameters)
|
|
1470
|
+
Name: GetGestureDragAngle
|
|
1471
|
+
Return type: float
|
|
1472
|
+
Description: Get gesture drag angle
|
|
1473
|
+
No input parameters
|
|
1474
|
+
Function 165: GetGesturePinchVector() (0 input parameters)
|
|
1475
|
+
Name: GetGesturePinchVector
|
|
1476
|
+
Return type: Vector2
|
|
1477
|
+
Description: Get gesture pinch delta
|
|
1478
|
+
No input parameters
|
|
1479
|
+
Function 166: GetGesturePinchAngle() (0 input parameters)
|
|
1480
|
+
Name: GetGesturePinchAngle
|
|
1481
|
+
Return type: float
|
|
1482
|
+
Description: Get gesture pinch angle
|
|
1483
|
+
No input parameters
|
|
1484
|
+
Function 167: SetCameraMode() (2 input parameters)
|
|
1485
|
+
Name: SetCameraMode
|
|
1486
|
+
Return type: void
|
|
1487
|
+
Description: Set camera mode (multiple camera modes available)
|
|
1488
|
+
Param[1]: camera (type: Camera)
|
|
1489
|
+
Param[2]: mode (type: int)
|
|
1490
|
+
Function 168: UpdateCamera() (1 input parameters)
|
|
1491
|
+
Name: UpdateCamera
|
|
1492
|
+
Return type: void
|
|
1493
|
+
Description: Update camera position for selected mode
|
|
1494
|
+
Param[1]: camera (type: Camera *)
|
|
1495
|
+
Function 169: SetCameraPanControl() (1 input parameters)
|
|
1496
|
+
Name: SetCameraPanControl
|
|
1497
|
+
Return type: void
|
|
1498
|
+
Description: Set camera pan key to combine with mouse movement (free camera)
|
|
1499
|
+
Param[1]: keyPan (type: int)
|
|
1500
|
+
Function 170: SetCameraAltControl() (1 input parameters)
|
|
1501
|
+
Name: SetCameraAltControl
|
|
1502
|
+
Return type: void
|
|
1503
|
+
Description: Set camera alt key to combine with mouse movement (free camera)
|
|
1504
|
+
Param[1]: keyAlt (type: int)
|
|
1505
|
+
Function 171: SetCameraSmoothZoomControl() (1 input parameters)
|
|
1506
|
+
Name: SetCameraSmoothZoomControl
|
|
1507
|
+
Return type: void
|
|
1508
|
+
Description: Set camera smooth zoom key to combine with mouse (free camera)
|
|
1509
|
+
Param[1]: keySmoothZoom (type: int)
|
|
1510
|
+
Function 172: SetCameraMoveControls() (6 input parameters)
|
|
1511
|
+
Name: SetCameraMoveControls
|
|
1512
|
+
Return type: void
|
|
1513
|
+
Description: Set camera move controls (1st person and 3rd person cameras)
|
|
1514
|
+
Param[1]: keyFront (type: int)
|
|
1515
|
+
Param[2]: keyBack (type: int)
|
|
1516
|
+
Param[3]: keyRight (type: int)
|
|
1517
|
+
Param[4]: keyLeft (type: int)
|
|
1518
|
+
Param[5]: keyUp (type: int)
|
|
1519
|
+
Param[6]: keyDown (type: int)
|
|
1520
|
+
Function 173: SetShapesTexture() (2 input parameters)
|
|
1521
|
+
Name: SetShapesTexture
|
|
1522
|
+
Return type: void
|
|
1523
|
+
Description: Set texture and rectangle to be used on shapes drawing
|
|
1524
|
+
Param[1]: texture (type: Texture2D)
|
|
1525
|
+
Param[2]: source (type: Rectangle)
|
|
1526
|
+
Function 174: DrawPixel() (3 input parameters)
|
|
1527
|
+
Name: DrawPixel
|
|
1528
|
+
Return type: void
|
|
1529
|
+
Description: Draw a pixel
|
|
1530
|
+
Param[1]: posX (type: int)
|
|
1531
|
+
Param[2]: posY (type: int)
|
|
1532
|
+
Param[3]: color (type: Color)
|
|
1533
|
+
Function 175: DrawPixelV() (2 input parameters)
|
|
1534
|
+
Name: DrawPixelV
|
|
1535
|
+
Return type: void
|
|
1536
|
+
Description: Draw a pixel (Vector version)
|
|
1537
|
+
Param[1]: position (type: Vector2)
|
|
1538
|
+
Param[2]: color (type: Color)
|
|
1539
|
+
Function 176: DrawLine() (5 input parameters)
|
|
1540
|
+
Name: DrawLine
|
|
1541
|
+
Return type: void
|
|
1542
|
+
Description: Draw a line
|
|
1543
|
+
Param[1]: startPosX (type: int)
|
|
1544
|
+
Param[2]: startPosY (type: int)
|
|
1545
|
+
Param[3]: endPosX (type: int)
|
|
1546
|
+
Param[4]: endPosY (type: int)
|
|
1547
|
+
Param[5]: color (type: Color)
|
|
1548
|
+
Function 177: DrawLineV() (3 input parameters)
|
|
1549
|
+
Name: DrawLineV
|
|
1550
|
+
Return type: void
|
|
1551
|
+
Description: Draw a line (Vector version)
|
|
1552
|
+
Param[1]: startPos (type: Vector2)
|
|
1553
|
+
Param[2]: endPos (type: Vector2)
|
|
1554
|
+
Param[3]: color (type: Color)
|
|
1555
|
+
Function 178: DrawLineEx() (4 input parameters)
|
|
1556
|
+
Name: DrawLineEx
|
|
1557
|
+
Return type: void
|
|
1558
|
+
Description: Draw a line defining thickness
|
|
1559
|
+
Param[1]: startPos (type: Vector2)
|
|
1560
|
+
Param[2]: endPos (type: Vector2)
|
|
1561
|
+
Param[3]: thick (type: float)
|
|
1562
|
+
Param[4]: color (type: Color)
|
|
1563
|
+
Function 179: DrawLineBezier() (4 input parameters)
|
|
1564
|
+
Name: DrawLineBezier
|
|
1565
|
+
Return type: void
|
|
1566
|
+
Description: Draw a line using cubic-bezier curves in-out
|
|
1567
|
+
Param[1]: startPos (type: Vector2)
|
|
1568
|
+
Param[2]: endPos (type: Vector2)
|
|
1569
|
+
Param[3]: thick (type: float)
|
|
1570
|
+
Param[4]: color (type: Color)
|
|
1571
|
+
Function 180: DrawLineBezierQuad() (5 input parameters)
|
|
1572
|
+
Name: DrawLineBezierQuad
|
|
1573
|
+
Return type: void
|
|
1574
|
+
Description: raw line using quadratic bezier curves with a control point
|
|
1575
|
+
Param[1]: startPos (type: Vector2)
|
|
1576
|
+
Param[2]: endPos (type: Vector2)
|
|
1577
|
+
Param[3]: controlPos (type: Vector2)
|
|
1578
|
+
Param[4]: thick (type: float)
|
|
1579
|
+
Param[5]: color (type: Color)
|
|
1580
|
+
Function 181: DrawLineStrip() (3 input parameters)
|
|
1581
|
+
Name: DrawLineStrip
|
|
1582
|
+
Return type: void
|
|
1583
|
+
Description: Draw lines sequence
|
|
1584
|
+
Param[1]: points (type: Vector2 *)
|
|
1585
|
+
Param[2]: pointsCount (type: int)
|
|
1586
|
+
Param[3]: color (type: Color)
|
|
1587
|
+
Function 182: DrawCircle() (4 input parameters)
|
|
1588
|
+
Name: DrawCircle
|
|
1589
|
+
Return type: void
|
|
1590
|
+
Description: Draw a color-filled circle
|
|
1591
|
+
Param[1]: centerX (type: int)
|
|
1592
|
+
Param[2]: centerY (type: int)
|
|
1593
|
+
Param[3]: radius (type: float)
|
|
1594
|
+
Param[4]: color (type: Color)
|
|
1595
|
+
Function 183: DrawCircleSector() (6 input parameters)
|
|
1596
|
+
Name: DrawCircleSector
|
|
1597
|
+
Return type: void
|
|
1598
|
+
Description: Draw a piece of a circle
|
|
1599
|
+
Param[1]: center (type: Vector2)
|
|
1600
|
+
Param[2]: radius (type: float)
|
|
1601
|
+
Param[3]: startAngle (type: float)
|
|
1602
|
+
Param[4]: endAngle (type: float)
|
|
1603
|
+
Param[5]: segments (type: int)
|
|
1604
|
+
Param[6]: color (type: Color)
|
|
1605
|
+
Function 184: DrawCircleSectorLines() (6 input parameters)
|
|
1606
|
+
Name: DrawCircleSectorLines
|
|
1607
|
+
Return type: void
|
|
1608
|
+
Description: Draw circle sector outline
|
|
1609
|
+
Param[1]: center (type: Vector2)
|
|
1610
|
+
Param[2]: radius (type: float)
|
|
1611
|
+
Param[3]: startAngle (type: float)
|
|
1612
|
+
Param[4]: endAngle (type: float)
|
|
1613
|
+
Param[5]: segments (type: int)
|
|
1614
|
+
Param[6]: color (type: Color)
|
|
1615
|
+
Function 185: DrawCircleGradient() (5 input parameters)
|
|
1616
|
+
Name: DrawCircleGradient
|
|
1617
|
+
Return type: void
|
|
1618
|
+
Description: Draw a gradient-filled circle
|
|
1619
|
+
Param[1]: centerX (type: int)
|
|
1620
|
+
Param[2]: centerY (type: int)
|
|
1621
|
+
Param[3]: radius (type: float)
|
|
1622
|
+
Param[4]: color1 (type: Color)
|
|
1623
|
+
Param[5]: color2 (type: Color)
|
|
1624
|
+
Function 186: DrawCircleV() (3 input parameters)
|
|
1625
|
+
Name: DrawCircleV
|
|
1626
|
+
Return type: void
|
|
1627
|
+
Description: Draw a color-filled circle (Vector version)
|
|
1628
|
+
Param[1]: center (type: Vector2)
|
|
1629
|
+
Param[2]: radius (type: float)
|
|
1630
|
+
Param[3]: color (type: Color)
|
|
1631
|
+
Function 187: DrawCircleLines() (4 input parameters)
|
|
1632
|
+
Name: DrawCircleLines
|
|
1633
|
+
Return type: void
|
|
1634
|
+
Description: Draw circle outline
|
|
1635
|
+
Param[1]: centerX (type: int)
|
|
1636
|
+
Param[2]: centerY (type: int)
|
|
1637
|
+
Param[3]: radius (type: float)
|
|
1638
|
+
Param[4]: color (type: Color)
|
|
1639
|
+
Function 188: DrawEllipse() (5 input parameters)
|
|
1640
|
+
Name: DrawEllipse
|
|
1641
|
+
Return type: void
|
|
1642
|
+
Description: Draw ellipse
|
|
1643
|
+
Param[1]: centerX (type: int)
|
|
1644
|
+
Param[2]: centerY (type: int)
|
|
1645
|
+
Param[3]: radiusH (type: float)
|
|
1646
|
+
Param[4]: radiusV (type: float)
|
|
1647
|
+
Param[5]: color (type: Color)
|
|
1648
|
+
Function 189: DrawEllipseLines() (5 input parameters)
|
|
1649
|
+
Name: DrawEllipseLines
|
|
1650
|
+
Return type: void
|
|
1651
|
+
Description: Draw ellipse outline
|
|
1652
|
+
Param[1]: centerX (type: int)
|
|
1653
|
+
Param[2]: centerY (type: int)
|
|
1654
|
+
Param[3]: radiusH (type: float)
|
|
1655
|
+
Param[4]: radiusV (type: float)
|
|
1656
|
+
Param[5]: color (type: Color)
|
|
1657
|
+
Function 190: DrawRing() (7 input parameters)
|
|
1658
|
+
Name: DrawRing
|
|
1659
|
+
Return type: void
|
|
1660
|
+
Description: Draw ring
|
|
1661
|
+
Param[1]: center (type: Vector2)
|
|
1662
|
+
Param[2]: innerRadius (type: float)
|
|
1663
|
+
Param[3]: outerRadius (type: float)
|
|
1664
|
+
Param[4]: startAngle (type: float)
|
|
1665
|
+
Param[5]: endAngle (type: float)
|
|
1666
|
+
Param[6]: segments (type: int)
|
|
1667
|
+
Param[7]: color (type: Color)
|
|
1668
|
+
Function 191: DrawRingLines() (7 input parameters)
|
|
1669
|
+
Name: DrawRingLines
|
|
1670
|
+
Return type: void
|
|
1671
|
+
Description: Draw ring outline
|
|
1672
|
+
Param[1]: center (type: Vector2)
|
|
1673
|
+
Param[2]: innerRadius (type: float)
|
|
1674
|
+
Param[3]: outerRadius (type: float)
|
|
1675
|
+
Param[4]: startAngle (type: float)
|
|
1676
|
+
Param[5]: endAngle (type: float)
|
|
1677
|
+
Param[6]: segments (type: int)
|
|
1678
|
+
Param[7]: color (type: Color)
|
|
1679
|
+
Function 192: DrawRectangle() (5 input parameters)
|
|
1680
|
+
Name: DrawRectangle
|
|
1681
|
+
Return type: void
|
|
1682
|
+
Description: Draw a color-filled rectangle
|
|
1683
|
+
Param[1]: posX (type: int)
|
|
1684
|
+
Param[2]: posY (type: int)
|
|
1685
|
+
Param[3]: width (type: int)
|
|
1686
|
+
Param[4]: height (type: int)
|
|
1687
|
+
Param[5]: color (type: Color)
|
|
1688
|
+
Function 193: DrawRectangleV() (3 input parameters)
|
|
1689
|
+
Name: DrawRectangleV
|
|
1690
|
+
Return type: void
|
|
1691
|
+
Description: Draw a color-filled rectangle (Vector version)
|
|
1692
|
+
Param[1]: position (type: Vector2)
|
|
1693
|
+
Param[2]: size (type: Vector2)
|
|
1694
|
+
Param[3]: color (type: Color)
|
|
1695
|
+
Function 194: DrawRectangleRec() (2 input parameters)
|
|
1696
|
+
Name: DrawRectangleRec
|
|
1697
|
+
Return type: void
|
|
1698
|
+
Description: Draw a color-filled rectangle
|
|
1699
|
+
Param[1]: rec (type: Rectangle)
|
|
1700
|
+
Param[2]: color (type: Color)
|
|
1701
|
+
Function 195: DrawRectanglePro() (4 input parameters)
|
|
1702
|
+
Name: DrawRectanglePro
|
|
1703
|
+
Return type: void
|
|
1704
|
+
Description: Draw a color-filled rectangle with pro parameters
|
|
1705
|
+
Param[1]: rec (type: Rectangle)
|
|
1706
|
+
Param[2]: origin (type: Vector2)
|
|
1707
|
+
Param[3]: rotation (type: float)
|
|
1708
|
+
Param[4]: color (type: Color)
|
|
1709
|
+
Function 196: DrawRectangleGradientV() (6 input parameters)
|
|
1710
|
+
Name: DrawRectangleGradientV
|
|
1711
|
+
Return type: void
|
|
1712
|
+
Description: Draw a vertical-gradient-filled rectangle
|
|
1713
|
+
Param[1]: posX (type: int)
|
|
1714
|
+
Param[2]: posY (type: int)
|
|
1715
|
+
Param[3]: width (type: int)
|
|
1716
|
+
Param[4]: height (type: int)
|
|
1717
|
+
Param[5]: color1 (type: Color)
|
|
1718
|
+
Param[6]: color2 (type: Color)
|
|
1719
|
+
Function 197: DrawRectangleGradientH() (6 input parameters)
|
|
1720
|
+
Name: DrawRectangleGradientH
|
|
1721
|
+
Return type: void
|
|
1722
|
+
Description: Draw a horizontal-gradient-filled rectangle
|
|
1723
|
+
Param[1]: posX (type: int)
|
|
1724
|
+
Param[2]: posY (type: int)
|
|
1725
|
+
Param[3]: width (type: int)
|
|
1726
|
+
Param[4]: height (type: int)
|
|
1727
|
+
Param[5]: color1 (type: Color)
|
|
1728
|
+
Param[6]: color2 (type: Color)
|
|
1729
|
+
Function 198: DrawRectangleGradientEx() (5 input parameters)
|
|
1730
|
+
Name: DrawRectangleGradientEx
|
|
1731
|
+
Return type: void
|
|
1732
|
+
Description: Draw a gradient-filled rectangle with custom vertex colors
|
|
1733
|
+
Param[1]: rec (type: Rectangle)
|
|
1734
|
+
Param[2]: col1 (type: Color)
|
|
1735
|
+
Param[3]: col2 (type: Color)
|
|
1736
|
+
Param[4]: col3 (type: Color)
|
|
1737
|
+
Param[5]: col4 (type: Color)
|
|
1738
|
+
Function 199: DrawRectangleLines() (5 input parameters)
|
|
1739
|
+
Name: DrawRectangleLines
|
|
1740
|
+
Return type: void
|
|
1741
|
+
Description: Draw rectangle outline
|
|
1742
|
+
Param[1]: posX (type: int)
|
|
1743
|
+
Param[2]: posY (type: int)
|
|
1744
|
+
Param[3]: width (type: int)
|
|
1745
|
+
Param[4]: height (type: int)
|
|
1746
|
+
Param[5]: color (type: Color)
|
|
1747
|
+
Function 200: DrawRectangleLinesEx() (3 input parameters)
|
|
1748
|
+
Name: DrawRectangleLinesEx
|
|
1749
|
+
Return type: void
|
|
1750
|
+
Description: Draw rectangle outline with extended parameters
|
|
1751
|
+
Param[1]: rec (type: Rectangle)
|
|
1752
|
+
Param[2]: lineThick (type: float)
|
|
1753
|
+
Param[3]: color (type: Color)
|
|
1754
|
+
Function 201: DrawRectangleRounded() (4 input parameters)
|
|
1755
|
+
Name: DrawRectangleRounded
|
|
1756
|
+
Return type: void
|
|
1757
|
+
Description: Draw rectangle with rounded edges
|
|
1758
|
+
Param[1]: rec (type: Rectangle)
|
|
1759
|
+
Param[2]: roundness (type: float)
|
|
1760
|
+
Param[3]: segments (type: int)
|
|
1761
|
+
Param[4]: color (type: Color)
|
|
1762
|
+
Function 202: DrawRectangleRoundedLines() (5 input parameters)
|
|
1763
|
+
Name: DrawRectangleRoundedLines
|
|
1764
|
+
Return type: void
|
|
1765
|
+
Description: Draw rectangle with rounded edges outline
|
|
1766
|
+
Param[1]: rec (type: Rectangle)
|
|
1767
|
+
Param[2]: roundness (type: float)
|
|
1768
|
+
Param[3]: segments (type: int)
|
|
1769
|
+
Param[4]: lineThick (type: float)
|
|
1770
|
+
Param[5]: color (type: Color)
|
|
1771
|
+
Function 203: DrawTriangle() (4 input parameters)
|
|
1772
|
+
Name: DrawTriangle
|
|
1773
|
+
Return type: void
|
|
1774
|
+
Description: Draw a color-filled triangle (vertex in counter-clockwise order!)
|
|
1775
|
+
Param[1]: v1 (type: Vector2)
|
|
1776
|
+
Param[2]: v2 (type: Vector2)
|
|
1777
|
+
Param[3]: v3 (type: Vector2)
|
|
1778
|
+
Param[4]: color (type: Color)
|
|
1779
|
+
Function 204: DrawTriangleLines() (4 input parameters)
|
|
1780
|
+
Name: DrawTriangleLines
|
|
1781
|
+
Return type: void
|
|
1782
|
+
Description: Draw triangle outline (vertex in counter-clockwise order!)
|
|
1783
|
+
Param[1]: v1 (type: Vector2)
|
|
1784
|
+
Param[2]: v2 (type: Vector2)
|
|
1785
|
+
Param[3]: v3 (type: Vector2)
|
|
1786
|
+
Param[4]: color (type: Color)
|
|
1787
|
+
Function 205: DrawTriangleFan() (3 input parameters)
|
|
1788
|
+
Name: DrawTriangleFan
|
|
1789
|
+
Return type: void
|
|
1790
|
+
Description: Draw a triangle fan defined by points (first vertex is the center)
|
|
1791
|
+
Param[1]: points (type: Vector2 *)
|
|
1792
|
+
Param[2]: pointsCount (type: int)
|
|
1793
|
+
Param[3]: color (type: Color)
|
|
1794
|
+
Function 206: DrawTriangleStrip() (3 input parameters)
|
|
1795
|
+
Name: DrawTriangleStrip
|
|
1796
|
+
Return type: void
|
|
1797
|
+
Description: Draw a triangle strip defined by points
|
|
1798
|
+
Param[1]: points (type: Vector2 *)
|
|
1799
|
+
Param[2]: pointsCount (type: int)
|
|
1800
|
+
Param[3]: color (type: Color)
|
|
1801
|
+
Function 207: DrawPoly() (5 input parameters)
|
|
1802
|
+
Name: DrawPoly
|
|
1803
|
+
Return type: void
|
|
1804
|
+
Description: Draw a regular polygon (Vector version)
|
|
1805
|
+
Param[1]: center (type: Vector2)
|
|
1806
|
+
Param[2]: sides (type: int)
|
|
1807
|
+
Param[3]: radius (type: float)
|
|
1808
|
+
Param[4]: rotation (type: float)
|
|
1809
|
+
Param[5]: color (type: Color)
|
|
1810
|
+
Function 208: DrawPolyLines() (5 input parameters)
|
|
1811
|
+
Name: DrawPolyLines
|
|
1812
|
+
Return type: void
|
|
1813
|
+
Description: Draw a polygon outline of n sides
|
|
1814
|
+
Param[1]: center (type: Vector2)
|
|
1815
|
+
Param[2]: sides (type: int)
|
|
1816
|
+
Param[3]: radius (type: float)
|
|
1817
|
+
Param[4]: rotation (type: float)
|
|
1818
|
+
Param[5]: color (type: Color)
|
|
1819
|
+
Function 209: DrawPolyLinesEx() (6 input parameters)
|
|
1820
|
+
Name: DrawPolyLinesEx
|
|
1821
|
+
Return type: void
|
|
1822
|
+
Description: Draw a polygon outline of n sides with extended parameters
|
|
1823
|
+
Param[1]: center (type: Vector2)
|
|
1824
|
+
Param[2]: sides (type: int)
|
|
1825
|
+
Param[3]: radius (type: float)
|
|
1826
|
+
Param[4]: rotation (type: float)
|
|
1827
|
+
Param[5]: lineThick (type: float)
|
|
1828
|
+
Param[6]: color (type: Color)
|
|
1829
|
+
Function 210: CheckCollisionRecs() (2 input parameters)
|
|
1830
|
+
Name: CheckCollisionRecs
|
|
1831
|
+
Return type: bool
|
|
1832
|
+
Description: Check collision between two rectangles
|
|
1833
|
+
Param[1]: rec1 (type: Rectangle)
|
|
1834
|
+
Param[2]: rec2 (type: Rectangle)
|
|
1835
|
+
Function 211: CheckCollisionCircles() (4 input parameters)
|
|
1836
|
+
Name: CheckCollisionCircles
|
|
1837
|
+
Return type: bool
|
|
1838
|
+
Description: Check collision between two circles
|
|
1839
|
+
Param[1]: center1 (type: Vector2)
|
|
1840
|
+
Param[2]: radius1 (type: float)
|
|
1841
|
+
Param[3]: center2 (type: Vector2)
|
|
1842
|
+
Param[4]: radius2 (type: float)
|
|
1843
|
+
Function 212: CheckCollisionCircleRec() (3 input parameters)
|
|
1844
|
+
Name: CheckCollisionCircleRec
|
|
1845
|
+
Return type: bool
|
|
1846
|
+
Description: Check collision between circle and rectangle
|
|
1847
|
+
Param[1]: center (type: Vector2)
|
|
1848
|
+
Param[2]: radius (type: float)
|
|
1849
|
+
Param[3]: rec (type: Rectangle)
|
|
1850
|
+
Function 213: CheckCollisionPointRec() (2 input parameters)
|
|
1851
|
+
Name: CheckCollisionPointRec
|
|
1852
|
+
Return type: bool
|
|
1853
|
+
Description: Check if point is inside rectangle
|
|
1854
|
+
Param[1]: point (type: Vector2)
|
|
1855
|
+
Param[2]: rec (type: Rectangle)
|
|
1856
|
+
Function 214: CheckCollisionPointCircle() (3 input parameters)
|
|
1857
|
+
Name: CheckCollisionPointCircle
|
|
1858
|
+
Return type: bool
|
|
1859
|
+
Description: Check if point is inside circle
|
|
1860
|
+
Param[1]: point (type: Vector2)
|
|
1861
|
+
Param[2]: center (type: Vector2)
|
|
1862
|
+
Param[3]: radius (type: float)
|
|
1863
|
+
Function 215: CheckCollisionPointTriangle() (4 input parameters)
|
|
1864
|
+
Name: CheckCollisionPointTriangle
|
|
1865
|
+
Return type: bool
|
|
1866
|
+
Description: Check if point is inside a triangle
|
|
1867
|
+
Param[1]: point (type: Vector2)
|
|
1868
|
+
Param[2]: p1 (type: Vector2)
|
|
1869
|
+
Param[3]: p2 (type: Vector2)
|
|
1870
|
+
Param[4]: p3 (type: Vector2)
|
|
1871
|
+
Function 216: CheckCollisionLines() (5 input parameters)
|
|
1872
|
+
Name: CheckCollisionLines
|
|
1873
|
+
Return type: bool
|
|
1874
|
+
Description: Check the collision between two lines defined by two points each, returns collision point by reference
|
|
1875
|
+
Param[1]: startPos1 (type: Vector2)
|
|
1876
|
+
Param[2]: endPos1 (type: Vector2)
|
|
1877
|
+
Param[3]: startPos2 (type: Vector2)
|
|
1878
|
+
Param[4]: endPos2 (type: Vector2)
|
|
1879
|
+
Param[5]: collisionPoint (type: Vector2 *)
|
|
1880
|
+
Function 217: GetCollisionRec() (2 input parameters)
|
|
1881
|
+
Name: GetCollisionRec
|
|
1882
|
+
Return type: Rectangle
|
|
1883
|
+
Description: Get collision rectangle for two rectangles collision
|
|
1884
|
+
Param[1]: rec1 (type: Rectangle)
|
|
1885
|
+
Param[2]: rec2 (type: Rectangle)
|
|
1886
|
+
Function 218: LoadImage() (1 input parameters)
|
|
1887
|
+
Name: LoadImage
|
|
1888
|
+
Return type: Image
|
|
1889
|
+
Description: Load image from file into CPU memory (RAM)
|
|
1890
|
+
Param[1]: fileName (type: const char *)
|
|
1891
|
+
Function 219: LoadImageRaw() (5 input parameters)
|
|
1892
|
+
Name: LoadImageRaw
|
|
1893
|
+
Return type: Image
|
|
1894
|
+
Description: Load image from RAW file data
|
|
1895
|
+
Param[1]: fileName (type: const char *)
|
|
1896
|
+
Param[2]: width (type: int)
|
|
1897
|
+
Param[3]: height (type: int)
|
|
1898
|
+
Param[4]: format (type: int)
|
|
1899
|
+
Param[5]: headerSize (type: int)
|
|
1900
|
+
Function 220: LoadImageAnim() (2 input parameters)
|
|
1901
|
+
Name: LoadImageAnim
|
|
1902
|
+
Return type: Image
|
|
1903
|
+
Description: Load image sequence from file (frames appended to image.data)
|
|
1904
|
+
Param[1]: fileName (type: const char *)
|
|
1905
|
+
Param[2]: frames (type: int *)
|
|
1906
|
+
Function 221: LoadImageFromMemory() (3 input parameters)
|
|
1907
|
+
Name: LoadImageFromMemory
|
|
1908
|
+
Return type: Image
|
|
1909
|
+
Description: Load image from memory buffer, fileType refers to extension: i.e. '.png'
|
|
1910
|
+
Param[1]: fileType (type: const char *)
|
|
1911
|
+
Param[2]: fileData (type: const unsigned char *)
|
|
1912
|
+
Param[3]: dataSize (type: int)
|
|
1913
|
+
Function 222: UnloadImage() (1 input parameters)
|
|
1914
|
+
Name: UnloadImage
|
|
1915
|
+
Return type: void
|
|
1916
|
+
Description: Unload image from CPU memory (RAM)
|
|
1917
|
+
Param[1]: image (type: Image)
|
|
1918
|
+
Function 223: ExportImage() (2 input parameters)
|
|
1919
|
+
Name: ExportImage
|
|
1920
|
+
Return type: bool
|
|
1921
|
+
Description: Export image data to file, returns true on success
|
|
1922
|
+
Param[1]: image (type: Image)
|
|
1923
|
+
Param[2]: fileName (type: const char *)
|
|
1924
|
+
Function 224: ExportImageAsCode() (2 input parameters)
|
|
1925
|
+
Name: ExportImageAsCode
|
|
1926
|
+
Return type: bool
|
|
1927
|
+
Description: Export image as code file defining an array of bytes, returns true on success
|
|
1928
|
+
Param[1]: image (type: Image)
|
|
1929
|
+
Param[2]: fileName (type: const char *)
|
|
1930
|
+
Function 225: GenImageColor() (3 input parameters)
|
|
1931
|
+
Name: GenImageColor
|
|
1932
|
+
Return type: Image
|
|
1933
|
+
Description: Generate image: plain color
|
|
1934
|
+
Param[1]: width (type: int)
|
|
1935
|
+
Param[2]: height (type: int)
|
|
1936
|
+
Param[3]: color (type: Color)
|
|
1937
|
+
Function 226: GenImageGradientV() (4 input parameters)
|
|
1938
|
+
Name: GenImageGradientV
|
|
1939
|
+
Return type: Image
|
|
1940
|
+
Description: Generate image: vertical gradient
|
|
1941
|
+
Param[1]: width (type: int)
|
|
1942
|
+
Param[2]: height (type: int)
|
|
1943
|
+
Param[3]: top (type: Color)
|
|
1944
|
+
Param[4]: bottom (type: Color)
|
|
1945
|
+
Function 227: GenImageGradientH() (4 input parameters)
|
|
1946
|
+
Name: GenImageGradientH
|
|
1947
|
+
Return type: Image
|
|
1948
|
+
Description: Generate image: horizontal gradient
|
|
1949
|
+
Param[1]: width (type: int)
|
|
1950
|
+
Param[2]: height (type: int)
|
|
1951
|
+
Param[3]: left (type: Color)
|
|
1952
|
+
Param[4]: right (type: Color)
|
|
1953
|
+
Function 228: GenImageGradientRadial() (5 input parameters)
|
|
1954
|
+
Name: GenImageGradientRadial
|
|
1955
|
+
Return type: Image
|
|
1956
|
+
Description: Generate image: radial gradient
|
|
1957
|
+
Param[1]: width (type: int)
|
|
1958
|
+
Param[2]: height (type: int)
|
|
1959
|
+
Param[3]: density (type: float)
|
|
1960
|
+
Param[4]: inner (type: Color)
|
|
1961
|
+
Param[5]: outer (type: Color)
|
|
1962
|
+
Function 229: GenImageChecked() (6 input parameters)
|
|
1963
|
+
Name: GenImageChecked
|
|
1964
|
+
Return type: Image
|
|
1965
|
+
Description: Generate image: checked
|
|
1966
|
+
Param[1]: width (type: int)
|
|
1967
|
+
Param[2]: height (type: int)
|
|
1968
|
+
Param[3]: checksX (type: int)
|
|
1969
|
+
Param[4]: checksY (type: int)
|
|
1970
|
+
Param[5]: col1 (type: Color)
|
|
1971
|
+
Param[6]: col2 (type: Color)
|
|
1972
|
+
Function 230: GenImageWhiteNoise() (3 input parameters)
|
|
1973
|
+
Name: GenImageWhiteNoise
|
|
1974
|
+
Return type: Image
|
|
1975
|
+
Description: Generate image: white noise
|
|
1976
|
+
Param[1]: width (type: int)
|
|
1977
|
+
Param[2]: height (type: int)
|
|
1978
|
+
Param[3]: factor (type: float)
|
|
1979
|
+
Function 231: GenImagePerlinNoise() (5 input parameters)
|
|
1980
|
+
Name: GenImagePerlinNoise
|
|
1981
|
+
Return type: Image
|
|
1982
|
+
Description: Generate image: perlin noise
|
|
1983
|
+
Param[1]: width (type: int)
|
|
1984
|
+
Param[2]: height (type: int)
|
|
1985
|
+
Param[3]: offsetX (type: int)
|
|
1986
|
+
Param[4]: offsetY (type: int)
|
|
1987
|
+
Param[5]: scale (type: float)
|
|
1988
|
+
Function 232: GenImageCellular() (3 input parameters)
|
|
1989
|
+
Name: GenImageCellular
|
|
1990
|
+
Return type: Image
|
|
1991
|
+
Description: Generate image: cellular algorithm. Bigger tileSize means bigger cells
|
|
1992
|
+
Param[1]: width (type: int)
|
|
1993
|
+
Param[2]: height (type: int)
|
|
1994
|
+
Param[3]: tileSize (type: int)
|
|
1995
|
+
Function 233: ImageCopy() (1 input parameters)
|
|
1996
|
+
Name: ImageCopy
|
|
1997
|
+
Return type: Image
|
|
1998
|
+
Description: Create an image duplicate (useful for transformations)
|
|
1999
|
+
Param[1]: image (type: Image)
|
|
2000
|
+
Function 234: ImageFromImage() (2 input parameters)
|
|
2001
|
+
Name: ImageFromImage
|
|
2002
|
+
Return type: Image
|
|
2003
|
+
Description: Create an image from another image piece
|
|
2004
|
+
Param[1]: image (type: Image)
|
|
2005
|
+
Param[2]: rec (type: Rectangle)
|
|
2006
|
+
Function 235: ImageText() (3 input parameters)
|
|
2007
|
+
Name: ImageText
|
|
2008
|
+
Return type: Image
|
|
2009
|
+
Description: Create an image from text (default font)
|
|
2010
|
+
Param[1]: text (type: const char *)
|
|
2011
|
+
Param[2]: fontSize (type: int)
|
|
2012
|
+
Param[3]: color (type: Color)
|
|
2013
|
+
Function 236: ImageTextEx() (5 input parameters)
|
|
2014
|
+
Name: ImageTextEx
|
|
2015
|
+
Return type: Image
|
|
2016
|
+
Description: Create an image from text (custom sprite font)
|
|
2017
|
+
Param[1]: font (type: Font)
|
|
2018
|
+
Param[2]: text (type: const char *)
|
|
2019
|
+
Param[3]: fontSize (type: float)
|
|
2020
|
+
Param[4]: spacing (type: float)
|
|
2021
|
+
Param[5]: tint (type: Color)
|
|
2022
|
+
Function 237: ImageFormat() (2 input parameters)
|
|
2023
|
+
Name: ImageFormat
|
|
2024
|
+
Return type: void
|
|
2025
|
+
Description: Convert image data to desired format
|
|
2026
|
+
Param[1]: image (type: Image *)
|
|
2027
|
+
Param[2]: newFormat (type: int)
|
|
2028
|
+
Function 238: ImageToPOT() (2 input parameters)
|
|
2029
|
+
Name: ImageToPOT
|
|
2030
|
+
Return type: void
|
|
2031
|
+
Description: Convert image to POT (power-of-two)
|
|
2032
|
+
Param[1]: image (type: Image *)
|
|
2033
|
+
Param[2]: fill (type: Color)
|
|
2034
|
+
Function 239: ImageCrop() (2 input parameters)
|
|
2035
|
+
Name: ImageCrop
|
|
2036
|
+
Return type: void
|
|
2037
|
+
Description: Crop an image to a defined rectangle
|
|
2038
|
+
Param[1]: image (type: Image *)
|
|
2039
|
+
Param[2]: crop (type: Rectangle)
|
|
2040
|
+
Function 240: ImageAlphaCrop() (2 input parameters)
|
|
2041
|
+
Name: ImageAlphaCrop
|
|
2042
|
+
Return type: void
|
|
2043
|
+
Description: Crop image depending on alpha value
|
|
2044
|
+
Param[1]: image (type: Image *)
|
|
2045
|
+
Param[2]: threshold (type: float)
|
|
2046
|
+
Function 241: ImageAlphaClear() (3 input parameters)
|
|
2047
|
+
Name: ImageAlphaClear
|
|
2048
|
+
Return type: void
|
|
2049
|
+
Description: Clear alpha channel to desired color
|
|
2050
|
+
Param[1]: image (type: Image *)
|
|
2051
|
+
Param[2]: color (type: Color)
|
|
2052
|
+
Param[3]: threshold (type: float)
|
|
2053
|
+
Function 242: ImageAlphaMask() (2 input parameters)
|
|
2054
|
+
Name: ImageAlphaMask
|
|
2055
|
+
Return type: void
|
|
2056
|
+
Description: Apply alpha mask to image
|
|
2057
|
+
Param[1]: image (type: Image *)
|
|
2058
|
+
Param[2]: alphaMask (type: Image)
|
|
2059
|
+
Function 243: ImageAlphaPremultiply() (1 input parameters)
|
|
2060
|
+
Name: ImageAlphaPremultiply
|
|
2061
|
+
Return type: void
|
|
2062
|
+
Description: Premultiply alpha channel
|
|
2063
|
+
Param[1]: image (type: Image *)
|
|
2064
|
+
Function 244: ImageResize() (3 input parameters)
|
|
2065
|
+
Name: ImageResize
|
|
2066
|
+
Return type: void
|
|
2067
|
+
Description: Resize image (Bicubic scaling algorithm)
|
|
2068
|
+
Param[1]: image (type: Image *)
|
|
2069
|
+
Param[2]: newWidth (type: int)
|
|
2070
|
+
Param[3]: newHeight (type: int)
|
|
2071
|
+
Function 245: ImageResizeNN() (3 input parameters)
|
|
2072
|
+
Name: ImageResizeNN
|
|
2073
|
+
Return type: void
|
|
2074
|
+
Description: Resize image (Nearest-Neighbor scaling algorithm)
|
|
2075
|
+
Param[1]: image (type: Image *)
|
|
2076
|
+
Param[2]: newWidth (type: int)
|
|
2077
|
+
Param[3]: newHeight (type: int)
|
|
2078
|
+
Function 246: ImageResizeCanvas() (6 input parameters)
|
|
2079
|
+
Name: ImageResizeCanvas
|
|
2080
|
+
Return type: void
|
|
2081
|
+
Description: Resize canvas and fill with color
|
|
2082
|
+
Param[1]: image (type: Image *)
|
|
2083
|
+
Param[2]: newWidth (type: int)
|
|
2084
|
+
Param[3]: newHeight (type: int)
|
|
2085
|
+
Param[4]: offsetX (type: int)
|
|
2086
|
+
Param[5]: offsetY (type: int)
|
|
2087
|
+
Param[6]: fill (type: Color)
|
|
2088
|
+
Function 247: ImageMipmaps() (1 input parameters)
|
|
2089
|
+
Name: ImageMipmaps
|
|
2090
|
+
Return type: void
|
|
2091
|
+
Description: Compute all mipmap levels for a provided image
|
|
2092
|
+
Param[1]: image (type: Image *)
|
|
2093
|
+
Function 248: ImageDither() (5 input parameters)
|
|
2094
|
+
Name: ImageDither
|
|
2095
|
+
Return type: void
|
|
2096
|
+
Description: Dither image data to 16bpp or lower (Floyd-Steinberg dithering)
|
|
2097
|
+
Param[1]: image (type: Image *)
|
|
2098
|
+
Param[2]: rBpp (type: int)
|
|
2099
|
+
Param[3]: gBpp (type: int)
|
|
2100
|
+
Param[4]: bBpp (type: int)
|
|
2101
|
+
Param[5]: aBpp (type: int)
|
|
2102
|
+
Function 249: ImageFlipVertical() (1 input parameters)
|
|
2103
|
+
Name: ImageFlipVertical
|
|
2104
|
+
Return type: void
|
|
2105
|
+
Description: Flip image vertically
|
|
2106
|
+
Param[1]: image (type: Image *)
|
|
2107
|
+
Function 250: ImageFlipHorizontal() (1 input parameters)
|
|
2108
|
+
Name: ImageFlipHorizontal
|
|
2109
|
+
Return type: void
|
|
2110
|
+
Description: Flip image horizontally
|
|
2111
|
+
Param[1]: image (type: Image *)
|
|
2112
|
+
Function 251: ImageRotateCW() (1 input parameters)
|
|
2113
|
+
Name: ImageRotateCW
|
|
2114
|
+
Return type: void
|
|
2115
|
+
Description: Rotate image clockwise 90deg
|
|
2116
|
+
Param[1]: image (type: Image *)
|
|
2117
|
+
Function 252: ImageRotateCCW() (1 input parameters)
|
|
2118
|
+
Name: ImageRotateCCW
|
|
2119
|
+
Return type: void
|
|
2120
|
+
Description: Rotate image counter-clockwise 90deg
|
|
2121
|
+
Param[1]: image (type: Image *)
|
|
2122
|
+
Function 253: ImageColorTint() (2 input parameters)
|
|
2123
|
+
Name: ImageColorTint
|
|
2124
|
+
Return type: void
|
|
2125
|
+
Description: Modify image color: tint
|
|
2126
|
+
Param[1]: image (type: Image *)
|
|
2127
|
+
Param[2]: color (type: Color)
|
|
2128
|
+
Function 254: ImageColorInvert() (1 input parameters)
|
|
2129
|
+
Name: ImageColorInvert
|
|
2130
|
+
Return type: void
|
|
2131
|
+
Description: Modify image color: invert
|
|
2132
|
+
Param[1]: image (type: Image *)
|
|
2133
|
+
Function 255: ImageColorGrayscale() (1 input parameters)
|
|
2134
|
+
Name: ImageColorGrayscale
|
|
2135
|
+
Return type: void
|
|
2136
|
+
Description: Modify image color: grayscale
|
|
2137
|
+
Param[1]: image (type: Image *)
|
|
2138
|
+
Function 256: ImageColorContrast() (2 input parameters)
|
|
2139
|
+
Name: ImageColorContrast
|
|
2140
|
+
Return type: void
|
|
2141
|
+
Description: Modify image color: contrast (-100 to 100)
|
|
2142
|
+
Param[1]: image (type: Image *)
|
|
2143
|
+
Param[2]: contrast (type: float)
|
|
2144
|
+
Function 257: ImageColorBrightness() (2 input parameters)
|
|
2145
|
+
Name: ImageColorBrightness
|
|
2146
|
+
Return type: void
|
|
2147
|
+
Description: Modify image color: brightness (-255 to 255)
|
|
2148
|
+
Param[1]: image (type: Image *)
|
|
2149
|
+
Param[2]: brightness (type: int)
|
|
2150
|
+
Function 258: ImageColorReplace() (3 input parameters)
|
|
2151
|
+
Name: ImageColorReplace
|
|
2152
|
+
Return type: void
|
|
2153
|
+
Description: Modify image color: replace color
|
|
2154
|
+
Param[1]: image (type: Image *)
|
|
2155
|
+
Param[2]: color (type: Color)
|
|
2156
|
+
Param[3]: replace (type: Color)
|
|
2157
|
+
Function 259: LoadImageColors() (1 input parameters)
|
|
2158
|
+
Name: LoadImageColors
|
|
2159
|
+
Return type: Color *
|
|
2160
|
+
Description: Load color data from image as a Color array (RGBA - 32bit)
|
|
2161
|
+
Param[1]: image (type: Image)
|
|
2162
|
+
Function 260: LoadImagePalette() (3 input parameters)
|
|
2163
|
+
Name: LoadImagePalette
|
|
2164
|
+
Return type: Color *
|
|
2165
|
+
Description: Load colors palette from image as a Color array (RGBA - 32bit)
|
|
2166
|
+
Param[1]: image (type: Image)
|
|
2167
|
+
Param[2]: maxPaletteSize (type: int)
|
|
2168
|
+
Param[3]: colorsCount (type: int *)
|
|
2169
|
+
Function 261: UnloadImageColors() (1 input parameters)
|
|
2170
|
+
Name: UnloadImageColors
|
|
2171
|
+
Return type: void
|
|
2172
|
+
Description: Unload color data loaded with LoadImageColors()
|
|
2173
|
+
Param[1]: colors (type: Color *)
|
|
2174
|
+
Function 262: UnloadImagePalette() (1 input parameters)
|
|
2175
|
+
Name: UnloadImagePalette
|
|
2176
|
+
Return type: void
|
|
2177
|
+
Description: Unload colors palette loaded with LoadImagePalette()
|
|
2178
|
+
Param[1]: colors (type: Color *)
|
|
2179
|
+
Function 263: GetImageAlphaBorder() (2 input parameters)
|
|
2180
|
+
Name: GetImageAlphaBorder
|
|
2181
|
+
Return type: Rectangle
|
|
2182
|
+
Description: Get image alpha border rectangle
|
|
2183
|
+
Param[1]: image (type: Image)
|
|
2184
|
+
Param[2]: threshold (type: float)
|
|
2185
|
+
Function 264: ImageClearBackground() (2 input parameters)
|
|
2186
|
+
Name: ImageClearBackground
|
|
2187
|
+
Return type: void
|
|
2188
|
+
Description: Clear image background with given color
|
|
2189
|
+
Param[1]: dst (type: Image *)
|
|
2190
|
+
Param[2]: color (type: Color)
|
|
2191
|
+
Function 265: ImageDrawPixel() (4 input parameters)
|
|
2192
|
+
Name: ImageDrawPixel
|
|
2193
|
+
Return type: void
|
|
2194
|
+
Description: Draw pixel within an image
|
|
2195
|
+
Param[1]: dst (type: Image *)
|
|
2196
|
+
Param[2]: posX (type: int)
|
|
2197
|
+
Param[3]: posY (type: int)
|
|
2198
|
+
Param[4]: color (type: Color)
|
|
2199
|
+
Function 266: ImageDrawPixelV() (3 input parameters)
|
|
2200
|
+
Name: ImageDrawPixelV
|
|
2201
|
+
Return type: void
|
|
2202
|
+
Description: Draw pixel within an image (Vector version)
|
|
2203
|
+
Param[1]: dst (type: Image *)
|
|
2204
|
+
Param[2]: position (type: Vector2)
|
|
2205
|
+
Param[3]: color (type: Color)
|
|
2206
|
+
Function 267: ImageDrawLine() (6 input parameters)
|
|
2207
|
+
Name: ImageDrawLine
|
|
2208
|
+
Return type: void
|
|
2209
|
+
Description: Draw line within an image
|
|
2210
|
+
Param[1]: dst (type: Image *)
|
|
2211
|
+
Param[2]: startPosX (type: int)
|
|
2212
|
+
Param[3]: startPosY (type: int)
|
|
2213
|
+
Param[4]: endPosX (type: int)
|
|
2214
|
+
Param[5]: endPosY (type: int)
|
|
2215
|
+
Param[6]: color (type: Color)
|
|
2216
|
+
Function 268: ImageDrawLineV() (4 input parameters)
|
|
2217
|
+
Name: ImageDrawLineV
|
|
2218
|
+
Return type: void
|
|
2219
|
+
Description: Draw line within an image (Vector version)
|
|
2220
|
+
Param[1]: dst (type: Image *)
|
|
2221
|
+
Param[2]: start (type: Vector2)
|
|
2222
|
+
Param[3]: end (type: Vector2)
|
|
2223
|
+
Param[4]: color (type: Color)
|
|
2224
|
+
Function 269: ImageDrawCircle() (5 input parameters)
|
|
2225
|
+
Name: ImageDrawCircle
|
|
2226
|
+
Return type: void
|
|
2227
|
+
Description: Draw circle within an image
|
|
2228
|
+
Param[1]: dst (type: Image *)
|
|
2229
|
+
Param[2]: centerX (type: int)
|
|
2230
|
+
Param[3]: centerY (type: int)
|
|
2231
|
+
Param[4]: radius (type: int)
|
|
2232
|
+
Param[5]: color (type: Color)
|
|
2233
|
+
Function 270: ImageDrawCircleV() (4 input parameters)
|
|
2234
|
+
Name: ImageDrawCircleV
|
|
2235
|
+
Return type: void
|
|
2236
|
+
Description: Draw circle within an image (Vector version)
|
|
2237
|
+
Param[1]: dst (type: Image *)
|
|
2238
|
+
Param[2]: center (type: Vector2)
|
|
2239
|
+
Param[3]: radius (type: int)
|
|
2240
|
+
Param[4]: color (type: Color)
|
|
2241
|
+
Function 271: ImageDrawRectangle() (6 input parameters)
|
|
2242
|
+
Name: ImageDrawRectangle
|
|
2243
|
+
Return type: void
|
|
2244
|
+
Description: Draw rectangle within an image
|
|
2245
|
+
Param[1]: dst (type: Image *)
|
|
2246
|
+
Param[2]: posX (type: int)
|
|
2247
|
+
Param[3]: posY (type: int)
|
|
2248
|
+
Param[4]: width (type: int)
|
|
2249
|
+
Param[5]: height (type: int)
|
|
2250
|
+
Param[6]: color (type: Color)
|
|
2251
|
+
Function 272: ImageDrawRectangleV() (4 input parameters)
|
|
2252
|
+
Name: ImageDrawRectangleV
|
|
2253
|
+
Return type: void
|
|
2254
|
+
Description: Draw rectangle within an image (Vector version)
|
|
2255
|
+
Param[1]: dst (type: Image *)
|
|
2256
|
+
Param[2]: position (type: Vector2)
|
|
2257
|
+
Param[3]: size (type: Vector2)
|
|
2258
|
+
Param[4]: color (type: Color)
|
|
2259
|
+
Function 273: ImageDrawRectangleRec() (3 input parameters)
|
|
2260
|
+
Name: ImageDrawRectangleRec
|
|
2261
|
+
Return type: void
|
|
2262
|
+
Description: Draw rectangle within an image
|
|
2263
|
+
Param[1]: dst (type: Image *)
|
|
2264
|
+
Param[2]: rec (type: Rectangle)
|
|
2265
|
+
Param[3]: color (type: Color)
|
|
2266
|
+
Function 274: ImageDrawRectangleLines() (4 input parameters)
|
|
2267
|
+
Name: ImageDrawRectangleLines
|
|
2268
|
+
Return type: void
|
|
2269
|
+
Description: Draw rectangle lines within an image
|
|
2270
|
+
Param[1]: dst (type: Image *)
|
|
2271
|
+
Param[2]: rec (type: Rectangle)
|
|
2272
|
+
Param[3]: thick (type: int)
|
|
2273
|
+
Param[4]: color (type: Color)
|
|
2274
|
+
Function 275: ImageDraw() (5 input parameters)
|
|
2275
|
+
Name: ImageDraw
|
|
2276
|
+
Return type: void
|
|
2277
|
+
Description: Draw a source image within a destination image (tint applied to source)
|
|
2278
|
+
Param[1]: dst (type: Image *)
|
|
2279
|
+
Param[2]: src (type: Image)
|
|
2280
|
+
Param[3]: srcRec (type: Rectangle)
|
|
2281
|
+
Param[4]: dstRec (type: Rectangle)
|
|
2282
|
+
Param[5]: tint (type: Color)
|
|
2283
|
+
Function 276: ImageDrawText() (6 input parameters)
|
|
2284
|
+
Name: ImageDrawText
|
|
2285
|
+
Return type: void
|
|
2286
|
+
Description: Draw text (using default font) within an image (destination)
|
|
2287
|
+
Param[1]: dst (type: Image *)
|
|
2288
|
+
Param[2]: text (type: const char *)
|
|
2289
|
+
Param[3]: posX (type: int)
|
|
2290
|
+
Param[4]: posY (type: int)
|
|
2291
|
+
Param[5]: fontSize (type: int)
|
|
2292
|
+
Param[6]: color (type: Color)
|
|
2293
|
+
Function 277: ImageDrawTextEx() (7 input parameters)
|
|
2294
|
+
Name: ImageDrawTextEx
|
|
2295
|
+
Return type: void
|
|
2296
|
+
Description: Draw text (custom sprite font) within an image (destination)
|
|
2297
|
+
Param[1]: dst (type: Image *)
|
|
2298
|
+
Param[2]: font (type: Font)
|
|
2299
|
+
Param[3]: text (type: const char *)
|
|
2300
|
+
Param[4]: position (type: Vector2)
|
|
2301
|
+
Param[5]: fontSize (type: float)
|
|
2302
|
+
Param[6]: spacing (type: float)
|
|
2303
|
+
Param[7]: tint (type: Color)
|
|
2304
|
+
Function 278: LoadTexture() (1 input parameters)
|
|
2305
|
+
Name: LoadTexture
|
|
2306
|
+
Return type: Texture2D
|
|
2307
|
+
Description: Load texture from file into GPU memory (VRAM)
|
|
2308
|
+
Param[1]: fileName (type: const char *)
|
|
2309
|
+
Function 279: LoadTextureFromImage() (1 input parameters)
|
|
2310
|
+
Name: LoadTextureFromImage
|
|
2311
|
+
Return type: Texture2D
|
|
2312
|
+
Description: Load texture from image data
|
|
2313
|
+
Param[1]: image (type: Image)
|
|
2314
|
+
Function 280: LoadTextureCubemap() (2 input parameters)
|
|
2315
|
+
Name: LoadTextureCubemap
|
|
2316
|
+
Return type: TextureCubemap
|
|
2317
|
+
Description: Load cubemap from image, multiple image cubemap layouts supported
|
|
2318
|
+
Param[1]: image (type: Image)
|
|
2319
|
+
Param[2]: layout (type: int)
|
|
2320
|
+
Function 281: LoadRenderTexture() (2 input parameters)
|
|
2321
|
+
Name: LoadRenderTexture
|
|
2322
|
+
Return type: RenderTexture2D
|
|
2323
|
+
Description: Load texture for rendering (framebuffer)
|
|
2324
|
+
Param[1]: width (type: int)
|
|
2325
|
+
Param[2]: height (type: int)
|
|
2326
|
+
Function 282: UnloadTexture() (1 input parameters)
|
|
2327
|
+
Name: UnloadTexture
|
|
2328
|
+
Return type: void
|
|
2329
|
+
Description: Unload texture from GPU memory (VRAM)
|
|
2330
|
+
Param[1]: texture (type: Texture2D)
|
|
2331
|
+
Function 283: UnloadRenderTexture() (1 input parameters)
|
|
2332
|
+
Name: UnloadRenderTexture
|
|
2333
|
+
Return type: void
|
|
2334
|
+
Description: Unload render texture from GPU memory (VRAM)
|
|
2335
|
+
Param[1]: target (type: RenderTexture2D)
|
|
2336
|
+
Function 284: UpdateTexture() (2 input parameters)
|
|
2337
|
+
Name: UpdateTexture
|
|
2338
|
+
Return type: void
|
|
2339
|
+
Description: Update GPU texture with new data
|
|
2340
|
+
Param[1]: texture (type: Texture2D)
|
|
2341
|
+
Param[2]: pixels (type: const void *)
|
|
2342
|
+
Function 285: UpdateTextureRec() (3 input parameters)
|
|
2343
|
+
Name: UpdateTextureRec
|
|
2344
|
+
Return type: void
|
|
2345
|
+
Description: Update GPU texture rectangle with new data
|
|
2346
|
+
Param[1]: texture (type: Texture2D)
|
|
2347
|
+
Param[2]: rec (type: Rectangle)
|
|
2348
|
+
Param[3]: pixels (type: const void *)
|
|
2349
|
+
Function 286: GetTextureData() (1 input parameters)
|
|
2350
|
+
Name: GetTextureData
|
|
2351
|
+
Return type: Image
|
|
2352
|
+
Description: Get pixel data from GPU texture and return an Image
|
|
2353
|
+
Param[1]: texture (type: Texture2D)
|
|
2354
|
+
Function 287: GetScreenData() (0 input parameters)
|
|
2355
|
+
Name: GetScreenData
|
|
2356
|
+
Return type: Image
|
|
2357
|
+
Description: Get pixel data from screen buffer and return an Image (screenshot)
|
|
2358
|
+
No input parameters
|
|
2359
|
+
Function 288: GenTextureMipmaps() (1 input parameters)
|
|
2360
|
+
Name: GenTextureMipmaps
|
|
2361
|
+
Return type: void
|
|
2362
|
+
Description: Generate GPU mipmaps for a texture
|
|
2363
|
+
Param[1]: texture (type: Texture2D *)
|
|
2364
|
+
Function 289: SetTextureFilter() (2 input parameters)
|
|
2365
|
+
Name: SetTextureFilter
|
|
2366
|
+
Return type: void
|
|
2367
|
+
Description: Set texture scaling filter mode
|
|
2368
|
+
Param[1]: texture (type: Texture2D)
|
|
2369
|
+
Param[2]: filter (type: int)
|
|
2370
|
+
Function 290: SetTextureWrap() (2 input parameters)
|
|
2371
|
+
Name: SetTextureWrap
|
|
2372
|
+
Return type: void
|
|
2373
|
+
Description: Set texture wrapping mode
|
|
2374
|
+
Param[1]: texture (type: Texture2D)
|
|
2375
|
+
Param[2]: wrap (type: int)
|
|
2376
|
+
Function 291: DrawTexture() (4 input parameters)
|
|
2377
|
+
Name: DrawTexture
|
|
2378
|
+
Return type: void
|
|
2379
|
+
Description: Draw a Texture2D
|
|
2380
|
+
Param[1]: texture (type: Texture2D)
|
|
2381
|
+
Param[2]: posX (type: int)
|
|
2382
|
+
Param[3]: posY (type: int)
|
|
2383
|
+
Param[4]: tint (type: Color)
|
|
2384
|
+
Function 292: DrawTextureV() (3 input parameters)
|
|
2385
|
+
Name: DrawTextureV
|
|
2386
|
+
Return type: void
|
|
2387
|
+
Description: Draw a Texture2D with position defined as Vector2
|
|
2388
|
+
Param[1]: texture (type: Texture2D)
|
|
2389
|
+
Param[2]: position (type: Vector2)
|
|
2390
|
+
Param[3]: tint (type: Color)
|
|
2391
|
+
Function 293: DrawTextureEx() (5 input parameters)
|
|
2392
|
+
Name: DrawTextureEx
|
|
2393
|
+
Return type: void
|
|
2394
|
+
Description: Draw a Texture2D with extended parameters
|
|
2395
|
+
Param[1]: texture (type: Texture2D)
|
|
2396
|
+
Param[2]: position (type: Vector2)
|
|
2397
|
+
Param[3]: rotation (type: float)
|
|
2398
|
+
Param[4]: scale (type: float)
|
|
2399
|
+
Param[5]: tint (type: Color)
|
|
2400
|
+
Function 294: DrawTextureRec() (4 input parameters)
|
|
2401
|
+
Name: DrawTextureRec
|
|
2402
|
+
Return type: void
|
|
2403
|
+
Description: Draw a part of a texture defined by a rectangle
|
|
2404
|
+
Param[1]: texture (type: Texture2D)
|
|
2405
|
+
Param[2]: source (type: Rectangle)
|
|
2406
|
+
Param[3]: position (type: Vector2)
|
|
2407
|
+
Param[4]: tint (type: Color)
|
|
2408
|
+
Function 295: DrawTextureQuad() (5 input parameters)
|
|
2409
|
+
Name: DrawTextureQuad
|
|
2410
|
+
Return type: void
|
|
2411
|
+
Description: Draw texture quad with tiling and offset parameters
|
|
2412
|
+
Param[1]: texture (type: Texture2D)
|
|
2413
|
+
Param[2]: tiling (type: Vector2)
|
|
2414
|
+
Param[3]: offset (type: Vector2)
|
|
2415
|
+
Param[4]: quad (type: Rectangle)
|
|
2416
|
+
Param[5]: tint (type: Color)
|
|
2417
|
+
Function 296: DrawTextureTiled() (7 input parameters)
|
|
2418
|
+
Name: DrawTextureTiled
|
|
2419
|
+
Return type: void
|
|
2420
|
+
Description: Draw part of a texture (defined by a rectangle) with rotation and scale tiled into dest.
|
|
2421
|
+
Param[1]: texture (type: Texture2D)
|
|
2422
|
+
Param[2]: source (type: Rectangle)
|
|
2423
|
+
Param[3]: dest (type: Rectangle)
|
|
2424
|
+
Param[4]: origin (type: Vector2)
|
|
2425
|
+
Param[5]: rotation (type: float)
|
|
2426
|
+
Param[6]: scale (type: float)
|
|
2427
|
+
Param[7]: tint (type: Color)
|
|
2428
|
+
Function 297: DrawTexturePro() (6 input parameters)
|
|
2429
|
+
Name: DrawTexturePro
|
|
2430
|
+
Return type: void
|
|
2431
|
+
Description: Draw a part of a texture defined by a rectangle with 'pro' parameters
|
|
2432
|
+
Param[1]: texture (type: Texture2D)
|
|
2433
|
+
Param[2]: source (type: Rectangle)
|
|
2434
|
+
Param[3]: dest (type: Rectangle)
|
|
2435
|
+
Param[4]: origin (type: Vector2)
|
|
2436
|
+
Param[5]: rotation (type: float)
|
|
2437
|
+
Param[6]: tint (type: Color)
|
|
2438
|
+
Function 298: DrawTextureNPatch() (6 input parameters)
|
|
2439
|
+
Name: DrawTextureNPatch
|
|
2440
|
+
Return type: void
|
|
2441
|
+
Description: Draws a texture (or part of it) that stretches or shrinks nicely
|
|
2442
|
+
Param[1]: texture (type: Texture2D)
|
|
2443
|
+
Param[2]: nPatchInfo (type: NPatchInfo)
|
|
2444
|
+
Param[3]: dest (type: Rectangle)
|
|
2445
|
+
Param[4]: origin (type: Vector2)
|
|
2446
|
+
Param[5]: rotation (type: float)
|
|
2447
|
+
Param[6]: tint (type: Color)
|
|
2448
|
+
Function 299: DrawTexturePoly() (6 input parameters)
|
|
2449
|
+
Name: DrawTexturePoly
|
|
2450
|
+
Return type: void
|
|
2451
|
+
Description: Draw a textured polygon
|
|
2452
|
+
Param[1]: texture (type: Texture2D)
|
|
2453
|
+
Param[2]: center (type: Vector2)
|
|
2454
|
+
Param[3]: points (type: Vector2 *)
|
|
2455
|
+
Param[4]: texcoords (type: Vector2 *)
|
|
2456
|
+
Param[5]: pointsCount (type: int)
|
|
2457
|
+
Param[6]: tint (type: Color)
|
|
2458
|
+
Function 300: Fade() (2 input parameters)
|
|
2459
|
+
Name: Fade
|
|
2460
|
+
Return type: Color
|
|
2461
|
+
Description: Get color with alpha applied, alpha goes from 0.0f to 1.0f
|
|
2462
|
+
Param[1]: color (type: Color)
|
|
2463
|
+
Param[2]: alpha (type: float)
|
|
2464
|
+
Function 301: ColorToInt() (1 input parameters)
|
|
2465
|
+
Name: ColorToInt
|
|
2466
|
+
Return type: int
|
|
2467
|
+
Description: Get hexadecimal value for a Color
|
|
2468
|
+
Param[1]: color (type: Color)
|
|
2469
|
+
Function 302: ColorNormalize() (1 input parameters)
|
|
2470
|
+
Name: ColorNormalize
|
|
2471
|
+
Return type: Vector4
|
|
2472
|
+
Description: Get Color normalized as float [0..1]
|
|
2473
|
+
Param[1]: color (type: Color)
|
|
2474
|
+
Function 303: ColorFromNormalized() (1 input parameters)
|
|
2475
|
+
Name: ColorFromNormalized
|
|
2476
|
+
Return type: Color
|
|
2477
|
+
Description: Get Color from normalized values [0..1]
|
|
2478
|
+
Param[1]: normalized (type: Vector4)
|
|
2479
|
+
Function 304: ColorToHSV() (1 input parameters)
|
|
2480
|
+
Name: ColorToHSV
|
|
2481
|
+
Return type: Vector3
|
|
2482
|
+
Description: Get HSV values for a Color, hue [0..360], saturation/value [0..1]
|
|
2483
|
+
Param[1]: color (type: Color)
|
|
2484
|
+
Function 305: ColorFromHSV() (3 input parameters)
|
|
2485
|
+
Name: ColorFromHSV
|
|
2486
|
+
Return type: Color
|
|
2487
|
+
Description: Get a Color from HSV values, hue [0..360], saturation/value [0..1]
|
|
2488
|
+
Param[1]: hue (type: float)
|
|
2489
|
+
Param[2]: saturation (type: float)
|
|
2490
|
+
Param[3]: value (type: float)
|
|
2491
|
+
Function 306: ColorAlpha() (2 input parameters)
|
|
2492
|
+
Name: ColorAlpha
|
|
2493
|
+
Return type: Color
|
|
2494
|
+
Description: Get color with alpha applied, alpha goes from 0.0f to 1.0f
|
|
2495
|
+
Param[1]: color (type: Color)
|
|
2496
|
+
Param[2]: alpha (type: float)
|
|
2497
|
+
Function 307: ColorAlphaBlend() (3 input parameters)
|
|
2498
|
+
Name: ColorAlphaBlend
|
|
2499
|
+
Return type: Color
|
|
2500
|
+
Description: Get src alpha-blended into dst color with tint
|
|
2501
|
+
Param[1]: dst (type: Color)
|
|
2502
|
+
Param[2]: src (type: Color)
|
|
2503
|
+
Param[3]: tint (type: Color)
|
|
2504
|
+
Function 308: GetColor() (1 input parameters)
|
|
2505
|
+
Name: GetColor
|
|
2506
|
+
Return type: Color
|
|
2507
|
+
Description: Get Color structure from hexadecimal value
|
|
2508
|
+
Param[1]: hexValue (type: unsigned int)
|
|
2509
|
+
Function 309: GetPixelColor() (2 input parameters)
|
|
2510
|
+
Name: GetPixelColor
|
|
2511
|
+
Return type: Color
|
|
2512
|
+
Description: Get Color from a source pixel pointer of certain format
|
|
2513
|
+
Param[1]: srcPtr (type: void *)
|
|
2514
|
+
Param[2]: format (type: int)
|
|
2515
|
+
Function 310: SetPixelColor() (3 input parameters)
|
|
2516
|
+
Name: SetPixelColor
|
|
2517
|
+
Return type: void
|
|
2518
|
+
Description: Set color formatted into destination pixel pointer
|
|
2519
|
+
Param[1]: dstPtr (type: void *)
|
|
2520
|
+
Param[2]: color (type: Color)
|
|
2521
|
+
Param[3]: format (type: int)
|
|
2522
|
+
Function 311: GetPixelDataSize() (3 input parameters)
|
|
2523
|
+
Name: GetPixelDataSize
|
|
2524
|
+
Return type: int
|
|
2525
|
+
Description: Get pixel data size in bytes for certain format
|
|
2526
|
+
Param[1]: width (type: int)
|
|
2527
|
+
Param[2]: height (type: int)
|
|
2528
|
+
Param[3]: format (type: int)
|
|
2529
|
+
Function 312: GetFontDefault() (0 input parameters)
|
|
2530
|
+
Name: GetFontDefault
|
|
2531
|
+
Return type: Font
|
|
2532
|
+
Description: Get the default Font
|
|
2533
|
+
No input parameters
|
|
2534
|
+
Function 313: LoadFont() (1 input parameters)
|
|
2535
|
+
Name: LoadFont
|
|
2536
|
+
Return type: Font
|
|
2537
|
+
Description: Load font from file into GPU memory (VRAM)
|
|
2538
|
+
Param[1]: fileName (type: const char *)
|
|
2539
|
+
Function 314: LoadFontEx() (4 input parameters)
|
|
2540
|
+
Name: LoadFontEx
|
|
2541
|
+
Return type: Font
|
|
2542
|
+
Description: Load font from file with extended parameters
|
|
2543
|
+
Param[1]: fileName (type: const char *)
|
|
2544
|
+
Param[2]: fontSize (type: int)
|
|
2545
|
+
Param[3]: fontChars (type: int *)
|
|
2546
|
+
Param[4]: charsCount (type: int)
|
|
2547
|
+
Function 315: LoadFontFromImage() (3 input parameters)
|
|
2548
|
+
Name: LoadFontFromImage
|
|
2549
|
+
Return type: Font
|
|
2550
|
+
Description: Load font from Image (XNA style)
|
|
2551
|
+
Param[1]: image (type: Image)
|
|
2552
|
+
Param[2]: key (type: Color)
|
|
2553
|
+
Param[3]: firstChar (type: int)
|
|
2554
|
+
Function 316: LoadFontFromMemory() (6 input parameters)
|
|
2555
|
+
Name: LoadFontFromMemory
|
|
2556
|
+
Return type: Font
|
|
2557
|
+
Description: Load font from memory buffer, fileType refers to extension: i.e. '.ttf'
|
|
2558
|
+
Param[1]: fileType (type: const char *)
|
|
2559
|
+
Param[2]: fileData (type: const unsigned char *)
|
|
2560
|
+
Param[3]: dataSize (type: int)
|
|
2561
|
+
Param[4]: fontSize (type: int)
|
|
2562
|
+
Param[5]: fontChars (type: int *)
|
|
2563
|
+
Param[6]: charsCount (type: int)
|
|
2564
|
+
Function 317: LoadFontData() (6 input parameters)
|
|
2565
|
+
Name: LoadFontData
|
|
2566
|
+
Return type: CharInfo *
|
|
2567
|
+
Description: Load font data for further use
|
|
2568
|
+
Param[1]: fileData (type: const unsigned char *)
|
|
2569
|
+
Param[2]: dataSize (type: int)
|
|
2570
|
+
Param[3]: fontSize (type: int)
|
|
2571
|
+
Param[4]: fontChars (type: int *)
|
|
2572
|
+
Param[5]: charsCount (type: int)
|
|
2573
|
+
Param[6]: type (type: int)
|
|
2574
|
+
Function 318: GenImageFontAtlas() (6 input parameters)
|
|
2575
|
+
Name: GenImageFontAtlas
|
|
2576
|
+
Return type: Image
|
|
2577
|
+
Description: Generate image font atlas using chars info
|
|
2578
|
+
Param[1]: chars (type: const CharInfo *)
|
|
2579
|
+
Param[2]: recs (type: Rectangle **)
|
|
2580
|
+
Param[3]: charsCount (type: int)
|
|
2581
|
+
Param[4]: fontSize (type: int)
|
|
2582
|
+
Param[5]: padding (type: int)
|
|
2583
|
+
Param[6]: packMethod (type: int)
|
|
2584
|
+
Function 319: UnloadFontData() (2 input parameters)
|
|
2585
|
+
Name: UnloadFontData
|
|
2586
|
+
Return type: void
|
|
2587
|
+
Description: Unload font chars info data (RAM)
|
|
2588
|
+
Param[1]: chars (type: CharInfo *)
|
|
2589
|
+
Param[2]: charsCount (type: int)
|
|
2590
|
+
Function 320: UnloadFont() (1 input parameters)
|
|
2591
|
+
Name: UnloadFont
|
|
2592
|
+
Return type: void
|
|
2593
|
+
Description: Unload Font from GPU memory (VRAM)
|
|
2594
|
+
Param[1]: font (type: Font)
|
|
2595
|
+
Function 321: DrawFPS() (2 input parameters)
|
|
2596
|
+
Name: DrawFPS
|
|
2597
|
+
Return type: void
|
|
2598
|
+
Description: Draw current FPS
|
|
2599
|
+
Param[1]: posX (type: int)
|
|
2600
|
+
Param[2]: posY (type: int)
|
|
2601
|
+
Function 322: DrawText() (5 input parameters)
|
|
2602
|
+
Name: DrawText
|
|
2603
|
+
Return type: void
|
|
2604
|
+
Description: Draw text (using default font)
|
|
2605
|
+
Param[1]: text (type: const char *)
|
|
2606
|
+
Param[2]: posX (type: int)
|
|
2607
|
+
Param[3]: posY (type: int)
|
|
2608
|
+
Param[4]: fontSize (type: int)
|
|
2609
|
+
Param[5]: color (type: Color)
|
|
2610
|
+
Function 323: DrawTextEx() (6 input parameters)
|
|
2611
|
+
Name: DrawTextEx
|
|
2612
|
+
Return type: void
|
|
2613
|
+
Description: Draw text using font and additional parameters
|
|
2614
|
+
Param[1]: font (type: Font)
|
|
2615
|
+
Param[2]: text (type: const char *)
|
|
2616
|
+
Param[3]: position (type: Vector2)
|
|
2617
|
+
Param[4]: fontSize (type: float)
|
|
2618
|
+
Param[5]: spacing (type: float)
|
|
2619
|
+
Param[6]: tint (type: Color)
|
|
2620
|
+
Function 324: DrawTextRec() (7 input parameters)
|
|
2621
|
+
Name: DrawTextRec
|
|
2622
|
+
Return type: void
|
|
2623
|
+
Description: Draw text using font inside rectangle limits
|
|
2624
|
+
Param[1]: font (type: Font)
|
|
2625
|
+
Param[2]: text (type: const char *)
|
|
2626
|
+
Param[3]: rec (type: Rectangle)
|
|
2627
|
+
Param[4]: fontSize (type: float)
|
|
2628
|
+
Param[5]: spacing (type: float)
|
|
2629
|
+
Param[6]: wordWrap (type: bool)
|
|
2630
|
+
Param[7]: tint (type: Color)
|
|
2631
|
+
Function 325: DrawTextRecEx() (11 input parameters)
|
|
2632
|
+
Name: DrawTextRecEx
|
|
2633
|
+
Return type: void
|
|
2634
|
+
Description: Draw text using font inside rectangle limits with support for text selection
|
|
2635
|
+
Param[1]: font (type: Font)
|
|
2636
|
+
Param[2]: text (type: const char *)
|
|
2637
|
+
Param[3]: rec (type: Rectangle)
|
|
2638
|
+
Param[4]: fontSize (type: float)
|
|
2639
|
+
Param[5]: spacing (type: float)
|
|
2640
|
+
Param[6]: wordWrap (type: bool)
|
|
2641
|
+
Param[7]: tint (type: Color)
|
|
2642
|
+
Param[8]: selectStart (type: int)
|
|
2643
|
+
Param[9]: selectLength (type: int)
|
|
2644
|
+
Param[10]: selectTint (type: Color)
|
|
2645
|
+
Param[11]: selectBackTint (type: Color)
|
|
2646
|
+
Function 326: DrawTextCodepoint() (5 input parameters)
|
|
2647
|
+
Name: DrawTextCodepoint
|
|
2648
|
+
Return type: void
|
|
2649
|
+
Description: Draw one character (codepoint)
|
|
2650
|
+
Param[1]: font (type: Font)
|
|
2651
|
+
Param[2]: codepoint (type: int)
|
|
2652
|
+
Param[3]: position (type: Vector2)
|
|
2653
|
+
Param[4]: fontSize (type: float)
|
|
2654
|
+
Param[5]: tint (type: Color)
|
|
2655
|
+
Function 327: MeasureText() (2 input parameters)
|
|
2656
|
+
Name: MeasureText
|
|
2657
|
+
Return type: int
|
|
2658
|
+
Description: Measure string width for default font
|
|
2659
|
+
Param[1]: text (type: const char *)
|
|
2660
|
+
Param[2]: fontSize (type: int)
|
|
2661
|
+
Function 328: MeasureTextEx() (4 input parameters)
|
|
2662
|
+
Name: MeasureTextEx
|
|
2663
|
+
Return type: Vector2
|
|
2664
|
+
Description: Measure string size for Font
|
|
2665
|
+
Param[1]: font (type: Font)
|
|
2666
|
+
Param[2]: text (type: const char *)
|
|
2667
|
+
Param[3]: fontSize (type: float)
|
|
2668
|
+
Param[4]: spacing (type: float)
|
|
2669
|
+
Function 329: GetGlyphIndex() (2 input parameters)
|
|
2670
|
+
Name: GetGlyphIndex
|
|
2671
|
+
Return type: int
|
|
2672
|
+
Description: Get index position for a unicode character on font
|
|
2673
|
+
Param[1]: font (type: Font)
|
|
2674
|
+
Param[2]: codepoint (type: int)
|
|
2675
|
+
Function 330: TextCopy() (2 input parameters)
|
|
2676
|
+
Name: TextCopy
|
|
2677
|
+
Return type: int
|
|
2678
|
+
Description: Copy one string to another, returns bytes copied
|
|
2679
|
+
Param[1]: dst (type: char *)
|
|
2680
|
+
Param[2]: src (type: const char *)
|
|
2681
|
+
Function 331: TextIsEqual() (2 input parameters)
|
|
2682
|
+
Name: TextIsEqual
|
|
2683
|
+
Return type: bool
|
|
2684
|
+
Description: Check if two text string are equal
|
|
2685
|
+
Param[1]: text1 (type: const char *)
|
|
2686
|
+
Param[2]: text2 (type: const char *)
|
|
2687
|
+
Function 332: TextLength() (1 input parameters)
|
|
2688
|
+
Name: TextLength
|
|
2689
|
+
Return type: unsigned int
|
|
2690
|
+
Description: Get text length, checks for '\0' ending
|
|
2691
|
+
Param[1]: text (type: const char *)
|
|
2692
|
+
Function 333: TextFormat() (2 input parameters)
|
|
2693
|
+
Name: TextFormat
|
|
2694
|
+
Return type: const char *
|
|
2695
|
+
Description: Text formatting with variables (sprintf style)
|
|
2696
|
+
Param[1]: text (type: const char *)
|
|
2697
|
+
Param[2]: (type: )
|
|
2698
|
+
Function 334: TextSubtext() (3 input parameters)
|
|
2699
|
+
Name: TextSubtext
|
|
2700
|
+
Return type: const char *
|
|
2701
|
+
Description: Get a piece of a text string
|
|
2702
|
+
Param[1]: text (type: const char *)
|
|
2703
|
+
Param[2]: position (type: int)
|
|
2704
|
+
Param[3]: length (type: int)
|
|
2705
|
+
Function 335: TextReplace() (3 input parameters)
|
|
2706
|
+
Name: TextReplace
|
|
2707
|
+
Return type: char *
|
|
2708
|
+
Description: Replace text string (memory must be freed!)
|
|
2709
|
+
Param[1]: text (type: char *)
|
|
2710
|
+
Param[2]: replace (type: const char *)
|
|
2711
|
+
Param[3]: by (type: const char *)
|
|
2712
|
+
Function 336: TextInsert() (3 input parameters)
|
|
2713
|
+
Name: TextInsert
|
|
2714
|
+
Return type: char *
|
|
2715
|
+
Description: Insert text in a position (memory must be freed!)
|
|
2716
|
+
Param[1]: text (type: const char *)
|
|
2717
|
+
Param[2]: insert (type: const char *)
|
|
2718
|
+
Param[3]: position (type: int)
|
|
2719
|
+
Function 337: TextJoin() (3 input parameters)
|
|
2720
|
+
Name: TextJoin
|
|
2721
|
+
Return type: const char *
|
|
2722
|
+
Description: Join text strings with delimiter
|
|
2723
|
+
Param[1]: textList (type: const char **)
|
|
2724
|
+
Param[2]: count (type: int)
|
|
2725
|
+
Param[3]: delimiter (type: const char *)
|
|
2726
|
+
Function 338: TextSplit() (3 input parameters)
|
|
2727
|
+
Name: TextSplit
|
|
2728
|
+
Return type: const char **
|
|
2729
|
+
Description: Split text into multiple strings
|
|
2730
|
+
Param[1]: text (type: const char *)
|
|
2731
|
+
Param[2]: delimiter (type: char)
|
|
2732
|
+
Param[3]: count (type: int *)
|
|
2733
|
+
Function 339: TextAppend() (3 input parameters)
|
|
2734
|
+
Name: TextAppend
|
|
2735
|
+
Return type: void
|
|
2736
|
+
Description: Append text at specific position and move cursor!
|
|
2737
|
+
Param[1]: text (type: char *)
|
|
2738
|
+
Param[2]: append (type: const char *)
|
|
2739
|
+
Param[3]: position (type: int *)
|
|
2740
|
+
Function 340: TextFindIndex() (2 input parameters)
|
|
2741
|
+
Name: TextFindIndex
|
|
2742
|
+
Return type: int
|
|
2743
|
+
Description: Find first text occurrence within a string
|
|
2744
|
+
Param[1]: text (type: const char *)
|
|
2745
|
+
Param[2]: find (type: const char *)
|
|
2746
|
+
Function 341: TextToUpper() (1 input parameters)
|
|
2747
|
+
Name: TextToUpper
|
|
2748
|
+
Return type: const char *
|
|
2749
|
+
Description: Get upper case version of provided string
|
|
2750
|
+
Param[1]: text (type: const char *)
|
|
2751
|
+
Function 342: TextToLower() (1 input parameters)
|
|
2752
|
+
Name: TextToLower
|
|
2753
|
+
Return type: const char *
|
|
2754
|
+
Description: Get lower case version of provided string
|
|
2755
|
+
Param[1]: text (type: const char *)
|
|
2756
|
+
Function 343: TextToPascal() (1 input parameters)
|
|
2757
|
+
Name: TextToPascal
|
|
2758
|
+
Return type: const char *
|
|
2759
|
+
Description: Get Pascal case notation version of provided string
|
|
2760
|
+
Param[1]: text (type: const char *)
|
|
2761
|
+
Function 344: TextToInteger() (1 input parameters)
|
|
2762
|
+
Name: TextToInteger
|
|
2763
|
+
Return type: int
|
|
2764
|
+
Description: Get integer value from text (negative values not supported)
|
|
2765
|
+
Param[1]: text (type: const char *)
|
|
2766
|
+
Function 345: TextToUtf8() (2 input parameters)
|
|
2767
|
+
Name: TextToUtf8
|
|
2768
|
+
Return type: char *
|
|
2769
|
+
Description: Encode text codepoint into utf8 text (memory must be freed!)
|
|
2770
|
+
Param[1]: codepoints (type: int *)
|
|
2771
|
+
Param[2]: length (type: int)
|
|
2772
|
+
Function 346: GetCodepoints() (2 input parameters)
|
|
2773
|
+
Name: GetCodepoints
|
|
2774
|
+
Return type: int *
|
|
2775
|
+
Description: Get all codepoints in a string, codepoints count returned by parameters
|
|
2776
|
+
Param[1]: text (type: const char *)
|
|
2777
|
+
Param[2]: count (type: int *)
|
|
2778
|
+
Function 347: GetCodepointsCount() (1 input parameters)
|
|
2779
|
+
Name: GetCodepointsCount
|
|
2780
|
+
Return type: int
|
|
2781
|
+
Description: Get total number of characters (codepoints) in a UTF8 encoded string
|
|
2782
|
+
Param[1]: text (type: const char *)
|
|
2783
|
+
Function 348: GetNextCodepoint() (2 input parameters)
|
|
2784
|
+
Name: GetNextCodepoint
|
|
2785
|
+
Return type: int
|
|
2786
|
+
Description: Get next codepoint in a UTF8 encoded string; 0x3f('?') is returned on failure
|
|
2787
|
+
Param[1]: text (type: const char *)
|
|
2788
|
+
Param[2]: bytesProcessed (type: int *)
|
|
2789
|
+
Function 349: CodepointToUtf8() (2 input parameters)
|
|
2790
|
+
Name: CodepointToUtf8
|
|
2791
|
+
Return type: const char *
|
|
2792
|
+
Description: Encode codepoint into utf8 text (char array length returned as parameter)
|
|
2793
|
+
Param[1]: codepoint (type: int)
|
|
2794
|
+
Param[2]: byteLength (type: int *)
|
|
2795
|
+
Function 350: DrawLine3D() (3 input parameters)
|
|
2796
|
+
Name: DrawLine3D
|
|
2797
|
+
Return type: void
|
|
2798
|
+
Description: Draw a line in 3D world space
|
|
2799
|
+
Param[1]: startPos (type: Vector3)
|
|
2800
|
+
Param[2]: endPos (type: Vector3)
|
|
2801
|
+
Param[3]: color (type: Color)
|
|
2802
|
+
Function 351: DrawPoint3D() (2 input parameters)
|
|
2803
|
+
Name: DrawPoint3D
|
|
2804
|
+
Return type: void
|
|
2805
|
+
Description: Draw a point in 3D space, actually a small line
|
|
2806
|
+
Param[1]: position (type: Vector3)
|
|
2807
|
+
Param[2]: color (type: Color)
|
|
2808
|
+
Function 352: DrawCircle3D() (5 input parameters)
|
|
2809
|
+
Name: DrawCircle3D
|
|
2810
|
+
Return type: void
|
|
2811
|
+
Description: Draw a circle in 3D world space
|
|
2812
|
+
Param[1]: center (type: Vector3)
|
|
2813
|
+
Param[2]: radius (type: float)
|
|
2814
|
+
Param[3]: rotationAxis (type: Vector3)
|
|
2815
|
+
Param[4]: rotationAngle (type: float)
|
|
2816
|
+
Param[5]: color (type: Color)
|
|
2817
|
+
Function 353: DrawTriangle3D() (4 input parameters)
|
|
2818
|
+
Name: DrawTriangle3D
|
|
2819
|
+
Return type: void
|
|
2820
|
+
Description: Draw a color-filled triangle (vertex in counter-clockwise order!)
|
|
2821
|
+
Param[1]: v1 (type: Vector3)
|
|
2822
|
+
Param[2]: v2 (type: Vector3)
|
|
2823
|
+
Param[3]: v3 (type: Vector3)
|
|
2824
|
+
Param[4]: color (type: Color)
|
|
2825
|
+
Function 354: DrawTriangleStrip3D() (3 input parameters)
|
|
2826
|
+
Name: DrawTriangleStrip3D
|
|
2827
|
+
Return type: void
|
|
2828
|
+
Description: Draw a triangle strip defined by points
|
|
2829
|
+
Param[1]: points (type: Vector3 *)
|
|
2830
|
+
Param[2]: pointsCount (type: int)
|
|
2831
|
+
Param[3]: color (type: Color)
|
|
2832
|
+
Function 355: DrawCube() (5 input parameters)
|
|
2833
|
+
Name: DrawCube
|
|
2834
|
+
Return type: void
|
|
2835
|
+
Description: Draw cube
|
|
2836
|
+
Param[1]: position (type: Vector3)
|
|
2837
|
+
Param[2]: width (type: float)
|
|
2838
|
+
Param[3]: height (type: float)
|
|
2839
|
+
Param[4]: length (type: float)
|
|
2840
|
+
Param[5]: color (type: Color)
|
|
2841
|
+
Function 356: DrawCubeV() (3 input parameters)
|
|
2842
|
+
Name: DrawCubeV
|
|
2843
|
+
Return type: void
|
|
2844
|
+
Description: Draw cube (Vector version)
|
|
2845
|
+
Param[1]: position (type: Vector3)
|
|
2846
|
+
Param[2]: size (type: Vector3)
|
|
2847
|
+
Param[3]: color (type: Color)
|
|
2848
|
+
Function 357: DrawCubeWires() (5 input parameters)
|
|
2849
|
+
Name: DrawCubeWires
|
|
2850
|
+
Return type: void
|
|
2851
|
+
Description: Draw cube wires
|
|
2852
|
+
Param[1]: position (type: Vector3)
|
|
2853
|
+
Param[2]: width (type: float)
|
|
2854
|
+
Param[3]: height (type: float)
|
|
2855
|
+
Param[4]: length (type: float)
|
|
2856
|
+
Param[5]: color (type: Color)
|
|
2857
|
+
Function 358: DrawCubeWiresV() (3 input parameters)
|
|
2858
|
+
Name: DrawCubeWiresV
|
|
2859
|
+
Return type: void
|
|
2860
|
+
Description: Draw cube wires (Vector version)
|
|
2861
|
+
Param[1]: position (type: Vector3)
|
|
2862
|
+
Param[2]: size (type: Vector3)
|
|
2863
|
+
Param[3]: color (type: Color)
|
|
2864
|
+
Function 359: DrawCubeTexture() (6 input parameters)
|
|
2865
|
+
Name: DrawCubeTexture
|
|
2866
|
+
Return type: void
|
|
2867
|
+
Description: Draw cube textured
|
|
2868
|
+
Param[1]: texture (type: Texture2D)
|
|
2869
|
+
Param[2]: position (type: Vector3)
|
|
2870
|
+
Param[3]: width (type: float)
|
|
2871
|
+
Param[4]: height (type: float)
|
|
2872
|
+
Param[5]: length (type: float)
|
|
2873
|
+
Param[6]: color (type: Color)
|
|
2874
|
+
Function 360: DrawSphere() (3 input parameters)
|
|
2875
|
+
Name: DrawSphere
|
|
2876
|
+
Return type: void
|
|
2877
|
+
Description: Draw sphere
|
|
2878
|
+
Param[1]: centerPos (type: Vector3)
|
|
2879
|
+
Param[2]: radius (type: float)
|
|
2880
|
+
Param[3]: color (type: Color)
|
|
2881
|
+
Function 361: DrawSphereEx() (5 input parameters)
|
|
2882
|
+
Name: DrawSphereEx
|
|
2883
|
+
Return type: void
|
|
2884
|
+
Description: Draw sphere with extended parameters
|
|
2885
|
+
Param[1]: centerPos (type: Vector3)
|
|
2886
|
+
Param[2]: radius (type: float)
|
|
2887
|
+
Param[3]: rings (type: int)
|
|
2888
|
+
Param[4]: slices (type: int)
|
|
2889
|
+
Param[5]: color (type: Color)
|
|
2890
|
+
Function 362: DrawSphereWires() (5 input parameters)
|
|
2891
|
+
Name: DrawSphereWires
|
|
2892
|
+
Return type: void
|
|
2893
|
+
Description: Draw sphere wires
|
|
2894
|
+
Param[1]: centerPos (type: Vector3)
|
|
2895
|
+
Param[2]: radius (type: float)
|
|
2896
|
+
Param[3]: rings (type: int)
|
|
2897
|
+
Param[4]: slices (type: int)
|
|
2898
|
+
Param[5]: color (type: Color)
|
|
2899
|
+
Function 363: DrawCylinder() (6 input parameters)
|
|
2900
|
+
Name: DrawCylinder
|
|
2901
|
+
Return type: void
|
|
2902
|
+
Description: Draw a cylinder/cone
|
|
2903
|
+
Param[1]: position (type: Vector3)
|
|
2904
|
+
Param[2]: radiusTop (type: float)
|
|
2905
|
+
Param[3]: radiusBottom (type: float)
|
|
2906
|
+
Param[4]: height (type: float)
|
|
2907
|
+
Param[5]: slices (type: int)
|
|
2908
|
+
Param[6]: color (type: Color)
|
|
2909
|
+
Function 364: DrawCylinderWires() (6 input parameters)
|
|
2910
|
+
Name: DrawCylinderWires
|
|
2911
|
+
Return type: void
|
|
2912
|
+
Description: Draw a cylinder/cone wires
|
|
2913
|
+
Param[1]: position (type: Vector3)
|
|
2914
|
+
Param[2]: radiusTop (type: float)
|
|
2915
|
+
Param[3]: radiusBottom (type: float)
|
|
2916
|
+
Param[4]: height (type: float)
|
|
2917
|
+
Param[5]: slices (type: int)
|
|
2918
|
+
Param[6]: color (type: Color)
|
|
2919
|
+
Function 365: DrawPlane() (3 input parameters)
|
|
2920
|
+
Name: DrawPlane
|
|
2921
|
+
Return type: void
|
|
2922
|
+
Description: Draw a plane XZ
|
|
2923
|
+
Param[1]: centerPos (type: Vector3)
|
|
2924
|
+
Param[2]: size (type: Vector2)
|
|
2925
|
+
Param[3]: color (type: Color)
|
|
2926
|
+
Function 366: DrawRay() (2 input parameters)
|
|
2927
|
+
Name: DrawRay
|
|
2928
|
+
Return type: void
|
|
2929
|
+
Description: Draw a ray line
|
|
2930
|
+
Param[1]: ray (type: Ray)
|
|
2931
|
+
Param[2]: color (type: Color)
|
|
2932
|
+
Function 367: DrawGrid() (2 input parameters)
|
|
2933
|
+
Name: DrawGrid
|
|
2934
|
+
Return type: void
|
|
2935
|
+
Description: Draw a grid (centered at (0, 0, 0))
|
|
2936
|
+
Param[1]: slices (type: int)
|
|
2937
|
+
Param[2]: spacing (type: float)
|
|
2938
|
+
Function 368: LoadModel() (1 input parameters)
|
|
2939
|
+
Name: LoadModel
|
|
2940
|
+
Return type: Model
|
|
2941
|
+
Description: Load model from files (meshes and materials)
|
|
2942
|
+
Param[1]: fileName (type: const char *)
|
|
2943
|
+
Function 369: LoadModelFromMesh() (1 input parameters)
|
|
2944
|
+
Name: LoadModelFromMesh
|
|
2945
|
+
Return type: Model
|
|
2946
|
+
Description: Load model from generated mesh (default material)
|
|
2947
|
+
Param[1]: mesh (type: Mesh)
|
|
2948
|
+
Function 370: UnloadModel() (1 input parameters)
|
|
2949
|
+
Name: UnloadModel
|
|
2950
|
+
Return type: void
|
|
2951
|
+
Description: Unload model (including meshes) from memory (RAM and/or VRAM)
|
|
2952
|
+
Param[1]: model (type: Model)
|
|
2953
|
+
Function 371: UnloadModelKeepMeshes() (1 input parameters)
|
|
2954
|
+
Name: UnloadModelKeepMeshes
|
|
2955
|
+
Return type: void
|
|
2956
|
+
Description: Unload model (but not meshes) from memory (RAM and/or VRAM)
|
|
2957
|
+
Param[1]: model (type: Model)
|
|
2958
|
+
Function 372: UploadMesh() (2 input parameters)
|
|
2959
|
+
Name: UploadMesh
|
|
2960
|
+
Return type: void
|
|
2961
|
+
Description: Upload mesh vertex data in GPU and provide VAO/VBO ids
|
|
2962
|
+
Param[1]: mesh (type: Mesh *)
|
|
2963
|
+
Param[2]: dynamic (type: bool)
|
|
2964
|
+
Function 373: UpdateMeshBuffer() (5 input parameters)
|
|
2965
|
+
Name: UpdateMeshBuffer
|
|
2966
|
+
Return type: void
|
|
2967
|
+
Description: Update mesh vertex data in GPU for a specific buffer index
|
|
2968
|
+
Param[1]: mesh (type: Mesh)
|
|
2969
|
+
Param[2]: index (type: int)
|
|
2970
|
+
Param[3]: data (type: void *)
|
|
2971
|
+
Param[4]: dataSize (type: int)
|
|
2972
|
+
Param[5]: offset (type: int)
|
|
2973
|
+
Function 374: DrawMesh() (3 input parameters)
|
|
2974
|
+
Name: DrawMesh
|
|
2975
|
+
Return type: void
|
|
2976
|
+
Description: Draw a 3d mesh with material and transform
|
|
2977
|
+
Param[1]: mesh (type: Mesh)
|
|
2978
|
+
Param[2]: material (type: Material)
|
|
2979
|
+
Param[3]: transform (type: Matrix)
|
|
2980
|
+
Function 375: DrawMeshInstanced() (4 input parameters)
|
|
2981
|
+
Name: DrawMeshInstanced
|
|
2982
|
+
Return type: void
|
|
2983
|
+
Description: Draw multiple mesh instances with material and different transforms
|
|
2984
|
+
Param[1]: mesh (type: Mesh)
|
|
2985
|
+
Param[2]: material (type: Material)
|
|
2986
|
+
Param[3]: transforms (type: Matrix *)
|
|
2987
|
+
Param[4]: instances (type: int)
|
|
2988
|
+
Function 376: UnloadMesh() (1 input parameters)
|
|
2989
|
+
Name: UnloadMesh
|
|
2990
|
+
Return type: void
|
|
2991
|
+
Description: Unload mesh data from CPU and GPU
|
|
2992
|
+
Param[1]: mesh (type: Mesh)
|
|
2993
|
+
Function 377: ExportMesh() (2 input parameters)
|
|
2994
|
+
Name: ExportMesh
|
|
2995
|
+
Return type: bool
|
|
2996
|
+
Description: Export mesh data to file, returns true on success
|
|
2997
|
+
Param[1]: mesh (type: Mesh)
|
|
2998
|
+
Param[2]: fileName (type: const char *)
|
|
2999
|
+
Function 378: LoadMaterials() (2 input parameters)
|
|
3000
|
+
Name: LoadMaterials
|
|
3001
|
+
Return type: Material *
|
|
3002
|
+
Description: Load materials from model file
|
|
3003
|
+
Param[1]: fileName (type: const char *)
|
|
3004
|
+
Param[2]: materialCount (type: int *)
|
|
3005
|
+
Function 379: LoadMaterialDefault() (0 input parameters)
|
|
3006
|
+
Name: LoadMaterialDefault
|
|
3007
|
+
Return type: Material
|
|
3008
|
+
Description: Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps)
|
|
3009
|
+
No input parameters
|
|
3010
|
+
Function 380: UnloadMaterial() (1 input parameters)
|
|
3011
|
+
Name: UnloadMaterial
|
|
3012
|
+
Return type: void
|
|
3013
|
+
Description: Unload material from GPU memory (VRAM)
|
|
3014
|
+
Param[1]: material (type: Material)
|
|
3015
|
+
Function 381: SetMaterialTexture() (3 input parameters)
|
|
3016
|
+
Name: SetMaterialTexture
|
|
3017
|
+
Return type: void
|
|
3018
|
+
Description: Set texture for a material map type (MATERIAL_MAP_DIFFUSE, MATERIAL_MAP_SPECULAR...)
|
|
3019
|
+
Param[1]: material (type: Material *)
|
|
3020
|
+
Param[2]: mapType (type: int)
|
|
3021
|
+
Param[3]: texture (type: Texture2D)
|
|
3022
|
+
Function 382: SetModelMeshMaterial() (3 input parameters)
|
|
3023
|
+
Name: SetModelMeshMaterial
|
|
3024
|
+
Return type: void
|
|
3025
|
+
Description: Set material for a mesh
|
|
3026
|
+
Param[1]: model (type: Model *)
|
|
3027
|
+
Param[2]: meshId (type: int)
|
|
3028
|
+
Param[3]: materialId (type: int)
|
|
3029
|
+
Function 383: LoadModelAnimations() (2 input parameters)
|
|
3030
|
+
Name: LoadModelAnimations
|
|
3031
|
+
Return type: ModelAnimation *
|
|
3032
|
+
Description: Load model animations from file
|
|
3033
|
+
Param[1]: fileName (type: const char *)
|
|
3034
|
+
Param[2]: animsCount (type: int *)
|
|
3035
|
+
Function 384: UpdateModelAnimation() (3 input parameters)
|
|
3036
|
+
Name: UpdateModelAnimation
|
|
3037
|
+
Return type: void
|
|
3038
|
+
Description: Update model animation pose
|
|
3039
|
+
Param[1]: model (type: Model)
|
|
3040
|
+
Param[2]: anim (type: ModelAnimation)
|
|
3041
|
+
Param[3]: frame (type: int)
|
|
3042
|
+
Function 385: UnloadModelAnimation() (1 input parameters)
|
|
3043
|
+
Name: UnloadModelAnimation
|
|
3044
|
+
Return type: void
|
|
3045
|
+
Description: Unload animation data
|
|
3046
|
+
Param[1]: anim (type: ModelAnimation)
|
|
3047
|
+
Function 386: UnloadModelAnimations() (2 input parameters)
|
|
3048
|
+
Name: UnloadModelAnimations
|
|
3049
|
+
Return type: void
|
|
3050
|
+
Description: Unload animation array data
|
|
3051
|
+
Param[1]: animations (type: ModelAnimation*)
|
|
3052
|
+
Param[2]: count (type: unsigned int)
|
|
3053
|
+
Function 387: IsModelAnimationValid() (2 input parameters)
|
|
3054
|
+
Name: IsModelAnimationValid
|
|
3055
|
+
Return type: bool
|
|
3056
|
+
Description: Check model animation skeleton match
|
|
3057
|
+
Param[1]: model (type: Model)
|
|
3058
|
+
Param[2]: anim (type: ModelAnimation)
|
|
3059
|
+
Function 388: GenMeshPoly() (2 input parameters)
|
|
3060
|
+
Name: GenMeshPoly
|
|
3061
|
+
Return type: Mesh
|
|
3062
|
+
Description: Generate polygonal mesh
|
|
3063
|
+
Param[1]: sides (type: int)
|
|
3064
|
+
Param[2]: radius (type: float)
|
|
3065
|
+
Function 389: GenMeshPlane() (4 input parameters)
|
|
3066
|
+
Name: GenMeshPlane
|
|
3067
|
+
Return type: Mesh
|
|
3068
|
+
Description: Generate plane mesh (with subdivisions)
|
|
3069
|
+
Param[1]: width (type: float)
|
|
3070
|
+
Param[2]: length (type: float)
|
|
3071
|
+
Param[3]: resX (type: int)
|
|
3072
|
+
Param[4]: resZ (type: int)
|
|
3073
|
+
Function 390: GenMeshCube() (3 input parameters)
|
|
3074
|
+
Name: GenMeshCube
|
|
3075
|
+
Return type: Mesh
|
|
3076
|
+
Description: Generate cuboid mesh
|
|
3077
|
+
Param[1]: width (type: float)
|
|
3078
|
+
Param[2]: height (type: float)
|
|
3079
|
+
Param[3]: length (type: float)
|
|
3080
|
+
Function 391: GenMeshSphere() (3 input parameters)
|
|
3081
|
+
Name: GenMeshSphere
|
|
3082
|
+
Return type: Mesh
|
|
3083
|
+
Description: Generate sphere mesh (standard sphere)
|
|
3084
|
+
Param[1]: radius (type: float)
|
|
3085
|
+
Param[2]: rings (type: int)
|
|
3086
|
+
Param[3]: slices (type: int)
|
|
3087
|
+
Function 392: GenMeshHemiSphere() (3 input parameters)
|
|
3088
|
+
Name: GenMeshHemiSphere
|
|
3089
|
+
Return type: Mesh
|
|
3090
|
+
Description: Generate half-sphere mesh (no bottom cap)
|
|
3091
|
+
Param[1]: radius (type: float)
|
|
3092
|
+
Param[2]: rings (type: int)
|
|
3093
|
+
Param[3]: slices (type: int)
|
|
3094
|
+
Function 393: GenMeshCylinder() (3 input parameters)
|
|
3095
|
+
Name: GenMeshCylinder
|
|
3096
|
+
Return type: Mesh
|
|
3097
|
+
Description: Generate cylinder mesh
|
|
3098
|
+
Param[1]: radius (type: float)
|
|
3099
|
+
Param[2]: height (type: float)
|
|
3100
|
+
Param[3]: slices (type: int)
|
|
3101
|
+
Function 394: GenMeshTorus() (4 input parameters)
|
|
3102
|
+
Name: GenMeshTorus
|
|
3103
|
+
Return type: Mesh
|
|
3104
|
+
Description: Generate torus mesh
|
|
3105
|
+
Param[1]: radius (type: float)
|
|
3106
|
+
Param[2]: size (type: float)
|
|
3107
|
+
Param[3]: radSeg (type: int)
|
|
3108
|
+
Param[4]: sides (type: int)
|
|
3109
|
+
Function 395: GenMeshKnot() (4 input parameters)
|
|
3110
|
+
Name: GenMeshKnot
|
|
3111
|
+
Return type: Mesh
|
|
3112
|
+
Description: Generate trefoil knot mesh
|
|
3113
|
+
Param[1]: radius (type: float)
|
|
3114
|
+
Param[2]: size (type: float)
|
|
3115
|
+
Param[3]: radSeg (type: int)
|
|
3116
|
+
Param[4]: sides (type: int)
|
|
3117
|
+
Function 396: GenMeshHeightmap() (2 input parameters)
|
|
3118
|
+
Name: GenMeshHeightmap
|
|
3119
|
+
Return type: Mesh
|
|
3120
|
+
Description: Generate heightmap mesh from image data
|
|
3121
|
+
Param[1]: heightmap (type: Image)
|
|
3122
|
+
Param[2]: size (type: Vector3)
|
|
3123
|
+
Function 397: GenMeshCubicmap() (2 input parameters)
|
|
3124
|
+
Name: GenMeshCubicmap
|
|
3125
|
+
Return type: Mesh
|
|
3126
|
+
Description: Generate cubes-based map mesh from image data
|
|
3127
|
+
Param[1]: cubicmap (type: Image)
|
|
3128
|
+
Param[2]: cubeSize (type: Vector3)
|
|
3129
|
+
Function 398: GetMeshBoundingBox() (1 input parameters)
|
|
3130
|
+
Name: GetMeshBoundingBox
|
|
3131
|
+
Return type: BoundingBox
|
|
3132
|
+
Description: Compute mesh bounding box limits
|
|
3133
|
+
Param[1]: mesh (type: Mesh)
|
|
3134
|
+
Function 399: MeshTangents() (1 input parameters)
|
|
3135
|
+
Name: MeshTangents
|
|
3136
|
+
Return type: void
|
|
3137
|
+
Description: Compute mesh tangents
|
|
3138
|
+
Param[1]: mesh (type: Mesh *)
|
|
3139
|
+
Function 400: MeshBinormals() (1 input parameters)
|
|
3140
|
+
Name: MeshBinormals
|
|
3141
|
+
Return type: void
|
|
3142
|
+
Description: Compute mesh binormals
|
|
3143
|
+
Param[1]: mesh (type: Mesh *)
|
|
3144
|
+
Function 401: DrawModel() (4 input parameters)
|
|
3145
|
+
Name: DrawModel
|
|
3146
|
+
Return type: void
|
|
3147
|
+
Description: Draw a model (with texture if set)
|
|
3148
|
+
Param[1]: model (type: Model)
|
|
3149
|
+
Param[2]: position (type: Vector3)
|
|
3150
|
+
Param[3]: scale (type: float)
|
|
3151
|
+
Param[4]: tint (type: Color)
|
|
3152
|
+
Function 402: DrawModelEx() (6 input parameters)
|
|
3153
|
+
Name: DrawModelEx
|
|
3154
|
+
Return type: void
|
|
3155
|
+
Description: Draw a model with extended parameters
|
|
3156
|
+
Param[1]: model (type: Model)
|
|
3157
|
+
Param[2]: position (type: Vector3)
|
|
3158
|
+
Param[3]: rotationAxis (type: Vector3)
|
|
3159
|
+
Param[4]: rotationAngle (type: float)
|
|
3160
|
+
Param[5]: scale (type: Vector3)
|
|
3161
|
+
Param[6]: tint (type: Color)
|
|
3162
|
+
Function 403: DrawModelWires() (4 input parameters)
|
|
3163
|
+
Name: DrawModelWires
|
|
3164
|
+
Return type: void
|
|
3165
|
+
Description: Draw a model wires (with texture if set)
|
|
3166
|
+
Param[1]: model (type: Model)
|
|
3167
|
+
Param[2]: position (type: Vector3)
|
|
3168
|
+
Param[3]: scale (type: float)
|
|
3169
|
+
Param[4]: tint (type: Color)
|
|
3170
|
+
Function 404: DrawModelWiresEx() (6 input parameters)
|
|
3171
|
+
Name: DrawModelWiresEx
|
|
3172
|
+
Return type: void
|
|
3173
|
+
Description: Draw a model wires (with texture if set) with extended parameters
|
|
3174
|
+
Param[1]: model (type: Model)
|
|
3175
|
+
Param[2]: position (type: Vector3)
|
|
3176
|
+
Param[3]: rotationAxis (type: Vector3)
|
|
3177
|
+
Param[4]: rotationAngle (type: float)
|
|
3178
|
+
Param[5]: scale (type: Vector3)
|
|
3179
|
+
Param[6]: tint (type: Color)
|
|
3180
|
+
Function 405: DrawBoundingBox() (2 input parameters)
|
|
3181
|
+
Name: DrawBoundingBox
|
|
3182
|
+
Return type: void
|
|
3183
|
+
Description: Draw bounding box (wires)
|
|
3184
|
+
Param[1]: box (type: BoundingBox)
|
|
3185
|
+
Param[2]: color (type: Color)
|
|
3186
|
+
Function 406: DrawBillboard() (5 input parameters)
|
|
3187
|
+
Name: DrawBillboard
|
|
3188
|
+
Return type: void
|
|
3189
|
+
Description: Draw a billboard texture
|
|
3190
|
+
Param[1]: camera (type: Camera)
|
|
3191
|
+
Param[2]: texture (type: Texture2D)
|
|
3192
|
+
Param[3]: position (type: Vector3)
|
|
3193
|
+
Param[4]: size (type: float)
|
|
3194
|
+
Param[5]: tint (type: Color)
|
|
3195
|
+
Function 407: DrawBillboardRec() (6 input parameters)
|
|
3196
|
+
Name: DrawBillboardRec
|
|
3197
|
+
Return type: void
|
|
3198
|
+
Description: Draw a billboard texture defined by source
|
|
3199
|
+
Param[1]: camera (type: Camera)
|
|
3200
|
+
Param[2]: texture (type: Texture2D)
|
|
3201
|
+
Param[3]: source (type: Rectangle)
|
|
3202
|
+
Param[4]: position (type: Vector3)
|
|
3203
|
+
Param[5]: size (type: Vector2)
|
|
3204
|
+
Param[6]: tint (type: Color)
|
|
3205
|
+
Function 408: DrawBillboardPro() (8 input parameters)
|
|
3206
|
+
Name: DrawBillboardPro
|
|
3207
|
+
Return type: void
|
|
3208
|
+
Description: Draw a billboard texture defined by source and rotation
|
|
3209
|
+
Param[1]: camera (type: Camera)
|
|
3210
|
+
Param[2]: texture (type: Texture2D)
|
|
3211
|
+
Param[3]: source (type: Rectangle)
|
|
3212
|
+
Param[4]: position (type: Vector3)
|
|
3213
|
+
Param[5]: size (type: Vector2)
|
|
3214
|
+
Param[6]: origin (type: Vector2)
|
|
3215
|
+
Param[7]: rotation (type: float)
|
|
3216
|
+
Param[8]: tint (type: Color)
|
|
3217
|
+
Function 409: CheckCollisionSpheres() (4 input parameters)
|
|
3218
|
+
Name: CheckCollisionSpheres
|
|
3219
|
+
Return type: bool
|
|
3220
|
+
Description: Check collision between two spheres
|
|
3221
|
+
Param[1]: center1 (type: Vector3)
|
|
3222
|
+
Param[2]: radius1 (type: float)
|
|
3223
|
+
Param[3]: center2 (type: Vector3)
|
|
3224
|
+
Param[4]: radius2 (type: float)
|
|
3225
|
+
Function 410: CheckCollisionBoxes() (2 input parameters)
|
|
3226
|
+
Name: CheckCollisionBoxes
|
|
3227
|
+
Return type: bool
|
|
3228
|
+
Description: Check collision between two bounding boxes
|
|
3229
|
+
Param[1]: box1 (type: BoundingBox)
|
|
3230
|
+
Param[2]: box2 (type: BoundingBox)
|
|
3231
|
+
Function 411: CheckCollisionBoxSphere() (3 input parameters)
|
|
3232
|
+
Name: CheckCollisionBoxSphere
|
|
3233
|
+
Return type: bool
|
|
3234
|
+
Description: Check collision between box and sphere
|
|
3235
|
+
Param[1]: box (type: BoundingBox)
|
|
3236
|
+
Param[2]: center (type: Vector3)
|
|
3237
|
+
Param[3]: radius (type: float)
|
|
3238
|
+
Function 412: GetRayCollisionSphere() (3 input parameters)
|
|
3239
|
+
Name: GetRayCollisionSphere
|
|
3240
|
+
Return type: RayCollision
|
|
3241
|
+
Description: Get collision info between ray and sphere
|
|
3242
|
+
Param[1]: ray (type: Ray)
|
|
3243
|
+
Param[2]: center (type: Vector3)
|
|
3244
|
+
Param[3]: radius (type: float)
|
|
3245
|
+
Function 413: GetRayCollisionBox() (2 input parameters)
|
|
3246
|
+
Name: GetRayCollisionBox
|
|
3247
|
+
Return type: RayCollision
|
|
3248
|
+
Description: Get collision info between ray and box
|
|
3249
|
+
Param[1]: ray (type: Ray)
|
|
3250
|
+
Param[2]: box (type: BoundingBox)
|
|
3251
|
+
Function 414: GetRayCollisionModel() (2 input parameters)
|
|
3252
|
+
Name: GetRayCollisionModel
|
|
3253
|
+
Return type: RayCollision
|
|
3254
|
+
Description: Get collision info between ray and model
|
|
3255
|
+
Param[1]: ray (type: Ray)
|
|
3256
|
+
Param[2]: model (type: Model)
|
|
3257
|
+
Function 415: GetRayCollisionMesh() (3 input parameters)
|
|
3258
|
+
Name: GetRayCollisionMesh
|
|
3259
|
+
Return type: RayCollision
|
|
3260
|
+
Description: Get collision info between ray and mesh
|
|
3261
|
+
Param[1]: ray (type: Ray)
|
|
3262
|
+
Param[2]: mesh (type: Mesh)
|
|
3263
|
+
Param[3]: transform (type: Matrix)
|
|
3264
|
+
Function 416: GetRayCollisionTriangle() (4 input parameters)
|
|
3265
|
+
Name: GetRayCollisionTriangle
|
|
3266
|
+
Return type: RayCollision
|
|
3267
|
+
Description: Get collision info between ray and triangle
|
|
3268
|
+
Param[1]: ray (type: Ray)
|
|
3269
|
+
Param[2]: p1 (type: Vector3)
|
|
3270
|
+
Param[3]: p2 (type: Vector3)
|
|
3271
|
+
Param[4]: p3 (type: Vector3)
|
|
3272
|
+
Function 417: GetRayCollisionQuad() (5 input parameters)
|
|
3273
|
+
Name: GetRayCollisionQuad
|
|
3274
|
+
Return type: RayCollision
|
|
3275
|
+
Description: Get collision info between ray and quad
|
|
3276
|
+
Param[1]: ray (type: Ray)
|
|
3277
|
+
Param[2]: p1 (type: Vector3)
|
|
3278
|
+
Param[3]: p2 (type: Vector3)
|
|
3279
|
+
Param[4]: p3 (type: Vector3)
|
|
3280
|
+
Param[5]: p4 (type: Vector3)
|
|
3281
|
+
Function 418: InitAudioDevice() (0 input parameters)
|
|
3282
|
+
Name: InitAudioDevice
|
|
3283
|
+
Return type: void
|
|
3284
|
+
Description: Initialize audio device and context
|
|
3285
|
+
No input parameters
|
|
3286
|
+
Function 419: CloseAudioDevice() (0 input parameters)
|
|
3287
|
+
Name: CloseAudioDevice
|
|
3288
|
+
Return type: void
|
|
3289
|
+
Description: Close the audio device and context
|
|
3290
|
+
No input parameters
|
|
3291
|
+
Function 420: IsAudioDeviceReady() (0 input parameters)
|
|
3292
|
+
Name: IsAudioDeviceReady
|
|
3293
|
+
Return type: bool
|
|
3294
|
+
Description: Check if audio device has been initialized successfully
|
|
3295
|
+
No input parameters
|
|
3296
|
+
Function 421: SetMasterVolume() (1 input parameters)
|
|
3297
|
+
Name: SetMasterVolume
|
|
3298
|
+
Return type: void
|
|
3299
|
+
Description: Set master volume (listener)
|
|
3300
|
+
Param[1]: volume (type: float)
|
|
3301
|
+
Function 422: LoadWave() (1 input parameters)
|
|
3302
|
+
Name: LoadWave
|
|
3303
|
+
Return type: Wave
|
|
3304
|
+
Description: Load wave data from file
|
|
3305
|
+
Param[1]: fileName (type: const char *)
|
|
3306
|
+
Function 423: LoadWaveFromMemory() (3 input parameters)
|
|
3307
|
+
Name: LoadWaveFromMemory
|
|
3308
|
+
Return type: Wave
|
|
3309
|
+
Description: Load wave from memory buffer, fileType refers to extension: i.e. '.wav'
|
|
3310
|
+
Param[1]: fileType (type: const char *)
|
|
3311
|
+
Param[2]: fileData (type: const unsigned char *)
|
|
3312
|
+
Param[3]: dataSize (type: int)
|
|
3313
|
+
Function 424: LoadSound() (1 input parameters)
|
|
3314
|
+
Name: LoadSound
|
|
3315
|
+
Return type: Sound
|
|
3316
|
+
Description: Load sound from file
|
|
3317
|
+
Param[1]: fileName (type: const char *)
|
|
3318
|
+
Function 425: LoadSoundFromWave() (1 input parameters)
|
|
3319
|
+
Name: LoadSoundFromWave
|
|
3320
|
+
Return type: Sound
|
|
3321
|
+
Description: Load sound from wave data
|
|
3322
|
+
Param[1]: wave (type: Wave)
|
|
3323
|
+
Function 426: UpdateSound() (3 input parameters)
|
|
3324
|
+
Name: UpdateSound
|
|
3325
|
+
Return type: void
|
|
3326
|
+
Description: Update sound buffer with new data
|
|
3327
|
+
Param[1]: sound (type: Sound)
|
|
3328
|
+
Param[2]: data (type: const void *)
|
|
3329
|
+
Param[3]: samplesCount (type: int)
|
|
3330
|
+
Function 427: UnloadWave() (1 input parameters)
|
|
3331
|
+
Name: UnloadWave
|
|
3332
|
+
Return type: void
|
|
3333
|
+
Description: Unload wave data
|
|
3334
|
+
Param[1]: wave (type: Wave)
|
|
3335
|
+
Function 428: UnloadSound() (1 input parameters)
|
|
3336
|
+
Name: UnloadSound
|
|
3337
|
+
Return type: void
|
|
3338
|
+
Description: Unload sound
|
|
3339
|
+
Param[1]: sound (type: Sound)
|
|
3340
|
+
Function 429: ExportWave() (2 input parameters)
|
|
3341
|
+
Name: ExportWave
|
|
3342
|
+
Return type: bool
|
|
3343
|
+
Description: Export wave data to file, returns true on success
|
|
3344
|
+
Param[1]: wave (type: Wave)
|
|
3345
|
+
Param[2]: fileName (type: const char *)
|
|
3346
|
+
Function 430: ExportWaveAsCode() (2 input parameters)
|
|
3347
|
+
Name: ExportWaveAsCode
|
|
3348
|
+
Return type: bool
|
|
3349
|
+
Description: Export wave sample data to code (.h), returns true on success
|
|
3350
|
+
Param[1]: wave (type: Wave)
|
|
3351
|
+
Param[2]: fileName (type: const char *)
|
|
3352
|
+
Function 431: PlaySound() (1 input parameters)
|
|
3353
|
+
Name: PlaySound
|
|
3354
|
+
Return type: void
|
|
3355
|
+
Description: Play a sound
|
|
3356
|
+
Param[1]: sound (type: Sound)
|
|
3357
|
+
Function 432: StopSound() (1 input parameters)
|
|
3358
|
+
Name: StopSound
|
|
3359
|
+
Return type: void
|
|
3360
|
+
Description: Stop playing a sound
|
|
3361
|
+
Param[1]: sound (type: Sound)
|
|
3362
|
+
Function 433: PauseSound() (1 input parameters)
|
|
3363
|
+
Name: PauseSound
|
|
3364
|
+
Return type: void
|
|
3365
|
+
Description: Pause a sound
|
|
3366
|
+
Param[1]: sound (type: Sound)
|
|
3367
|
+
Function 434: ResumeSound() (1 input parameters)
|
|
3368
|
+
Name: ResumeSound
|
|
3369
|
+
Return type: void
|
|
3370
|
+
Description: Resume a paused sound
|
|
3371
|
+
Param[1]: sound (type: Sound)
|
|
3372
|
+
Function 435: PlaySoundMulti() (1 input parameters)
|
|
3373
|
+
Name: PlaySoundMulti
|
|
3374
|
+
Return type: void
|
|
3375
|
+
Description: Play a sound (using multichannel buffer pool)
|
|
3376
|
+
Param[1]: sound (type: Sound)
|
|
3377
|
+
Function 436: StopSoundMulti() (0 input parameters)
|
|
3378
|
+
Name: StopSoundMulti
|
|
3379
|
+
Return type: void
|
|
3380
|
+
Description: Stop any sound playing (using multichannel buffer pool)
|
|
3381
|
+
No input parameters
|
|
3382
|
+
Function 437: GetSoundsPlaying() (0 input parameters)
|
|
3383
|
+
Name: GetSoundsPlaying
|
|
3384
|
+
Return type: int
|
|
3385
|
+
Description: Get number of sounds playing in the multichannel
|
|
3386
|
+
No input parameters
|
|
3387
|
+
Function 438: IsSoundPlaying() (1 input parameters)
|
|
3388
|
+
Name: IsSoundPlaying
|
|
3389
|
+
Return type: bool
|
|
3390
|
+
Description: Check if a sound is currently playing
|
|
3391
|
+
Param[1]: sound (type: Sound)
|
|
3392
|
+
Function 439: SetSoundVolume() (2 input parameters)
|
|
3393
|
+
Name: SetSoundVolume
|
|
3394
|
+
Return type: void
|
|
3395
|
+
Description: Set volume for a sound (1.0 is max level)
|
|
3396
|
+
Param[1]: sound (type: Sound)
|
|
3397
|
+
Param[2]: volume (type: float)
|
|
3398
|
+
Function 440: SetSoundPitch() (2 input parameters)
|
|
3399
|
+
Name: SetSoundPitch
|
|
3400
|
+
Return type: void
|
|
3401
|
+
Description: Set pitch for a sound (1.0 is base level)
|
|
3402
|
+
Param[1]: sound (type: Sound)
|
|
3403
|
+
Param[2]: pitch (type: float)
|
|
3404
|
+
Function 441: WaveFormat() (4 input parameters)
|
|
3405
|
+
Name: WaveFormat
|
|
3406
|
+
Return type: void
|
|
3407
|
+
Description: Convert wave data to desired format
|
|
3408
|
+
Param[1]: wave (type: Wave *)
|
|
3409
|
+
Param[2]: sampleRate (type: int)
|
|
3410
|
+
Param[3]: sampleSize (type: int)
|
|
3411
|
+
Param[4]: channels (type: int)
|
|
3412
|
+
Function 442: WaveCopy() (1 input parameters)
|
|
3413
|
+
Name: WaveCopy
|
|
3414
|
+
Return type: Wave
|
|
3415
|
+
Description: Copy a wave to a new wave
|
|
3416
|
+
Param[1]: wave (type: Wave)
|
|
3417
|
+
Function 443: WaveCrop() (3 input parameters)
|
|
3418
|
+
Name: WaveCrop
|
|
3419
|
+
Return type: void
|
|
3420
|
+
Description: Crop a wave to defined samples range
|
|
3421
|
+
Param[1]: wave (type: Wave *)
|
|
3422
|
+
Param[2]: initSample (type: int)
|
|
3423
|
+
Param[3]: finalSample (type: int)
|
|
3424
|
+
Function 444: LoadWaveSamples() (1 input parameters)
|
|
3425
|
+
Name: LoadWaveSamples
|
|
3426
|
+
Return type: float *
|
|
3427
|
+
Description: Load samples data from wave as a floats array
|
|
3428
|
+
Param[1]: wave (type: Wave)
|
|
3429
|
+
Function 445: UnloadWaveSamples() (1 input parameters)
|
|
3430
|
+
Name: UnloadWaveSamples
|
|
3431
|
+
Return type: void
|
|
3432
|
+
Description: Unload samples data loaded with LoadWaveSamples()
|
|
3433
|
+
Param[1]: samples (type: float *)
|
|
3434
|
+
Function 446: LoadMusicStream() (1 input parameters)
|
|
3435
|
+
Name: LoadMusicStream
|
|
3436
|
+
Return type: Music
|
|
3437
|
+
Description: Load music stream from file
|
|
3438
|
+
Param[1]: fileName (type: const char *)
|
|
3439
|
+
Function 447: LoadMusicStreamFromMemory() (3 input parameters)
|
|
3440
|
+
Name: LoadMusicStreamFromMemory
|
|
3441
|
+
Return type: Music
|
|
3442
|
+
Description: Load music stream from data
|
|
3443
|
+
Param[1]: fileType (type: const char *)
|
|
3444
|
+
Param[2]: data (type: unsigned char *)
|
|
3445
|
+
Param[3]: dataSize (type: int)
|
|
3446
|
+
Function 448: UnloadMusicStream() (1 input parameters)
|
|
3447
|
+
Name: UnloadMusicStream
|
|
3448
|
+
Return type: void
|
|
3449
|
+
Description: Unload music stream
|
|
3450
|
+
Param[1]: music (type: Music)
|
|
3451
|
+
Function 449: PlayMusicStream() (1 input parameters)
|
|
3452
|
+
Name: PlayMusicStream
|
|
3453
|
+
Return type: void
|
|
3454
|
+
Description: Start music playing
|
|
3455
|
+
Param[1]: music (type: Music)
|
|
3456
|
+
Function 450: IsMusicStreamPlaying() (1 input parameters)
|
|
3457
|
+
Name: IsMusicStreamPlaying
|
|
3458
|
+
Return type: bool
|
|
3459
|
+
Description: Check if music is playing
|
|
3460
|
+
Param[1]: music (type: Music)
|
|
3461
|
+
Function 451: UpdateMusicStream() (1 input parameters)
|
|
3462
|
+
Name: UpdateMusicStream
|
|
3463
|
+
Return type: void
|
|
3464
|
+
Description: Updates buffers for music streaming
|
|
3465
|
+
Param[1]: music (type: Music)
|
|
3466
|
+
Function 452: StopMusicStream() (1 input parameters)
|
|
3467
|
+
Name: StopMusicStream
|
|
3468
|
+
Return type: void
|
|
3469
|
+
Description: Stop music playing
|
|
3470
|
+
Param[1]: music (type: Music)
|
|
3471
|
+
Function 453: PauseMusicStream() (1 input parameters)
|
|
3472
|
+
Name: PauseMusicStream
|
|
3473
|
+
Return type: void
|
|
3474
|
+
Description: Pause music playing
|
|
3475
|
+
Param[1]: music (type: Music)
|
|
3476
|
+
Function 454: ResumeMusicStream() (1 input parameters)
|
|
3477
|
+
Name: ResumeMusicStream
|
|
3478
|
+
Return type: void
|
|
3479
|
+
Description: Resume playing paused music
|
|
3480
|
+
Param[1]: music (type: Music)
|
|
3481
|
+
Function 455: SetMusicVolume() (2 input parameters)
|
|
3482
|
+
Name: SetMusicVolume
|
|
3483
|
+
Return type: void
|
|
3484
|
+
Description: Set volume for music (1.0 is max level)
|
|
3485
|
+
Param[1]: music (type: Music)
|
|
3486
|
+
Param[2]: volume (type: float)
|
|
3487
|
+
Function 456: SetMusicPitch() (2 input parameters)
|
|
3488
|
+
Name: SetMusicPitch
|
|
3489
|
+
Return type: void
|
|
3490
|
+
Description: Set pitch for a music (1.0 is base level)
|
|
3491
|
+
Param[1]: music (type: Music)
|
|
3492
|
+
Param[2]: pitch (type: float)
|
|
3493
|
+
Function 457: GetMusicTimeLength() (1 input parameters)
|
|
3494
|
+
Name: GetMusicTimeLength
|
|
3495
|
+
Return type: float
|
|
3496
|
+
Description: Get music time length (in seconds)
|
|
3497
|
+
Param[1]: music (type: Music)
|
|
3498
|
+
Function 458: GetMusicTimePlayed() (1 input parameters)
|
|
3499
|
+
Name: GetMusicTimePlayed
|
|
3500
|
+
Return type: float
|
|
3501
|
+
Description: Get current music time played (in seconds)
|
|
3502
|
+
Param[1]: music (type: Music)
|
|
3503
|
+
Function 459: LoadAudioStream() (3 input parameters)
|
|
3504
|
+
Name: LoadAudioStream
|
|
3505
|
+
Return type: AudioStream
|
|
3506
|
+
Description: Load audio stream (to stream raw audio pcm data)
|
|
3507
|
+
Param[1]: sampleRate (type: unsigned int)
|
|
3508
|
+
Param[2]: sampleSize (type: unsigned int)
|
|
3509
|
+
Param[3]: channels (type: unsigned int)
|
|
3510
|
+
Function 460: UnloadAudioStream() (1 input parameters)
|
|
3511
|
+
Name: UnloadAudioStream
|
|
3512
|
+
Return type: void
|
|
3513
|
+
Description: Unload audio stream and free memory
|
|
3514
|
+
Param[1]: stream (type: AudioStream)
|
|
3515
|
+
Function 461: UpdateAudioStream() (3 input parameters)
|
|
3516
|
+
Name: UpdateAudioStream
|
|
3517
|
+
Return type: void
|
|
3518
|
+
Description: Update audio stream buffers with data
|
|
3519
|
+
Param[1]: stream (type: AudioStream)
|
|
3520
|
+
Param[2]: data (type: const void *)
|
|
3521
|
+
Param[3]: samplesCount (type: int)
|
|
3522
|
+
Function 462: IsAudioStreamProcessed() (1 input parameters)
|
|
3523
|
+
Name: IsAudioStreamProcessed
|
|
3524
|
+
Return type: bool
|
|
3525
|
+
Description: Check if any audio stream buffers requires refill
|
|
3526
|
+
Param[1]: stream (type: AudioStream)
|
|
3527
|
+
Function 463: PlayAudioStream() (1 input parameters)
|
|
3528
|
+
Name: PlayAudioStream
|
|
3529
|
+
Return type: void
|
|
3530
|
+
Description: Play audio stream
|
|
3531
|
+
Param[1]: stream (type: AudioStream)
|
|
3532
|
+
Function 464: PauseAudioStream() (1 input parameters)
|
|
3533
|
+
Name: PauseAudioStream
|
|
3534
|
+
Return type: void
|
|
3535
|
+
Description: Pause audio stream
|
|
3536
|
+
Param[1]: stream (type: AudioStream)
|
|
3537
|
+
Function 465: ResumeAudioStream() (1 input parameters)
|
|
3538
|
+
Name: ResumeAudioStream
|
|
3539
|
+
Return type: void
|
|
3540
|
+
Description: Resume audio stream
|
|
3541
|
+
Param[1]: stream (type: AudioStream)
|
|
3542
|
+
Function 466: IsAudioStreamPlaying() (1 input parameters)
|
|
3543
|
+
Name: IsAudioStreamPlaying
|
|
3544
|
+
Return type: bool
|
|
3545
|
+
Description: Check if audio stream is playing
|
|
3546
|
+
Param[1]: stream (type: AudioStream)
|
|
3547
|
+
Function 467: StopAudioStream() (1 input parameters)
|
|
3548
|
+
Name: StopAudioStream
|
|
3549
|
+
Return type: void
|
|
3550
|
+
Description: Stop audio stream
|
|
3551
|
+
Param[1]: stream (type: AudioStream)
|
|
3552
|
+
Function 468: SetAudioStreamVolume() (2 input parameters)
|
|
3553
|
+
Name: SetAudioStreamVolume
|
|
3554
|
+
Return type: void
|
|
3555
|
+
Description: Set volume for audio stream (1.0 is max level)
|
|
3556
|
+
Param[1]: stream (type: AudioStream)
|
|
3557
|
+
Param[2]: volume (type: float)
|
|
3558
|
+
Function 469: SetAudioStreamPitch() (2 input parameters)
|
|
3559
|
+
Name: SetAudioStreamPitch
|
|
3560
|
+
Return type: void
|
|
3561
|
+
Description: Set pitch for audio stream (1.0 is base level)
|
|
3562
|
+
Param[1]: stream (type: AudioStream)
|
|
3563
|
+
Param[2]: pitch (type: float)
|
|
3564
|
+
Function 470: SetAudioStreamBufferSizeDefault() (1 input parameters)
|
|
3565
|
+
Name: SetAudioStreamBufferSizeDefault
|
|
3566
|
+
Return type: void
|
|
3567
|
+
Description: Default size for new audio streams
|
|
3568
|
+
Param[1]: size (type: int)
|