summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_device.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-06-15 23:23:57 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:38 +0200
commitd36f667bc0adaa9f50d53efb4c908aadc38921a6 (patch)
tree13a6a6106ca576214db66d50a618b404cc5c7cac /src/video_core/renderer_opengl/gl_device.h
parentglsl: Move gl_Position/generic attribute initialization to EmitProlgue (diff)
downloadyuzu-d36f667bc0adaa9f50d53efb4c908aadc38921a6.tar
yuzu-d36f667bc0adaa9f50d53efb4c908aadc38921a6.tar.gz
yuzu-d36f667bc0adaa9f50d53efb4c908aadc38921a6.tar.bz2
yuzu-d36f667bc0adaa9f50d53efb4c908aadc38921a6.tar.lz
yuzu-d36f667bc0adaa9f50d53efb4c908aadc38921a6.tar.xz
yuzu-d36f667bc0adaa9f50d53efb4c908aadc38921a6.tar.zst
yuzu-d36f667bc0adaa9f50d53efb4c908aadc38921a6.zip
Diffstat (limited to 'src/video_core/renderer_opengl/gl_device.h')
-rw-r--r--src/video_core/renderer_opengl/gl_device.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_device.h b/src/video_core/renderer_opengl/gl_device.h
index 0b59c9df0..0c9d6fe31 100644
--- a/src/video_core/renderer_opengl/gl_device.h
+++ b/src/video_core/renderer_opengl/gl_device.h
@@ -136,6 +136,10 @@ public:
return warp_size_potentially_larger_than_guest;
}
+ bool NeedsFastmathOff() const {
+ return need_fastmath_off;
+ }
+
private:
static bool TestVariableAoffi();
static bool TestPreciseBug();
@@ -171,6 +175,7 @@ private:
bool has_amd_shader_half_float{};
bool has_sparse_texture_2{};
bool warp_size_potentially_larger_than_guest{};
+ bool need_fastmath_off{};
};
} // namespace OpenGL