Browse Source

Travis CI: API documentation update at 2015-05-31 17:31:20 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/46ebfb4b228df33be97410156f650d2697c70409

Message: Fix GetData() from rendertarget textures on D3D9. Thanks for JSandusky for bringing into attention. Added GetComponents() to Texture to easily determine which kind of Image needs to be created to receive the texture data.

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

+ 8 - 0
Docs/AngelScriptAPI.h

@@ -10661,6 +10661,8 @@ Color borderColor;
 /* readonly */
 String category;
 /* readonly */
+uint components;
+/* readonly */
 bool compressed;
 /* readonly */
 bool dataLost;
@@ -10718,6 +10720,8 @@ Color borderColor;
 /* readonly */
 String category;
 /* readonly */
+uint components;
+/* readonly */
 bool compressed;
 /* readonly */
 bool dataLost;
@@ -10777,6 +10781,8 @@ Color borderColor;
 /* readonly */
 String category;
 /* readonly */
+uint components;
+/* readonly */
 bool compressed;
 /* readonly */
 bool dataLost;
@@ -10836,6 +10842,8 @@ Color borderColor;
 /* readonly */
 String category;
 /* readonly */
+uint components;
+/* readonly */
 bool compressed;
 /* readonly */
 bool dataLost;

+ 2 - 0
Docs/LuaScriptAPI.dox

@@ -5835,6 +5835,7 @@ Methods:
 - TextureUsage GetUsage() const
 - unsigned GetDataSize(int width, int height) const
 - unsigned GetRowDataSize(int width) const
+- unsigned GetComponents() const
 
 Properties:
 
@@ -5843,6 +5844,7 @@ Properties:
 - unsigned levels (readonly)
 - int width (readonly)
 - int height (readonly)
+- unsigned components (readonly)
 - TextureFilterMode filterMode
 - Color& borderColor
 - bool sRGB

+ 4 - 0
Docs/ScriptAPI.dox

@@ -11586,6 +11586,7 @@ Properties:
 - StringHash baseType // readonly
 - Color borderColor
 - String category // readonly
+- uint components // readonly
 - bool compressed // readonly
 - bool dataLost // readonly
 - TextureFilterMode filterMode
@@ -11629,6 +11630,7 @@ Properties:
 - StringHash baseType // readonly
 - Color borderColor
 - String category // readonly
+- uint components // readonly
 - bool compressed // readonly
 - bool dataLost // readonly
 - TextureFilterMode filterMode
@@ -11673,6 +11675,7 @@ Properties:
 - StringHash baseType // readonly
 - Color borderColor
 - String category // readonly
+- uint components // readonly
 - bool compressed // readonly
 - bool dataLost // readonly
 - TextureFilterMode filterMode
@@ -11717,6 +11720,7 @@ Properties:
 - StringHash baseType // readonly
 - Color borderColor
 - String category // readonly
+- uint components // readonly
 - bool compressed // readonly
 - bool dataLost // readonly
 - TextureFilterMode filterMode

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.0.111
+0.0.112