Travis CI: API documentation update at 2017-01-30 14:19:08 UTC.

[ci package]

Commit: 32310a2c12

Message: Rename FONT_TYPE enum to FontType and expose it to Font public API. Closes #1786.
This commit is contained in:
urho3d-travis-ci 2017-01-30 14:19:08 +00:00
parent 32310a2c12
commit a926e43496
4 changed files with 27 additions and 1 deletions

View File

@ -5099,6 +5099,8 @@ IntVector2 absoluteGlyphOffset;
/* readonly */
String category;
/* readonly */
FontType fontType;
/* readonly */
uint memoryUse;
String name;
/* readonly */
@ -14502,6 +14504,13 @@ FM_FOCUSABLE,
FM_FOCUSABLE_DEFOCUSABLE,
};
enum FontType
{
FONT_NONE,
FONT_FREETYPE,
FONT_BITMAP,
};
enum HighlightMode
{
HM_NEVER,

View File

@ -2456,12 +2456,14 @@ Methods:
- const IntVector2& GetAbsoluteGlyphOffset() const
- const Vector2& GetScaledGlyphOffset() const
- IntVector2 GetTotalGlyphOffset(int pointSize) const
- FontType GetFontType() const
- bool IsSDFFont() const
Properties:
- IntVector2 absoluteGlyphOffset
- Vector2 scaledGlyphOffset
- FontType fontType (readonly)
<a name="Class_Frustum"></a>
### Frustum
@ -7942,6 +7944,13 @@ Properties:
- int FM_FOCUSABLE
- int FM_FOCUSABLE_DEFOCUSABLE
### FontType
- int FONT_NONE
- int FONT_FREETYPE
- int FONT_BITMAP
- int MAX_FONT_TYPES
### FrustumPlane
- int PLANE_NEAR

View File

@ -7273,6 +7273,7 @@ Properties:
- IntVector2 absoluteGlyphOffset
- String category // readonly
- FontType fontType // readonly
- uint memoryUse // readonly
- String name
- int refs // readonly
@ -15583,6 +15584,13 @@ Properties:
- FM_FOCUSABLE_DEFOCUSABLE
### FontType
- FONT_NONE
- FONT_FREETYPE
- FONT_BITMAP
### HighlightMode
- HM_NEVER

View File

@ -1 +1 @@
0.1.40
0.1.41