mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Delete unused EFBHasAlphaChannel function
This commit is contained in:
@ -68,11 +68,6 @@ Renderer::Renderer()
|
|||||||
|
|
||||||
Renderer::~Renderer() = default;
|
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,
|
void Renderer::ClearScreen(const MathUtil::Rectangle<int>& rc, bool color_enable, bool alpha_enable,
|
||||||
bool z_enable, u32 color, u32 z)
|
bool z_enable, u32 color, u32 z)
|
||||||
{
|
{
|
||||||
|
@ -100,7 +100,6 @@ public:
|
|||||||
|
|
||||||
PixelFormat GetPrevPixelFormat() const { return m_prev_efb_format; }
|
PixelFormat GetPrevPixelFormat() const { return m_prev_efb_format; }
|
||||||
void StorePixelFormat(PixelFormat new_format) { m_prev_efb_format = new_format; }
|
void StorePixelFormat(PixelFormat new_format) { m_prev_efb_format = new_format; }
|
||||||
bool EFBHasAlphaChannel() const;
|
|
||||||
|
|
||||||
bool UseVertexDepthRange() const;
|
bool UseVertexDepthRange() const;
|
||||||
void DoState(PointerWrap& p);
|
void DoState(PointerWrap& p);
|
||||||
|
Reference in New Issue
Block a user