Travis CI: API documentation update at 2014-10-26 05:16:35 UTC.

[ci package]
This commit is contained in:
urho3d-travis-ci 2014-10-26 05:16:35 +00:00
Родитель 2c5fb1db03
Коммит 4a362593c2
4 изменённых файлов: 23 добавлений и 4 удалений

Просмотреть файл

@ -9397,6 +9397,8 @@ class Technique
{
// Methods:
Pass CreatePass(StringHash);
Pass GetPass(StringHash);
Pass GetSupportedPass(StringHash);
bool HasPass(StringHash) const;
bool Load(File);
bool Load(VectorBuffer&);
@ -9414,6 +9416,10 @@ String category;
uint memoryUse;
String name;
/* readonly */
uint numPasses;
/* readonly */
Array<StringHash> passTypes;
/* readonly */
Array<Pass> passes;
/* readonly */
int refs;

Просмотреть файл

@ -3754,10 +3754,14 @@ Properties:
Methods:
- bool IsSM3() const
- const String GetVertexShader() const
- const String GetPixelShader() const
Properties:
- bool SM3 (readonly)
- const String vertexShader (readonly)
- const String pixelShader (readonly)
<a name="Class_PhysicsRaycastResult"></a>
### PhysicsRaycastResult
@ -5193,13 +5197,18 @@ Properties:
Methods:
- bool HasPass(const String type) const
- Pass* GetPass(const String type) const
- bool HasPass(const StringHash type) const
- Pass* GetPass(const StringHash type) const
- Pass* GetSupportedPass(const StringHash type) const
- bool IsSM3() const
- unsigned GetNumPasses() const
- const Vector<StringHash>& GetPassTypes() const
- const PODVector<Pass*>& GetPasses() const
Properties:
- bool SM3 (readonly)
- unsigned numPasses (readonly)
<a name="Class_Terrain"></a>
### Terrain : Component

Просмотреть файл

@ -10313,6 +10313,8 @@ Properties:
Methods:
- Pass@ CreatePass(StringHash)
- Pass@ GetPass(StringHash)
- Pass@ GetSupportedPass(StringHash)
- bool HasPass(StringHash) const
- bool Load(File@)
- bool Load(VectorBuffer&)
@ -10327,7 +10329,9 @@ Properties:
- String category // readonly
- uint memoryUse // readonly
- String name
- Pass@[] passes // readonly
- uint numPasses // readonly
- StringHash[]@ passTypes // readonly
- Pass@[]@ passes // readonly
- int refs // readonly
- bool sm3
- StringHash type // readonly

Просмотреть файл

@ -1 +1 @@
0.0.30
0.0.31