Delete unused EFBHasAlphaChannel function

This commit is contained in:
Scott Mansell 2023-01-30 05:06:47 +13:00
parent 9d125a6e43
commit d6cd8de1a7
2 changed files with 0 additions and 6 deletions

View File

@ -68,11 +68,6 @@ Renderer::Renderer()
Renderer::~Renderer() = default;
bool Renderer::EFBHasAlphaChannel() const
{
return m_prev_efb_format == PixelFormat::RGBA6_Z24;
}
void Renderer::ClearScreen(const MathUtil::Rectangle<int>& rc, bool color_enable, bool alpha_enable,
bool z_enable, u32 color, u32 z)
{

View File

@ -100,7 +100,6 @@ public:
PixelFormat GetPrevPixelFormat() const { return m_prev_efb_format; }
void StorePixelFormat(PixelFormat new_format) { m_prev_efb_format = new_format; }
bool EFBHasAlphaChannel() const;
bool UseVertexDepthRange() const;
void DoState(PointerWrap& p);