Browse Source

Travis CI: API documentation update at 2020-02-28 18:28:54 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/18c7230eb797e47d668211eb43478b32a17b5630

Message: Minor API update, bug fixes, cleanup.

* Remove undefined behavior caused by volatile variables in WorkQueue (volatile variables are not required to be thread-safe).
* Fix nasty DX11 bug caused by poor hash functions and likely hash collision in ShaderVariation.
* Relaxed FlagSet usage requirements.
* Various API extensions and code simplification.
* Const-correctness fixes.

urho3d-travis-ci 5 years ago
parent
commit
35a1509dfe
4 changed files with 4 additions and 4 deletions
  1. 1 1
      Docs/AngelScriptAPI.h
  2. 1 1
      Docs/LuaScriptAPI.dox
  3. 1 1
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 1 - 1
Docs/AngelScriptAPI.h

@@ -15425,7 +15425,7 @@ bool HasSubscribedToEvent(Object, const String&);
 bool HasSubscribedToEvent(const String&);
 bool HasSubscribedToEvent(const String&);
 Vector3 ScreenToWorldPoint(int, int, float) const;
 Vector3 ScreenToWorldPoint(int, int, float) const;
 void SendEvent(const String&, VariantMap& = VariantMap ( ));
 void SendEvent(const String&, VariantMap& = VariantMap ( ));
-void SetRenderPath(XMLFile);
+bool SetRenderPath(XMLFile);
 IntVector2 WorldToScreenPoint(const Vector3&) const;
 IntVector2 WorldToScreenPoint(const Vector3&) const;
 
 
 // Properties:
 // Properties:

+ 1 - 1
Docs/LuaScriptAPI.dox

@@ -7952,7 +7952,7 @@ Methods:
 - void SetCullCamera(Camera* camera)
 - void SetCullCamera(Camera* camera)
 - void SetRect(const IntRect& rect)
 - void SetRect(const IntRect& rect)
 - void SetRenderPath(RenderPath* path)
 - void SetRenderPath(RenderPath* path)
-- void SetRenderPath(XMLFile* file)
+- bool SetRenderPath(XMLFile* file)
 - void SetDrawDebug(bool enable)
 - void SetDrawDebug(bool enable)
 - Scene* GetScene() const
 - Scene* GetScene() const
 - Camera* GetCamera() const
 - Camera* GetCamera() const

+ 1 - 1
Docs/ScriptAPI.dox

@@ -16069,7 +16069,7 @@ Methods:
 - bool HasSubscribedToEvent(const String&)
 - bool HasSubscribedToEvent(const String&)
 - Vector3 ScreenToWorldPoint(int, int, float) const
 - Vector3 ScreenToWorldPoint(int, int, float) const
 - void SendEvent(const String&, VariantMap& = VariantMap ( ))
 - void SendEvent(const String&, VariantMap& = VariantMap ( ))
-- void SetRenderPath(XMLFile@)
+- bool SetRenderPath(XMLFile@)
 - IntVector2 WorldToScreenPoint(const Vector3&) const
 - IntVector2 WorldToScreenPoint(const Vector3&) const
 
 
 Properties:
 Properties:

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.131
+0.1.132