Travis CI: API documentation update at 2016-10-01 13:05:53 UTC.

[ci package]

Commit: 0ea9ed6e34

Message: Possibility in DecalSet to size VB/IB to only size used by decals. Default off; causes reallocation whenever decals are added/removed and thus can have worse performance.
This commit is contained in:
urho3d-travis-ci 2016-10-01 13:05:53 +00:00
parent 0ea9ed6e34
commit 1377657b2d
4 changed files with 7 additions and 1 deletions

View File

@ -4140,6 +4140,7 @@ uint numVertices;
ObjectAnimation objectAnimation;
bool occludee;
bool occluder;
bool optimizeBufferSize;
/* readonly */
int refs;
float shadowDistance;

View File

@ -1968,6 +1968,7 @@ Methods:
- void SetMaterial(Material* material)
- void SetMaxVertices(unsigned num)
- void SetMaxIndices(unsigned num)
- void SetOptimizeBufferSize(bool enable)
- bool AddDecal(Drawable* target, const Vector3& worldPosition, const Quaternion& worldRotation, float size, float aspectRatio, float depth, const Vector2& topLeftUV, const Vector2& bottomRightUV, float timeToLive = 0.0f, float normalCutoff = 0.1f, unsigned subGeometry = M_MAX_UNSIGNED)
- void RemoveDecals(unsigned num)
- void RemoveAllDecals()
@ -1977,6 +1978,7 @@ Methods:
- unsigned GetNumIndices() const
- unsigned GetMaxVertices() const
- unsigned GetMaxIndices() const
- bool GetOptimizeBufferSize() const
Properties:
@ -1986,6 +1988,7 @@ Properties:
- unsigned numIndices (readonly)
- unsigned maxVertices
- unsigned maxIndices
- bool optimizeBufferSize
<a name="Class_Deserializer"></a>
### Deserializer

View File

@ -1358,6 +1358,7 @@ namespace Urho3D
- %Material : ResourceRef
- %Max %Vertices : int
- %Max %Indices : int
- %Optimize %Buffer %Size : bool
- %Can %Be %Occluded : bool
- %Draw %Distance : float
- %Max %Lights : int
@ -6248,6 +6249,7 @@ Properties:
- ObjectAnimation@ objectAnimation
- bool occludee
- bool occluder
- bool optimizeBufferSize
- int refs // readonly
- float shadowDistance
- uint shadowMask

View File

@ -1 +1 @@
0.1.11
0.1.12