mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
VideoCommon: Make dst_alpha state implicit.
This commit is contained in:
@ -54,7 +54,7 @@ void SWVertexLoader::ResetBuffer(u32 stride)
|
||||
IndexGenerator::Start(GetIndexBuffer());
|
||||
}
|
||||
|
||||
void SWVertexLoader::vFlush(bool useDstAlpha)
|
||||
void SWVertexLoader::vFlush()
|
||||
{
|
||||
DebugUtil::OnObjectBegin();
|
||||
|
||||
|
@ -25,7 +25,7 @@ protected:
|
||||
void ResetBuffer(u32 stride) override;
|
||||
u16* GetIndexBuffer() { return &LocalIBuffer[0]; }
|
||||
private:
|
||||
void vFlush(bool useDstAlpha) override;
|
||||
void vFlush() override;
|
||||
std::vector<u8> LocalVBuffer;
|
||||
std::vector<u16> LocalIBuffer;
|
||||
|
||||
|
Reference in New Issue
Block a user