Add SDL2 renderer based on SDL2# wrapper. Closes #3315.

SDL2# binary was built from commit 70af91f84493a924a3c1da46ae6209bb5f7222e3.
This commit is contained in:
Paul Chote
2013-10-30 20:41:16 +13:00
parent 71c6124c10
commit b1a60eface
10 changed files with 873 additions and 4 deletions

View File

@@ -39,6 +39,6 @@ namespace OpenRA.Renderer.Glsl
public GraphicsDevice(Size size, WindowMode window)
: base(size, window, requiredExtensions) { }
public override IShader CreateShader(string name) { return new Shader(this, name); }
public override IShader CreateShader(string name) { return new Shader(name); }
}
}