summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-12-11 04:00:30 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-12-11 04:00:30 +0100
commitf564eaebedd4dc9e9051faa2e2103056b8db14eb (patch)
tree78a28f0b611c39de14df50f93b421c794f45bae0 /src/video_core/renderer_opengl
parentMerge pull request #3201 from lioncash/dump (diff)
downloadyuzu-f564eaebedd4dc9e9051faa2e2103056b8db14eb.tar
yuzu-f564eaebedd4dc9e9051faa2e2103056b8db14eb.tar.gz
yuzu-f564eaebedd4dc9e9051faa2e2103056b8db14eb.tar.bz2
yuzu-f564eaebedd4dc9e9051faa2e2103056b8db14eb.tar.lz
yuzu-f564eaebedd4dc9e9051faa2e2103056b8db14eb.tar.xz
yuzu-f564eaebedd4dc9e9051faa2e2103056b8db14eb.tar.zst
yuzu-f564eaebedd4dc9e9051faa2e2103056b8db14eb.zip
Diffstat (limited to 'src/video_core/renderer_opengl')
-rw-r--r--src/video_core/renderer_opengl/gl_device.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_device.cpp b/src/video_core/renderer_opengl/gl_device.cpp
index 413d8546b..1a2e2a9f7 100644
--- a/src/video_core/renderer_opengl/gl_device.cpp
+++ b/src/video_core/renderer_opengl/gl_device.cpp
@@ -5,6 +5,7 @@
#include <algorithm>
#include <array>
#include <cstddef>
+#include <cstring>
#include <optional>
#include <vector>
@@ -134,11 +135,13 @@ std::array<Device::BaseBindings, Tegra::Engines::MaxShaderTypes> BuildBaseBindin
Device::Device() : base_bindings{BuildBaseBindings()} {
const std::string_view vendor = reinterpret_cast<const char*>(glGetString(GL_VENDOR));
+ const auto renderer = reinterpret_cast<const char*>(glGetString(GL_RENDERER));
const std::vector extensions = GetExtensions();
const bool is_nvidia = vendor == "NVIDIA Corporation";
const bool is_amd = vendor == "ATI Technologies Inc.";
const bool is_intel = vendor == "Intel";
+ const bool is_intel_proprietary = is_intel && std::strstr(renderer, "Mesa") == nullptr;
uniform_buffer_alignment = GetInteger<std::size_t>(GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT);
shader_storage_alignment = GetInteger<std::size_t>(GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT);
@@ -152,7 +155,7 @@ Device::Device() : base_bindings{BuildBaseBindings()} {
has_variable_aoffi = TestVariableAoffi();
has_component_indexing_bug = is_amd;
has_precise_bug = TestPreciseBug();
- has_broken_compute = is_intel;
+ has_broken_compute = is_intel_proprietary;
has_fast_buffer_sub_data = is_nvidia;
LOG_INFO(Render_OpenGL, "Renderer_VariableAOFFI: {}", has_variable_aoffi);