stbimage 0.3.0 → 0.6.1
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/README.md +34 -6
- data/lib/dlls/libstb_arm.so +0 -0
- data/lib/dlls/libstb_x64.so +0 -0
- data/lib/dlls/libstb_x86.so +0 -0
- data/{dlls → lib/dlls}/stbDLL_x64.dll +0 -0
- data/{dlls → lib/dlls}/stbDLL_x86.dll +0 -0
- data/lib/stbimage.rb +42 -8
- data/stb-source/stb_image.c +7250 -0
- data/stb-source/stb_image.h +7739 -0
- data/utils/system_check.rb +51 -0
- metadata +12 -7
@@ -0,0 +1,51 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
if RUBY_PLATFORM =~ /64/
|
4
|
+
|
5
|
+
puts "You have a 64-bit Architecture ruby"
|
6
|
+
if RUBY_PLATFORM =~ /mswin/ || RUBY_PLATFORM =~ /mingw/
|
7
|
+
puts "With Windows"
|
8
|
+
lib, path = 'stbDLL_x64.dll', "#{__dir__}/../dlls"
|
9
|
+
elsif RUBY_PLATFORM =~ /linux/ || RUBY_PLATFORM =~ /cygwin/
|
10
|
+
puts "With Linux"
|
11
|
+
lib, path = 'libstb_x64.so', "#{__dir__}/../dlls"
|
12
|
+
elsif RUBY_PLATFORM =~ /darwin/
|
13
|
+
puts "With macOS"
|
14
|
+
else
|
15
|
+
puts "I have no idea what os are you using, so it's possible that stbimage wont't work"
|
16
|
+
end
|
17
|
+
|
18
|
+
elsif RUBY_PLATFORM =~ /arm/
|
19
|
+
|
20
|
+
puts "You have a arm architecture"
|
21
|
+
lib, path = 'libstb_arm.so', "#{__dir__}/../dlls"
|
22
|
+
|
23
|
+
elsif RUBY_PLATFORM =~ /java/
|
24
|
+
|
25
|
+
puts "You have jruby!"
|
26
|
+
|
27
|
+
else
|
28
|
+
|
29
|
+
puts "You have a 32-bit Architecture ruby"
|
30
|
+
if RUBY_PLATFORM =~ /mswin/ || RUBY_PLATFORM =~ /mingw/
|
31
|
+
puts "With Windows"
|
32
|
+
lib, path = 'stbDLL_x32.dll', "#{__dir__}/../dlls"
|
33
|
+
elsif RUBY_PLATFORM =~ /linux/ || RUBY_PLATFORM =~ /cygwin/
|
34
|
+
puts "With Linux"
|
35
|
+
lib, path = 'libstb_x32.so', "#{__dir__}/../dlls"
|
36
|
+
elsif RUBY_PLATFORM =~ /darwin/
|
37
|
+
puts "With macOS"
|
38
|
+
else
|
39
|
+
puts "I have no idea what os are you using, so it's possible that stbimage wont't work"
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
43
|
+
|
44
|
+
|
45
|
+
# if RUBY_PLATFORM == "x64-mswin64_140" || RUBY_PLATFORM == "x64-mingw32"
|
46
|
+
# lib, path = 'stbDLL_x64.dll', "#{__dir__}/../dlls"
|
47
|
+
# elsif RUBY_PLATFORM == "x86-mingw32"
|
48
|
+
# lib, path = 'stbDLL_x86.dll', "#{__dir__}/../dlls"
|
49
|
+
# elsif RUBY_PLATFORM =~ /x86_linux/
|
50
|
+
# lib, path = 'libstd_x86.so', "#{__dir__}/../dlls"
|
51
|
+
# else
|
metadata
CHANGED
@@ -1,29 +1,34 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stbimage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Keresztes
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: "!Beta Version! A practical image importer/loader. It wraps stb_image.h
|
14
14
|
(ver:2.26 -2020.07.13-). Supported image formats are: JPEG, PNG, TGA, BMP, PSD,
|
15
|
-
GIF(not animation), HDR, PIC, PNM.
|
16
|
-
|
17
|
-
usage and other information)"
|
15
|
+
GIF(not animation), HDR, PIC, PNM. Checkout the Homepage for usage in Windows, MacOs,
|
16
|
+
Linux or ARM"
|
18
17
|
email: ''
|
19
18
|
executables: []
|
20
19
|
extensions: []
|
21
20
|
extra_rdoc_files: []
|
22
21
|
files:
|
23
22
|
- README.md
|
24
|
-
- dlls/
|
25
|
-
- dlls/
|
23
|
+
- lib/dlls/libstb_arm.so
|
24
|
+
- lib/dlls/libstb_x64.so
|
25
|
+
- lib/dlls/libstb_x86.so
|
26
|
+
- lib/dlls/stbDLL_x64.dll
|
27
|
+
- lib/dlls/stbDLL_x86.dll
|
26
28
|
- lib/stbimage.rb
|
29
|
+
- stb-source/stb_image.c
|
30
|
+
- stb-source/stb_image.h
|
31
|
+
- utils/system_check.rb
|
27
32
|
homepage: https://github.com/fellowchap-samuel/stbimage-ruby
|
28
33
|
licenses:
|
29
34
|
- MIT
|