1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-04-17 09:44:08 -05:00

Merge pull request from jbeich/freebsd-async-shaders

gl_device: unblock async shaders on other Unix systems
This commit is contained in:
bunnei 2021-03-24 16:52:27 -07:00 committed by GitHub
commit b83eb4dd18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -210,7 +210,7 @@ Device::Device() {
const bool is_amd = vendor == "ATI Technologies Inc."; const bool is_amd = vendor == "ATI Technologies Inc.";
const bool is_intel = vendor == "Intel"; const bool is_intel = vendor == "Intel";
#ifdef __linux__ #ifdef __unix__
const bool is_linux = true; const bool is_linux = true;
#else #else
const bool is_linux = false; const bool is_linux = false;