gosu 0.8.3-x86-mingw32 → 0.8.4-x86-mingw32

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fefcbe4c33224bac90fe273592926f4b9f1a8580
4
- data.tar.gz: 3d366b7565e9b68a5be8a7758df2e77f6a620e9d
3
+ metadata.gz: 58c23d09b6f1d6e07adb2bdae534936e2d838158
4
+ data.tar.gz: 24981c4d244c0d27bc1d579ad0f5598d8c14d749
5
5
  SHA512:
6
- metadata.gz: ad6460b9abbff1f78a1f29dd20fb47012acaa7d92414e7a90dc98c2ffa146cf856ddfb5093d3be47450b1f56ba16a5956976c922090d08493fe18f6a156c2339
7
- data.tar.gz: c9b7b4d2ee98029fa0571d3ecc9ac74ad841d4f27b93c9dd5ae2ee9bc7064017f433489889cab939b33dce2caa4dd88a5bca215f9d62da14338bd301a9279927
6
+ metadata.gz: ffacc089e18b04c6109abefac8e0f826313e5d9191f942e2348209866755500f722b677138084590651418b362bd4f2e69965008021c53fcbbbc3f0440b2cd41
7
+ data.tar.gz: de0d134b0d6cce8d4b8dc7f2ad93fe9494610ed1b8224449e26a25758bb6b12b5a80a2a182c66213a9838c12b8c8441dfa71d8324767e93543d7deb4d8a81bfa
data/Gosu/Graphics.hpp CHANGED
@@ -12,12 +12,6 @@
12
12
 
13
13
  namespace Gosu
14
14
  {
15
- //! Returns the width, in pixels, of the user's primary screen.
16
- unsigned screenWidth();
17
-
18
- //! Returns the height, in pixels, of the user's primary screen.
19
- unsigned screenHeight();
20
-
21
15
  //! Returns the maximum size of an texture that will be allocated
22
16
  //! internally by Gosu.
23
17
  //! Useful when extending Gosu using OpenGL.
data/Gosu/Version.hpp CHANGED
@@ -3,8 +3,8 @@
3
3
 
4
4
  #define GOSU_MAJOR_VERSION 0
5
5
  #define GOSU_MINOR_VERSION 8
6
- #define GOSU_POINT_VERSION 3
7
- #define GOSU_VERSION "0.8.3"
6
+ #define GOSU_POINT_VERSION 4
7
+ #define GOSU_VERSION "0.8.4"
8
8
 
9
9
  #define GOSU_COPYRIGHT_NOTICE \
10
10
  "This software uses the following third-party libraries:\n" \
data/Gosu/Window.hpp CHANGED
@@ -20,6 +20,20 @@
20
20
 
21
21
  namespace Gosu
22
22
  {
23
+ //! Returns the width (in pixels) of the user's primary screen.
24
+ unsigned screenWidth();
25
+
26
+ //! Returns the height (in pixels) of the user's primary screen.
27
+ unsigned screenHeight();
28
+
29
+ //! Returns the maximum width (in 'points') that is available for a non-fullscreen Window.
30
+ //! All windows larger than this size will automatically be shrunk to fit.
31
+ unsigned availableWidth();
32
+
33
+ //! Returns the maximum height (in 'points') that is available for a non-fullscreen Window.
34
+ //! All windows larger than this size will automatically be shrunk to fit.
35
+ unsigned availableHeight();
36
+
23
37
  //! Convenient all-in-one class that serves as the foundation of a standard
24
38
  //! Gosu application. Manages initialization of all of Gosu's core components
25
39
  //! and provides timing functionality.
@@ -38,6 +52,9 @@ namespace Gosu
38
52
 
39
53
  public:
40
54
  //! Constructs a Window.
55
+ //! \param width Width of the window in points; that is, pixels on a normal display, and 'virtual pixels' on a
56
+ //! high-resolution display.
57
+ //! \param height See width.
41
58
  //! \param updateInterval Interval in milliseconds between two calls
42
59
  //! to the update member function.
43
60
  Window(unsigned width, unsigned height, bool fullscreen,
@@ -63,8 +80,8 @@ namespace Gosu
63
80
  virtual void draw() {}
64
81
 
65
82
  //! Gives the game a chance to say no to being redrawn.
66
- //! This is not a definitive answer. The operating system can still cause
67
- //! redraws for one reason or another.
83
+ //! This is not a definitive answer. The operating system can still force
84
+ //! the window to redraw itself.
68
85
  //! By default, the window is redrawn all the time.
69
86
  virtual bool needsRedraw() const { return true; }
70
87
 
data/lib/1.8/gosu.so CHANGED
Binary file
data/lib/1.9/gosu.so CHANGED
Binary file
data/lib/2.0/gosu.so CHANGED
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gosu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.3
4
+ version: 0.8.4
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Julian Raschke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-29 00:00:00.000000000 Z
11
+ date: 2014-09-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |2
14
14
  2D game development library.