summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_device.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-05-31 09:12:21 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-05-31 09:21:07 +0200
commitbb8ef381526cd9cc0a52f00383c755913a20aa43 (patch)
treec213d64efd56fc2084d66e86e20691e7407e2869 /src/video_core/renderer_opengl/gl_device.h
parentMerge pull request #3982 from ReinUsesLisp/membar-cts (diff)
downloadyuzu-bb8ef381526cd9cc0a52f00383c755913a20aa43.tar
yuzu-bb8ef381526cd9cc0a52f00383c755913a20aa43.tar.gz
yuzu-bb8ef381526cd9cc0a52f00383c755913a20aa43.tar.bz2
yuzu-bb8ef381526cd9cc0a52f00383c755913a20aa43.tar.lz
yuzu-bb8ef381526cd9cc0a52f00383c755913a20aa43.tar.xz
yuzu-bb8ef381526cd9cc0a52f00383c755913a20aa43.tar.zst
yuzu-bb8ef381526cd9cc0a52f00383c755913a20aa43.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_device.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/video_core/renderer_opengl/gl_device.h b/src/video_core/renderer_opengl/gl_device.h
index e915dbd86..683ed9002 100644
--- a/src/video_core/renderer_opengl/gl_device.h
+++ b/src/video_core/renderer_opengl/gl_device.h
@@ -80,10 +80,6 @@ public:
return has_precise_bug;
}
- bool HasBrokenCompute() const {
- return has_broken_compute;
- }
-
bool HasFastBufferSubData() const {
return has_fast_buffer_sub_data;
}
@@ -109,7 +105,6 @@ private:
bool has_variable_aoffi{};
bool has_component_indexing_bug{};
bool has_precise_bug{};
- bool has_broken_compute{};
bool has_fast_buffer_sub_data{};
bool use_assembly_shaders{};
};