Browse Source

Travis CI: API documentation update at 2016-09-12 21:07:18 UTC.
[ci package]

Commit: https://github.com/urho3d/Urho3D/commit/b22768227f2e0c00ec85bfb02a81826b4e04ecca

Message: Possibility to enable alpha-to-coverage in either pass or material (all passes). Requires D3D11 or OpenGL and hardware multisampling enabled. Seems to look slightly different on D3D / OpenGL. Fixed depth bias not being copied in Material::Clone(). Closes #1578.

urho3d-travis-ci 9 years ago
parent
commit
1f6be30c98
4 changed files with 11 additions and 1 deletions
  1. 2 0
      Docs/AngelScriptAPI.h
  2. 6 0
      Docs/LuaScriptAPI.dox
  3. 2 0
      Docs/ScriptAPI.dox
  4. 1 1
      Source/Urho3D/.soversion

+ 2 - 0
Docs/AngelScriptAPI.h

@@ -6264,6 +6264,7 @@ void SetUVTransform(const Vector2&, float, float);
 void SortTechniques();
 void SortTechniques();
 
 
 // Properties:
 // Properties:
+bool alphaToCoverage;
 /* readonly */
 /* readonly */
 String category;
 String category;
 CullMode cullMode;
 CullMode cullMode;
@@ -7976,6 +7977,7 @@ class Pass
 {
 {
 
 
 // Properties:
 // Properties:
+bool alphaToCoverage;
 BlendMode blendMode;
 BlendMode blendMode;
 CullMode cullMode;
 CullMode cullMode;
 CompareMode depthTestMode;
 CompareMode depthTestMode;

+ 6 - 0
Docs/LuaScriptAPI.dox

@@ -3297,6 +3297,7 @@ Methods:
 - void SetShadowCullMode(CullMode mode)
 - void SetShadowCullMode(CullMode mode)
 - void SetFillMode(FillMode mode)
 - void SetFillMode(FillMode mode)
 - void SetDepthBias(const BiasParameters& parameters)
 - void SetDepthBias(const BiasParameters& parameters)
+- void SetAlphaToCoverage(bool enable)
 - void SetRenderOrder(char renderOrder)
 - void SetRenderOrder(char renderOrder)
 - void SetOcclusion(bool enable)
 - void SetOcclusion(bool enable)
 - void SetScene(Scene* scene)
 - void SetScene(Scene* scene)
@@ -3318,6 +3319,7 @@ Methods:
 - CullMode GetShadowCullMode() const
 - CullMode GetShadowCullMode() const
 - FillMode GetFillMode() const
 - FillMode GetFillMode() const
 - const BiasParameters& GetDepthBias() const
 - const BiasParameters& GetDepthBias() const
+- bool GetAlphaToCoverage() const
 - char GetRenderOrder() const
 - char GetRenderOrder() const
 - bool GetOcclusion() const
 - bool GetOcclusion() const
 - bool GetSpecular() const
 - bool GetSpecular() const
@@ -3331,6 +3333,7 @@ Properties:
 - CullMode shadowCullMode
 - CullMode shadowCullMode
 - FillMode fillMode
 - FillMode fillMode
 - BiasParameters depthBias
 - BiasParameters depthBias
+- bool alphaToCoverage
 - char renderOrder
 - char renderOrder
 - bool occlusion
 - bool occlusion
 - bool specular (readonly)
 - bool specular (readonly)
@@ -4401,6 +4404,7 @@ Methods:
 - void SetDepthTestMode(CompareMode mode)
 - void SetDepthTestMode(CompareMode mode)
 - void SetLightingMode(PassLightingMode mode)
 - void SetLightingMode(PassLightingMode mode)
 - void SetDepthWrite(bool enable)
 - void SetDepthWrite(bool enable)
+- void SetAlphaToCoverage(bool enable)
 - void SetIsDesktop(bool enable)
 - void SetIsDesktop(bool enable)
 - void SetVertexShader(const String name)
 - void SetVertexShader(const String name)
 - void SetPixelShader(const String name)
 - void SetPixelShader(const String name)
@@ -4416,6 +4420,7 @@ Methods:
 - CompareMode GetDepthTestMode() const
 - CompareMode GetDepthTestMode() const
 - PassLightingMode GetLightingMode() const
 - PassLightingMode GetLightingMode() const
 - bool GetDepthWrite() const
 - bool GetDepthWrite() const
+- bool GetAlphaToCoverage() const
 - bool IsDesktop() const
 - bool IsDesktop() const
 - const String GetVertexShader() const
 - const String GetVertexShader() const
 - const String GetPixelShader() const
 - const String GetPixelShader() const
@@ -4433,6 +4438,7 @@ Properties:
 - CompareMode depthTestMode
 - CompareMode depthTestMode
 - PassLightingMode lightingMode
 - PassLightingMode lightingMode
 - bool depthWrite
 - bool depthWrite
+- bool alphaToCoverage
 - bool desktop (readonly)
 - bool desktop (readonly)
 - String vertexShader
 - String vertexShader
 - String pixelShader
 - String pixelShader

+ 2 - 0
Docs/ScriptAPI.dox

@@ -8054,6 +8054,7 @@ Methods:
 
 
 Properties:
 Properties:
 
 
+- bool alphaToCoverage
 - String category // readonly
 - String category // readonly
 - CullMode cullMode
 - CullMode cullMode
 - BiasParameters depthBias
 - BiasParameters depthBias
@@ -9584,6 +9585,7 @@ Properties:
 
 
 Properties:
 Properties:
 
 
+- bool alphaToCoverage
 - BlendMode blendMode
 - BlendMode blendMode
 - CullMode cullMode
 - CullMode cullMode
 - CompareMode depthTestMode
 - CompareMode depthTestMode

+ 1 - 1
Source/Urho3D/.soversion

@@ -1 +1 @@
-0.1.5
+0.1.6