Browse Source

Travis CI: API documentation update at 2014-12-06 13:20:33 UTC.
[ci package]

urho3d-travis-ci 11 years ago
parent
commit
9d670a113e
4 changed files with 36 additions and 2 deletions
  1. 18 0
      Docs/AngelScriptAPI.h
  2. 1 1
      Docs/LuaScriptAPI.dox
  3. 16 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Engine/.soversion

+ 18 - 0
Docs/AngelScriptAPI.h

@@ -4413,6 +4413,8 @@ uint components;
 /* readonly */
 bool compressed;
 /* readonly */
+CompressedFormat compressedFormat;
+/* readonly */
 int depth;
 /* readonly */
 int height;
@@ -4420,6 +4422,8 @@ int height;
 uint memoryUse;
 String name;
 /* readonly */
+uint numCompressedLevels;
+/* readonly */
 int refs;
 /* readonly */
 StringHash type;
@@ -11884,6 +11888,20 @@ CMP_GREATER,
 CMP_GREATEREQUAL,
 };
 
+enum CompressedFormat
+{
+CF_NONE,
+CF_RGBA,
+CF_DXT1,
+CF_DXT3,
+CF_DXT5,
+CF_ETC1,
+CF_PVRTC_RGB_2BPP,
+CF_PVRTC_RGBA_2BPP,
+CF_PVRTC_RGB_4BPP,
+CF_PVRTC_RGBA_4BPP,
+};
+
 enum ConstraintType
 {
 CONSTRAINT_POINT,

+ 1 - 1
Docs/LuaScriptAPI.dox

@@ -2331,7 +2331,6 @@ Methods:
 - bool IsCompressed() const
 - CompressedFormat GetCompressedFormat() const
 - unsigned GetNumCompressedLevels() const
-- CompressedLevel GetCompressedLevel(unsigned index) const
 - Image* GetSubimage(const IntRect& rect) const
 
 Properties:
@@ -6729,6 +6728,7 @@ Properties:
 ### CompressedFormat
 
 - int CF_NONE
+- int CF_RGBA
 - int CF_DXT1
 - int CF_DXT3
 - int CF_DXT5

+ 16 - 0
Docs/ScriptAPI.dox

@@ -5987,10 +5987,12 @@ Properties:
 - String category // readonly
 - uint components // readonly
 - bool compressed // readonly
+- CompressedFormat compressedFormat // readonly
 - int depth // readonly
 - int height // readonly
 - uint memoryUse // readonly
 - String name
+- uint numCompressedLevels // readonly
 - int refs // readonly
 - StringHash type // readonly
 - String typeName // readonly
@@ -12476,6 +12478,20 @@ Properties:
 - CMP_GREATEREQUAL
 
 
+### CompressedFormat
+
+- CF_NONE
+- CF_RGBA
+- CF_DXT1
+- CF_DXT3
+- CF_DXT5
+- CF_ETC1
+- CF_PVRTC_RGB_2BPP
+- CF_PVRTC_RGBA_2BPP
+- CF_PVRTC_RGB_4BPP
+- CF_PVRTC_RGBA_4BPP
+
+
 ### ConstraintType
 
 - CONSTRAINT_POINT

+ 1 - 1
Source/Engine/.soversion

@@ -1 +1 @@
-0.0.51
+0.0.52