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

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

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

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

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

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

@ -1 +1 @@
0.0.30 0.0.31