Browse Source

Travis CI: API documentation update at 2017-02-10 10:18:17 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/26574dcc27c2f8dff9b321cce9e460cb7fa5c466

Message: Add explicit Vector2 & Vector3 constructors taking IntVector2 & IntVector3. Add Graphics::GetSize(). Closes #1814.

urho3d-travis-ci 8 years ago
parent
commit
15c2da904e
4 changed files with 10 additions and 1 deletions
  1. 2 0
      Docs/AngelScriptAPI.h
  2. 6 0
      Docs/LuaScriptAPI.dox
  3. 1 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 2 - 0
Docs/AngelScriptAPI.h

@@ -5253,6 +5253,8 @@ bool sRGBSupport;
 bool sRGBWriteSupport;
 bool sRGBWriteSupport;
 String shaderCacheDir;
 String shaderCacheDir;
 /* readonly */
 /* readonly */
+IntVector2 size;
+/* readonly */
 bool tripleBuffer;
 bool tripleBuffer;
 /* readonly */
 /* readonly */
 StringHash type;
 StringHash type;

+ 6 - 0
Docs/LuaScriptAPI.dox

@@ -2576,6 +2576,7 @@ Methods:
 - int GetWidth() const
 - int GetWidth() const
 - int GetHeight() const
 - int GetHeight() const
 - int GetMultiSample() const
 - int GetMultiSample() const
+- IntVector2 GetSize() const
 - bool GetFullscreen() const
 - bool GetFullscreen() const
 - bool GetResizable() const
 - bool GetResizable() const
 - bool GetBorderless() const
 - bool GetBorderless() const
@@ -2628,6 +2629,7 @@ Properties:
 - int width (readonly)
 - int width (readonly)
 - int height (readonly)
 - int height (readonly)
 - int multiSample (readonly)
 - int multiSample (readonly)
+- IntVector2 size (readonly)
 - bool fullscreen (readonly)
 - bool fullscreen (readonly)
 - bool resizable (readonly)
 - bool resizable (readonly)
 - bool borderless (readonly)
 - bool borderless (readonly)
@@ -7244,6 +7246,8 @@ Methods:
 - Vector2* new()
 - Vector2* new()
 - Vector2(const Vector2& vector) (GC)
 - Vector2(const Vector2& vector) (GC)
 - Vector2* new(const Vector2& vector)
 - Vector2* new(const Vector2& vector)
+- Vector2(const IntVector2& vector) (GC)
+- Vector2* new(const IntVector2& vector)
 - Vector2(float x, float y) (GC)
 - Vector2(float x, float y) (GC)
 - Vector2* new(float x, float y)
 - Vector2* new(float x, float y)
 - void delete()
 - void delete()
@@ -7295,6 +7299,8 @@ Methods:
 - Vector3* new(const Vector2& vector, float z)
 - Vector3* new(const Vector2& vector, float z)
 - Vector3(const Vector2& vector) (GC)
 - Vector3(const Vector2& vector) (GC)
 - Vector3* new(const Vector2& vector)
 - Vector3* new(const Vector2& vector)
+- Vector3(const IntVector3& vector) (GC)
+- Vector3* new(const IntVector3& vector)
 - Vector3(float x, float y, float z) (GC)
 - Vector3(float x, float y, float z) (GC)
 - Vector3* new(float x, float y, float z)
 - Vector3* new(float x, float y, float z)
 - Vector3(float x, float y) (GC)
 - Vector3(float x, float y) (GC)

+ 1 - 0
Docs/ScriptAPI.dox

@@ -7396,6 +7396,7 @@ Properties:
 - bool sRGBSupport // readonly
 - bool sRGBSupport // readonly
 - bool sRGBWriteSupport // readonly
 - bool sRGBWriteSupport // readonly
 - String shaderCacheDir
 - String shaderCacheDir
+- IntVector2 size // readonly
 - bool tripleBuffer // readonly
 - bool tripleBuffer // readonly
 - StringHash type // readonly
 - StringHash type // readonly
 - String typeName // readonly
 - String typeName // readonly

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.42
+0.1.43