diff options
| author | 2018-09-01 19:29:20 +1000 | |
|---|---|---|
| committer | 2018-09-01 19:29:20 +1000 | |
| commit | 2edab4e840a09a65ca6ac61d83c26aea6899e81e (patch) | |
| tree | 913be325f9c4decd29a8a0e1a11ea3fc42b56a53 /src/video_core/renderer_opengl | |
| parent | Changed tab5980_0 default from 0 -> 1 (diff) | |
| download | yuzu-2edab4e840a09a65ca6ac61d83c26aea6899e81e.tar.gz yuzu-2edab4e840a09a65ca6ac61d83c26aea6899e81e.tar.xz yuzu-2edab4e840a09a65ca6ac61d83c26aea6899e81e.zip | |
Removed saturate assert
Saturate already implemented
Diffstat (limited to 'src/video_core/renderer_opengl')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_shader_decompiler.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp index 1d1ddb39b..974798a98 100644 --- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp +++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp | |||
| @@ -1436,7 +1436,6 @@ private: | |||
| 1436 | std::string op_b = instr.ffma.negate_b ? "-" : ""; | 1436 | std::string op_b = instr.ffma.negate_b ? "-" : ""; |
| 1437 | std::string op_c = instr.ffma.negate_c ? "-" : ""; | 1437 | std::string op_c = instr.ffma.negate_c ? "-" : ""; |
| 1438 | 1438 | ||
| 1439 | ASSERT_MSG(instr.ffma.saturate == 0, "FFMA Saturate not implemented"); | ||
| 1440 | ASSERT_MSG(instr.ffma.cc == 0, "FFMA cc not implemented"); | 1439 | ASSERT_MSG(instr.ffma.cc == 0, "FFMA cc not implemented"); |
| 1441 | ASSERT_MSG(instr.ffma.tab5980_0 == 1, "FFMA tab5980_0({}) not implemented", | 1440 | ASSERT_MSG(instr.ffma.tab5980_0 == 1, "FFMA tab5980_0({}) not implemented", |
| 1442 | instr.ffma.tab5980_0.Value()); // Seems to be 1 by default based on SMO | 1441 | instr.ffma.tab5980_0.Value()); // Seems to be 1 by default based on SMO |