- RenderSystem.Metro: fixed #1005

This commit is contained in:
Glatzemann 2012-09-20 08:13:30 +00:00 committed by Konstantin Koch
parent 56488848f2
commit 8523993cb2
4 changed files with 9 additions and 9 deletions

View File

@ -32,7 +32,7 @@ using System.Runtime.InteropServices;
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern // Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben: // übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.7.16.0")] [assembly: AssemblyVersion("0.7.17.0")]
[assembly: AssemblyFileVersion("0.7.16.0")] [assembly: AssemblyFileVersion("0.7.17.0")]
[assembly: InternalsVisibleTo("ANX.Framework.ContentPipeline")] [assembly: InternalsVisibleTo("ANX.Framework.ContentPipeline")]

View File

@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
// Buildnummer // Buildnummer
// Revision // Revision
// //
[assembly: AssemblyVersion("0.7.8.0")] [assembly: AssemblyVersion("0.7.9.0")]
[assembly: AssemblyFileVersion("0.7.8.0")] [assembly: AssemblyFileVersion("0.7.9.0")]

View File

@ -283,9 +283,8 @@ namespace ANX.RenderSystem.Windows.Metro
if (nativeVertexBuffer != null) if (nativeVertexBuffer != null)
{ {
nativeVertexBufferBindings[i] = new Dx11.VertexBufferBinding(nativeVertexBuffer.NativeBuffer, int vertexStride = anxVertexBufferBinding.VertexBuffer.VertexDeclaration.VertexStride;
anxVertexBufferBinding.VertexBuffer.VertexDeclaration.VertexStride, nativeVertexBufferBindings[i] = new Dx11.VertexBufferBinding(nativeVertexBuffer.NativeBuffer, vertexStride, anxVertexBufferBinding.VertexOffset * vertexStride);
anxVertexBufferBinding.VertexOffset);
} }
else else
{ {

View File

@ -24,5 +24,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.4.0")] [assembly: AssemblyVersion("0.2.5.*")]
[assembly: AssemblyFileVersion("0.0.4.0")] [assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: GuidAttribute("855A261E-DB66-4CB2-97F3-34BC9DA4DAA1")]