Browse Source
Merge pull request #4957 from ReinUsesLisp/alpha-test-rt
gl_rasterizer: Remove warning of untested alpha test
pull/15/merge
LC
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
4 deletions
-
src/video_core/renderer_opengl/gl_rasterizer.cpp
|
|
@ -1579,10 +1579,6 @@ void RasterizerOpenGL::SyncAlphaTest() { |
|
|
flags[Dirty::AlphaTest] = false; |
|
|
flags[Dirty::AlphaTest] = false; |
|
|
|
|
|
|
|
|
const auto& regs = maxwell3d.regs; |
|
|
const auto& regs = maxwell3d.regs; |
|
|
if (regs.alpha_test_enabled && regs.rt_control.count > 1) { |
|
|
|
|
|
LOG_WARNING(Render_OpenGL, "Alpha testing with more than one render target is not tested"); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (regs.alpha_test_enabled) { |
|
|
if (regs.alpha_test_enabled) { |
|
|
glEnable(GL_ALPHA_TEST); |
|
|
glEnable(GL_ALPHA_TEST); |
|
|
glAlphaFunc(MaxwellToGL::ComparisonOp(regs.alpha_test_func), regs.alpha_test_ref); |
|
|
glAlphaFunc(MaxwellToGL::ComparisonOp(regs.alpha_test_func), regs.alpha_test_ref); |
|
|
|