Browse Source

Travis CI: API documentation update at 2016-04-24 09:48:53 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/31d362f879b05d064990e5619aa4c1d18437b074

Message: Add new engine parameter for enabling/disabling high DPI window mode.
Temporary fix for issue #1252. The high DPI mode is disabled by default.

urho3d-travis-ci 9 years ago
parent
commit
29f2984d71
4 changed files with 6 additions and 5 deletions
  1. 1 1
      Docs/AngelScriptAPI.h
  2. 1 1
      Docs/LuaScriptAPI.dox
  3. 3 2
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 1 - 1
Docs/AngelScriptAPI.h

@@ -5101,7 +5101,7 @@ void PrecacheShaders(File);
 void PrecacheShaders(VectorBuffer&);
 void SendEvent(const String&, VariantMap& = VariantMap ( ));
 bool SetMode(int, int);
-bool SetMode(int, int, bool, bool, bool, bool, bool, int);
+bool SetMode(int, int, bool, bool, bool, bool, bool, bool, int);
 void SetWindowPosition(int, int);
 bool TakeScreenShot(Image);
 bool ToggleFullscreen();

+ 1 - 1
Docs/LuaScriptAPI.dox

@@ -2491,7 +2491,7 @@ Methods:
 - void SetWindowIcon(Image* windowIcon)
 - void SetWindowPosition(const IntVector2& position)
 - void SetWindowPosition(int x, int y)
-- bool SetMode(int width, int height, bool fullscreen, bool borderless, bool resizable, bool vsync, bool tripleBuffer, int multiSample)
+- bool SetMode(int width, int height, bool fullscreen, bool borderless, bool resizable, bool highDPI, bool vsync, bool tripleBuffer, int multiSample)
 - bool SetMode(int width, int height)
 - void SetSRGB(bool enable)
 - void SetFlushGPU(bool enable)

+ 3 - 2
Docs/ScriptAPI.dox

@@ -81,8 +81,9 @@ namespace Urho3D
 - %Width : int
 - %Height : int
 - %Fullscreen : bool
-- %Resizable : bool
 - %Borderless : bool
+- %Resizable : bool
+- %HighDPI : bool
 
 ### WindowPos
 - %X : int
@@ -6966,7 +6967,7 @@ Methods:
 - void PrecacheShaders(VectorBuffer&)
 - void SendEvent(const String&, VariantMap& = VariantMap ( ))
 - bool SetMode(int, int)
-- bool SetMode(int, int, bool, bool, bool, bool, bool, int)
+- bool SetMode(int, int, bool, bool, bool, bool, bool, bool, int)
 - void SetWindowPosition(int, int)
 - bool TakeScreenShot(Image@)
 - bool ToggleFullscreen()

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.213
+0.0.214