ENGINES: Add a new 'renderer' option to replace 'soft_renderer'

'soft_renderer' was a bool and was not useful to select a renderer
in a list with more than two values.
This commit is contained in:
Bastien Bouclet 2015-12-28 16:38:45 +01:00
parent 19cc6b41e7
commit 8d5406720c
11 changed files with 96 additions and 43 deletions

View file

@ -205,7 +205,7 @@ Math::Matrix4 makeFrustumMatrix(double left, double right, double bottom, double
return proj;
}
GfxBase *CreateGfxOpenGL() {
GfxBase *CreateGfxOpenGLShader() {
return new GfxOpenGLS();
}