sdl2-bindings 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/ChangeLog +140 -134
  3. data/LICENSE.txt +0 -0
  4. data/README.md +93 -86
  5. data/lib/sdl2.rb +131 -131
  6. data/lib/sdl2_audio.rb +265 -261
  7. data/lib/sdl2_blendmode.rb +72 -72
  8. data/lib/sdl2_clipboard.rb +56 -56
  9. data/lib/sdl2_cpuinfo.rb +137 -129
  10. data/lib/sdl2_error.rb +71 -71
  11. data/lib/sdl2_events.rb +575 -564
  12. data/lib/sdl2_filesystem.rb +52 -52
  13. data/lib/sdl2_framerate.rb +74 -74
  14. data/lib/sdl2_gamecontroller.rb +345 -329
  15. data/lib/sdl2_gesture.rb +61 -61
  16. data/lib/sdl2_gfxPrimitives.rb +283 -283
  17. data/lib/sdl2_guid.rb +58 -0
  18. data/lib/sdl2_haptic.rb +301 -301
  19. data/lib/sdl2_hidapi.rb +139 -139
  20. data/lib/sdl2_hints.rb +240 -221
  21. data/lib/sdl2_image.rb +296 -296
  22. data/lib/sdl2_imageFilter.rb +164 -164
  23. data/lib/sdl2_joystick.rb +332 -294
  24. data/lib/sdl2_keyboard.rb +129 -125
  25. data/lib/sdl2_keycode.rb +311 -307
  26. data/lib/sdl2_log.rb +131 -131
  27. data/lib/sdl2_main.rb +74 -74
  28. data/lib/sdl2_messagebox.rb +102 -102
  29. data/lib/sdl2_misc.rb +48 -48
  30. data/lib/sdl2_mixer.rb +464 -464
  31. data/lib/sdl2_mouse.rb +136 -136
  32. data/lib/sdl2_pixels.rb +240 -240
  33. data/lib/sdl2_platform.rb +48 -48
  34. data/lib/sdl2_power.rb +54 -54
  35. data/lib/sdl2_rect.rb +145 -145
  36. data/lib/sdl2_render.rb +408 -408
  37. data/lib/sdl2_rotozoom.rb +76 -76
  38. data/lib/sdl2_rwops.rb +242 -242
  39. data/lib/sdl2_scancode.rb +293 -289
  40. data/lib/sdl2_sensor.rb +115 -115
  41. data/lib/sdl2_shape.rb +83 -83
  42. data/lib/sdl2_sound.rb +154 -154
  43. data/lib/sdl2_stdinc.rb +564 -548
  44. data/lib/sdl2_surface.rb +229 -229
  45. data/lib/sdl2_syswm.rb +160 -160
  46. data/lib/sdl2_timer.rb +74 -74
  47. data/lib/sdl2_touch.rb +86 -86
  48. data/lib/sdl2_ttf.rb +414 -414
  49. data/lib/sdl2_version.rb +67 -67
  50. data/lib/sdl2_video.rb +549 -540
  51. data/lib/sdl2_vulkan.rb +72 -72
  52. metadata +4 -3
data/lib/sdl2_version.rb CHANGED
@@ -1,67 +1,67 @@
1
- # Ruby-SDL2 : Yet another SDL2 wrapper for Ruby
2
- #
3
- # * https://github.com/vaiorabbit/sdl2-bindings
4
- #
5
- # [NOTICE] This is an automatically generated file.
6
-
7
- require 'ffi'
8
-
9
- module SDL
10
- extend FFI::Library
11
- # Define/Macro
12
-
13
- MAJOR_VERSION = 2
14
- MINOR_VERSION = 0
15
- PATCHLEVEL = 22
16
-
17
- # Enum
18
-
19
-
20
- # Typedef
21
-
22
-
23
- # Struct
24
-
25
- class Version < FFI::Struct
26
- layout(
27
- :major, :uchar,
28
- :minor, :uchar,
29
- :patch, :uchar,
30
- )
31
- end
32
-
33
-
34
- # Function
35
-
36
- def self.setup_version_symbols(output_error = false)
37
- symbols = [
38
- :SDL_GetVersion,
39
- :SDL_GetRevision,
40
- :SDL_GetRevisionNumber,
41
- ]
42
- apis = {
43
- :SDL_GetVersion => :GetVersion,
44
- :SDL_GetRevision => :GetRevision,
45
- :SDL_GetRevisionNumber => :GetRevisionNumber,
46
- }
47
- args = {
48
- :SDL_GetVersion => [:pointer],
49
- :SDL_GetRevision => [],
50
- :SDL_GetRevisionNumber => [],
51
- }
52
- retvals = {
53
- :SDL_GetVersion => :void,
54
- :SDL_GetRevision => :pointer,
55
- :SDL_GetRevisionNumber => :int,
56
- }
57
- symbols.each do |sym|
58
- begin
59
- attach_function apis[sym], sym, args[sym], retvals[sym]
60
- rescue FFI::NotFoundError => error
61
- $stderr.puts("[Warning] Failed to import #{sym} (#{error}).") if output_error
62
- end
63
- end
64
- end
65
-
66
- end
67
-
1
+ # Ruby-SDL2 : Yet another SDL2 wrapper for Ruby
2
+ #
3
+ # * https://github.com/vaiorabbit/sdl2-bindings
4
+ #
5
+ # [NOTICE] This is an automatically generated file.
6
+
7
+ require 'ffi'
8
+
9
+ module SDL
10
+ extend FFI::Library
11
+ # Define/Macro
12
+
13
+ MAJOR_VERSION = 2
14
+ MINOR_VERSION = 24
15
+ PATCHLEVEL = 0
16
+
17
+ # Enum
18
+
19
+
20
+ # Typedef
21
+
22
+
23
+ # Struct
24
+
25
+ class Version < FFI::Struct
26
+ layout(
27
+ :major, :uchar,
28
+ :minor, :uchar,
29
+ :patch, :uchar,
30
+ )
31
+ end
32
+
33
+
34
+ # Function
35
+
36
+ def self.setup_version_symbols(output_error = false)
37
+ symbols = [
38
+ :SDL_GetVersion,
39
+ :SDL_GetRevision,
40
+ :SDL_GetRevisionNumber,
41
+ ]
42
+ apis = {
43
+ :SDL_GetVersion => :GetVersion,
44
+ :SDL_GetRevision => :GetRevision,
45
+ :SDL_GetRevisionNumber => :GetRevisionNumber,
46
+ }
47
+ args = {
48
+ :SDL_GetVersion => [:pointer],
49
+ :SDL_GetRevision => [],
50
+ :SDL_GetRevisionNumber => [],
51
+ }
52
+ retvals = {
53
+ :SDL_GetVersion => :void,
54
+ :SDL_GetRevision => :pointer,
55
+ :SDL_GetRevisionNumber => :int,
56
+ }
57
+ symbols.each do |sym|
58
+ begin
59
+ attach_function apis[sym], sym, args[sym], retvals[sym]
60
+ rescue FFI::NotFoundError => error
61
+ $stderr.puts("[Warning] Failed to import #{sym} (#{error}).") if output_error
62
+ end
63
+ end
64
+ end
65
+
66
+ end
67
+