mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
[GLExtensions] Support ORing of extensions when checking for support.
Makes my life easier.
This commit is contained in:
parent
cc3dc05438
commit
6d2fd8ae37
@ -2056,6 +2056,8 @@ namespace GLExtensions
|
||||
{
|
||||
if (tmp[0] == '!')
|
||||
result &= !m_extension_list[tmp.erase(0, 1)];
|
||||
else if (tmp[0] == '|')
|
||||
result |= m_extension_list[tmp.erase(0, 1)];
|
||||
else
|
||||
result &= m_extension_list[tmp];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user