CONFIGURE: Allow building with TinyGL disabled (#2528)

This commit is contained in:
Cameron Cawley 2020-10-14 19:31:22 +01:00 committed by GitHub
parent 53873ea583
commit 1bf1fb40fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 34 additions and 5 deletions

View file

@ -33,7 +33,9 @@ static const RendererTypeDescription rendererTypes[] = {
#if defined(USE_OPENGL_SHADERS) || defined(USE_GLES2)
{ "opengl_shaders", _s("OpenGL with shaders"), kRendererTypeOpenGLShaders },
#endif
#ifdef USE_TINYGL
{ "software", "Software", kRendererTypeTinyGL },
#endif
{ 0, 0, kRendererTypeDefault }
};