Skip to content
This repository has been archived by the owner on Mar 30, 2019. It is now read-only.

Commit

Permalink
[SharpDX] Split some classe to a new Mathematics assembly. Move some …
Browse files Browse the repository at this point in the history
…classes only used by the Toolkit to SharpDX.Toolkit WIP (#398)
  • Loading branch information
xoofx committed May 28, 2014
1 parent 523a2ad commit 18d89eb
Show file tree
Hide file tree
Showing 130 changed files with 32,381 additions and 32,813 deletions.
2,210 changes: 1,197 additions & 1,013 deletions SharpDX.sln

Large diffs are not rendered by default.

384 changes: 192 additions & 192 deletions Source/Mapping.xml

Large diffs are not rendered by default.

14 changes: 1 addition & 13 deletions Source/SharpDX.Direct3D11/StreamOutputElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,9 @@
// THE SOFTWARE.
using System;

using SharpDX.Serialization;

namespace SharpDX.Direct3D11
{
public partial struct StreamOutputElement : IDataSerializable
public partial struct StreamOutputElement
{
/// <summary>
/// Initializes a new instance of the <see cref="StreamOutputElement"/> struct.
Expand All @@ -43,15 +41,5 @@ public StreamOutputElement(int streamIndex, string semanticName, int semanticInd
ComponentCount = componentCount;
OutputSlot = outputSlot;
}

void IDataSerializable.Serialize(BinarySerializer serializer)
{
serializer.Serialize(ref Stream);
serializer.Serialize(ref SemanticName);
serializer.Serialize(ref SemanticIndex);
serializer.Serialize(ref StartComponent);
serializer.Serialize(ref ComponentCount);
serializer.Serialize(ref OutputSlot);
}
}
}
Loading

1 comment on commit 18d89eb

@ArtiomCiumac
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why it shows entire file contents as changed for the files which were only renamed? Maybe it's something to do with Tab/space identation?

Please sign in to comment.