Delete unused EFBHasAlphaChannel function
This commit is contained in:
parent
9d125a6e43
commit
d6cd8de1a7
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue