raylib-bindings 0.7.13-x86_64-linux → 0.7.14-x86_64-linux
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.
- checksums.yaml +4 -4
- data/ChangeLog +4 -0
- data/README.md +2 -2
- data/lib/libraylib.x86_64.so +0 -0
- data/lib/raylib_main.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03bd2a624497b9fb876bc7aceb0e4d4f688eafa13059fea812df6664def75e9a
|
4
|
+
data.tar.gz: 4ec9ebe90ef597d50fab0dc097137ab68835f199318403d97635f1928d7cd4e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd952c4764196a6a593e9af6e43b6e88245c68d75d2fb77045cce700bbd22aa175ad837ea049707015bc02a8f7c4e1e4f207514ed850ac233c3f1c5b30bef85d
|
7
|
+
data.tar.gz: e3f445d6f2ebf24fb78980d790e82247127400b48dbd55779e6afb808e6806d7f1074f711f1de8a1fce6d49c6916c80f7933bffda2ed80ca2bce60df99a7537f
|
data/ChangeLog
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
2025-07-13 vaiorabbit <http://twitter.com/vaiorabbit>
|
2
|
+
|
3
|
+
* Updated with latest raylib ( https://github.com/raysan5/raylib/commit/20a07a65d7b5625f9d165d2659cfc06bd67116a4 )
|
4
|
+
|
1
5
|
2025-06-08 vaiorabbit <http://twitter.com/vaiorabbit>
|
2
6
|
|
3
7
|
* Updated with latest raylib ( https://github.com/raysan5/raylib/commit/59bcf680aafb6f054e150f70c8c71deb44ad04b1) and raygui ( https://github.com/raysan5/raygui/commit/99b37e4d4fdc19e7bf73844d6b9f177cbb27ce24 )
|
data/README.md
CHANGED
@@ -3,11 +3,11 @@
|
|
3
3
|
# Yet another raylib wrapper for Ruby #
|
4
4
|
|
5
5
|
* Created : 2021-10-17
|
6
|
-
* Last modified : 2025-
|
6
|
+
* Last modified : 2025-07-13
|
7
7
|
|
8
8
|
Provides Ruby bindings for raylib-related libraries including:
|
9
9
|
|
10
|
-
* [raylib](https://github.com/raysan5/raylib) version [5.6-dev]( https://github.com/raysan5/raylib/commit/
|
10
|
+
* [raylib](https://github.com/raysan5/raylib) version [5.6-dev]( https://github.com/raysan5/raylib/commit/20a07a65d7b5625f9d165d2659cfc06bd67116a4 )
|
11
11
|
* raylib
|
12
12
|
* raymath
|
13
13
|
* rlgl
|
data/lib/libraylib.x86_64.so
CHANGED
Binary file
|
data/lib/raylib_main.rb
CHANGED
@@ -3702,14 +3702,14 @@ module Raylib
|
|
3702
3702
|
[:UnloadRenderTexture, :UnloadRenderTexture, [RenderTexture2D.by_value], :void],
|
3703
3703
|
|
3704
3704
|
# @!method UpdateTexture(texture, pixels)
|
3705
|
-
# UpdateTexture : Update GPU texture with new data
|
3705
|
+
# UpdateTexture : Update GPU texture with new data (pixels should be able to fill texture)
|
3706
3706
|
# @param texture [Texture2D]
|
3707
3707
|
# @param pixels [const void *]
|
3708
3708
|
# @return [void]
|
3709
3709
|
[:UpdateTexture, :UpdateTexture, [Texture2D.by_value, :pointer], :void],
|
3710
3710
|
|
3711
3711
|
# @!method UpdateTextureRec(texture, rec, pixels)
|
3712
|
-
# UpdateTextureRec : Update GPU texture rectangle with new data
|
3712
|
+
# UpdateTextureRec : Update GPU texture rectangle with new data (pixels and rec should fit in texture)
|
3713
3713
|
# @param texture [Texture2D]
|
3714
3714
|
# @param rec [Rectangle]
|
3715
3715
|
# @param pixels [const void *]
|
@@ -4990,7 +4990,7 @@ module Raylib
|
|
4990
4990
|
[:IsSoundValid, :IsSoundValid, [Sound.by_value], :bool],
|
4991
4991
|
|
4992
4992
|
# @!method UpdateSound(sound, data, sampleCount)
|
4993
|
-
# UpdateSound : Update sound buffer with new data
|
4993
|
+
# UpdateSound : Update sound buffer with new data (data and frame count should fit in sound)
|
4994
4994
|
# @param sound [Sound]
|
4995
4995
|
# @param data [const void *]
|
4996
4996
|
# @param sampleCount [int]
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: raylib-bindings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.14
|
5
5
|
platform: x86_64-linux
|
6
6
|
authors:
|
7
7
|
- vaiorabbit
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-07-13 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: ffi
|