Remove unnecessary duplication between renderers.

This commit is contained in:
Paul Chote
2013-03-04 20:17:22 +13:00
parent 786c3b1f1a
commit 21e8e3a78d
5 changed files with 83 additions and 146 deletions

View File

@@ -54,8 +54,6 @@ namespace OpenRA.Renderer.Null
public ITexture CreateTexture() { return new NullTexture(); }
public ITexture CreateTexture(Bitmap bitmap) { return new NullTexture(); }
public IShader CreateShader(string name) { return new NullShader(); }
public int GpuMemoryUsed { get { return 0; } }
}
public class NullShader : IShader