mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
gl_rasterizer: Remove warning of untested alpha test
Alpha test has been proven to only affect the first render target.
This commit is contained in:
parent
1889b641d9
commit
acc14d233f
1 changed files with 0 additions and 4 deletions
|
@ -1579,10 +1579,6 @@ void RasterizerOpenGL::SyncAlphaTest() {
|
|||
flags[Dirty::AlphaTest] = false;
|
||||
|
||||
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) {
|
||||
glEnable(GL_ALPHA_TEST);
|
||||
glAlphaFunc(MaxwellToGL::ComparisonOp(regs.alpha_test_func), regs.alpha_test_ref);
|
||||
|
|
Loading…
Reference in a new issue