StyleCop clean renderer DLLs

This commit is contained in:
Matthias Mailänder
2013-08-07 14:16:09 +02:00
parent d278bc84d1
commit 59b700fcde

View File

@@ -21,7 +21,7 @@ namespace OpenRA.Renderer.Null
{
public IGraphicsDevice Create(Size size, WindowMode windowMode)
{
return new NullGraphicsDevice( size, windowMode );
return new NullGraphicsDevice(size, windowMode);
}
}
@@ -54,7 +54,7 @@ namespace OpenRA.Renderer.Null
}
public void DrawPrimitives(PrimitiveType pt, int firstVertex, int numVertices) { }
public void SetLineWidth( float width ) { }
public void SetLineWidth(float width) { }
public IVertexBuffer<Vertex> CreateVertexBuffer(int size) { return new NullVertexBuffer<Vertex>(); }
public ITexture CreateTexture() { return new NullTexture(); }