mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
VideoCommon/PixelEngine: Refactor to class, move to Core::System.
This commit is contained in:
parent
82e87cf7b9
commit
ec8aaf1f30
10 changed files with 275 additions and 228 deletions
|
@ -278,7 +278,8 @@ u32 Renderer::AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data)
|
|||
}
|
||||
|
||||
// check what to do with the alpha channel (GX_PokeAlphaRead)
|
||||
PixelEngine::AlphaReadMode alpha_read_mode = PixelEngine::GetAlphaReadMode();
|
||||
PixelEngine::AlphaReadMode alpha_read_mode =
|
||||
Core::System::GetInstance().GetPixelEngine().GetAlphaReadMode();
|
||||
|
||||
if (alpha_read_mode == PixelEngine::AlphaReadMode::ReadNone)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue