stb_image_ffi 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/stb_image_ffi/version.rb +1 -1
- data/stb_image_ffi.gemspec +2 -8
- metadata +4 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 171b1451932151ce00dc71d9f26178db99467bd980c1d79bfc079b32d36b4db2
|
|
4
|
+
data.tar.gz: 4df9abec7e5c29e62adc68137fda9e1e4bee7cabc9947d35fa99aaac1eba5e48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8b232434abba1b343ce5b33ac1baa23406e6925f5bdf04dda71e209a175157ad1e337f89f2a1ae66b0ddf2d3193ebff427a1c5c9d4983a69b16ad0c68fd6b68
|
|
7
|
+
data.tar.gz: 906d951a3e5dbc88ef90c66e76d9760bf44414074d05eebf24d8f9ca1aa5801de3fdcab5a671cefa2b24399d80e57068f070100a20d0c1c1b49634e05d6fc781
|
data/Gemfile.lock
CHANGED
data/stb_image_ffi.gemspec
CHANGED
|
@@ -10,15 +10,9 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
|
|
11
11
|
spec.summary = "Bindings for stb_image, the single file image loading library"
|
|
12
12
|
spec.description = <<~DESCRIPTION
|
|
13
|
-
Very naive bindings for
|
|
14
|
-
`stbi_set_flip_vertically_on_load` and `stb_load` since these are the
|
|
15
|
-
2 functions I need to load an image as a texture in OpenGL.
|
|
13
|
+
Very naive bindings for stb_image.h. Implements only stbi_set_flip_vertically_on_load and stb_load since these are the 2 functions I need to load an image as a texture in OpenGL.
|
|
16
14
|
|
|
17
|
-
The reason I made this instead of using
|
|
18
|
-
[stb-image](https://rubygems.org/gems/stb-image) is because stb-image didn't
|
|
19
|
-
implement `stbi_set_flip_vertically_on_load`, as far as I can tell, which is
|
|
20
|
-
useful/necessary when wanting to load image data in a format immediately
|
|
21
|
-
consumable by OpenGL (see Example in README).
|
|
15
|
+
The reason I made this instead of using stb-image is because stb-image didn't implement stbi_set_flip_vertically_on_load, as far as I can tell, which is useful/necessary when wanting to load image data in a format immediately consumable by OpenGL (see Example in README).
|
|
22
16
|
DESCRIPTION
|
|
23
17
|
spec.homepage = "https://github.com/boatrite/stb_image_ffi"
|
|
24
18
|
spec.license = "MIT"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stb_image_ffi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Boatrite
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-10-
|
|
11
|
+
date: 2019-10-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|
|
@@ -81,15 +81,9 @@ dependencies:
|
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '3.0'
|
|
83
83
|
description: |
|
|
84
|
-
Very naive bindings for
|
|
85
|
-
`stbi_set_flip_vertically_on_load` and `stb_load` since these are the
|
|
86
|
-
2 functions I need to load an image as a texture in OpenGL.
|
|
84
|
+
Very naive bindings for stb_image.h. Implements only stbi_set_flip_vertically_on_load and stb_load since these are the 2 functions I need to load an image as a texture in OpenGL.
|
|
87
85
|
|
|
88
|
-
The reason I made this instead of using
|
|
89
|
-
[stb-image](https://rubygems.org/gems/stb-image) is because stb-image didn't
|
|
90
|
-
implement `stbi_set_flip_vertically_on_load`, as far as I can tell, which is
|
|
91
|
-
useful/necessary when wanting to load image data in a format immediately
|
|
92
|
-
consumable by OpenGL (see Example in README).
|
|
86
|
+
The reason I made this instead of using stb-image is because stb-image didn't implement stbi_set_flip_vertically_on_load, as far as I can tell, which is useful/necessary when wanting to load image data in a format immediately consumable by OpenGL (see Example in README).
|
|
93
87
|
email:
|
|
94
88
|
- boatrite@mobiledoorman.com
|
|
95
89
|
executables: []
|