Browse Source

Merge pull request #6108 from jbeich/freebsd-async-shaders

gl_device: unblock async shaders on other Unix systems
pull/15/merge
bunnei 5 years ago
committed by GitHub
parent
commit
b83eb4dd18
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/video_core/renderer_opengl/gl_device.cpp

2
src/video_core/renderer_opengl/gl_device.cpp

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

Loading…
Cancel
Save