Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/vvvv/vvvv into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
joreg committed Jun 15, 2017
2 parents 706d543 + b601655 commit c9c9ed6
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
11 changes: 10 additions & 1 deletion vvvv45/src/nodes/plugins/Layer/DrawText/DrawText.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,12 @@ public void Evaluate(int spreadMax)
foreach (var kv in FFonts)
kv.Value.Tag = null;

if (e != null)
{
var e_ = e;
e = null;
throw e_;
}
}
#endregion mainloop

Expand Down Expand Up @@ -374,12 +380,15 @@ public void Render(IDXLayerIO ForPin, Device OnDevice)
catch (Exception e)
{
Logger.Log(e);
this.e = e;
}
finally
{
dh.Sprite.End();
}
}
#endregion
#endregion

Exception e;
}
}
22 changes: 22 additions & 0 deletions vvvv45/vvvv.exe.config
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,28 @@
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.4.0.0" newVersion="4.4.0.0" />
</dependentAssembly>

<dependentAssembly>
<assemblyIdentity name="SharpDX" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="SharpDX.Mathematics" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="SharpDX.DXGI" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="SharpDX.Direct2D1" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="SharpDX.RawInput" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.1.0" />
</dependentAssembly>

</assemblyBinding>
</runtime>
</configuration>

0 comments on commit c9c9ed6

Please sign in to comment.