mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-15 16:21:44 +00: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…
x
Reference in New Issue
Block a user