rsx: Implement per-RTT color masks

- Also refactors and simplifies some common code in surface store and rsx core
This commit is contained in:
kd-11 2019-08-27 14:55:45 +03:00 committed by kd-11
parent 27aeaf66bc
commit 2962e05f26
17 changed files with 327 additions and 196 deletions

View file

@ -468,7 +468,7 @@ namespace gl
blit_dst.check();
cmd.drv->clear_color(color);
cmd.drv->color_mask(true, true, true, true);
cmd.drv->color_maski(0, true, true, true, true);
glClear(GL_COLOR_BUFFER_BIT);
}