stb_image_ffi 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d4a31b1d706739f440e7a145eec6ba234e57cb40d32866873784e74973b563e5
4
- data.tar.gz: 0c7e9ea9aa08460d4c7e07ed67ccd28ad32dfd8b94d052465d30df1bb664b823
3
+ metadata.gz: 171b1451932151ce00dc71d9f26178db99467bd980c1d79bfc079b32d36b4db2
4
+ data.tar.gz: 4df9abec7e5c29e62adc68137fda9e1e4bee7cabc9947d35fa99aaac1eba5e48
5
5
  SHA512:
6
- metadata.gz: 9495194d3cbdc63565a0b98bb088bbeedd552d2573d37a7197aba2fa41c504b025803ff22a4f23e1ca0bfcea8f2fe880861da7c6a1dd820058eb64802feb8c7d
7
- data.tar.gz: 2cddc923f1f67f3881946dc3c7022a142a8c0d79dca2fcbfa5a8c582874a6290fd112d70fea8a41a4f2ca906a72e39915420542c57c08ef432a7da93ea1efb3d
6
+ metadata.gz: c8b232434abba1b343ce5b33ac1baa23406e6925f5bdf04dda71e209a175157ad1e337f89f2a1ae66b0ddf2d3193ebff427a1c5c9d4983a69b16ad0c68fd6b68
7
+ data.tar.gz: 906d951a3e5dbc88ef90c66e76d9760bf44414074d05eebf24d8f9ca1aa5801de3fdcab5a671cefa2b24399d80e57068f070100a20d0c1c1b49634e05d6fc781
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stb_image_ffi (1.0.1)
4
+ stb_image_ffi (1.0.2)
5
5
  ffi
6
6
 
7
7
  GEM
@@ -1,3 +1,3 @@
1
1
  module STBImage
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
@@ -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 `stb_image.h`. Implements only
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.1
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-02 00:00:00.000000000 Z
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 `stb_image.h`. Implements only
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: []