summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_state_tracker.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-02-25 01:02:32 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-04-13 06:30:34 +0200
commit76615b9f34efe72dd8f5dcae0d192aa4dc29e970 (patch)
tree0ce8326404380a1eeb257d4c24ca2dcc0ac9f0ad /src/video_core/renderer_opengl/gl_state_tracker.cpp
parentMerge pull request #3606 from ReinUsesLisp/nvflinger (diff)
downloadyuzu-76615b9f34efe72dd8f5dcae0d192aa4dc29e970.tar
yuzu-76615b9f34efe72dd8f5dcae0d192aa4dc29e970.tar.gz
yuzu-76615b9f34efe72dd8f5dcae0d192aa4dc29e970.tar.bz2
yuzu-76615b9f34efe72dd8f5dcae0d192aa4dc29e970.tar.lz
yuzu-76615b9f34efe72dd8f5dcae0d192aa4dc29e970.tar.xz
yuzu-76615b9f34efe72dd8f5dcae0d192aa4dc29e970.tar.zst
yuzu-76615b9f34efe72dd8f5dcae0d192aa4dc29e970.zip
Diffstat (limited to 'src/video_core/renderer_opengl/gl_state_tracker.cpp')
-rw-r--r--src/video_core/renderer_opengl/gl_state_tracker.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_state_tracker.cpp b/src/video_core/renderer_opengl/gl_state_tracker.cpp
index 255ac3147..d24fad3de 100644
--- a/src/video_core/renderer_opengl/gl_state_tracker.cpp
+++ b/src/video_core/renderer_opengl/gl_state_tracker.cpp
@@ -185,6 +185,12 @@ void SetupDirtyPointSize(Tables& tables) {
tables[0][OFF(point_sprite_enable)] = PointSize;
}
+void SetupDirtyLineWidth(Tables& tables) {
+ tables[0][OFF(line_width_smooth)] = LineWidth;
+ tables[0][OFF(line_width_aliased)] = LineWidth;
+ tables[0][OFF(line_smooth_enable)] = LineWidth;
+}
+
void SetupDirtyClipControl(Tables& tables) {
auto& table = tables[0];
table[OFF(screen_y_control)] = ClipControl;
@@ -233,6 +239,7 @@ void StateTracker::Initialize() {
SetupDirtyLogicOp(tables);
SetupDirtyFragmentClampColor(tables);
SetupDirtyPointSize(tables);
+ SetupDirtyLineWidth(tables);
SetupDirtyClipControl(tables);
SetupDirtyDepthClampEnabled(tables);
SetupDirtyMisc(tables);