gl_rasterizer: Remove extension booleans

This commit is contained in:
ReinUsesLisp 2018-11-24 00:07:42 -03:00
parent 5a9a84994a
commit 22c7c710b4
4 changed files with 4 additions and 16 deletions

View file

@ -111,6 +111,8 @@ void EmuWindow_SDL2::Fullscreen() {
bool EmuWindow_SDL2::SupportsRequiredGLExtensions() {
std::vector<std::string> unsupported_ext;
if (!GLAD_GL_ARB_direct_state_access)
unsupported_ext.push_back("ARB_direct_state_access");
if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev)
unsupported_ext.push_back("ARB_vertex_type_10f_11f_11f_rev");
if (!GLAD_GL_ARB_texture_mirror_clamp_to_edge)