mirror of https://github.com/PCSX2/pcsx2.git
GS/Null: Move methods to cpp file
This commit is contained in:
parent
ea41cce5ef
commit
f4b38662fa
|
@ -15,3 +15,14 @@
|
|||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "GSRendererNull.h"
|
||||
|
||||
GSRendererNull::GSRendererNull() = default;
|
||||
|
||||
void GSRendererNull::Draw()
|
||||
{
|
||||
}
|
||||
|
||||
GSTexture* GSRendererNull::GetOutput(int i, int& y_offset)
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
|
|
@ -19,28 +19,10 @@
|
|||
|
||||
class GSRendererNull final : public GSRenderer
|
||||
{
|
||||
class GSVertexTraceNull : public GSVertexTrace
|
||||
{
|
||||
public:
|
||||
GSVertexTraceNull(const GSState* state)
|
||||
: GSVertexTrace(state)
|
||||
{
|
||||
}
|
||||
};
|
||||
public:
|
||||
GSRendererNull();
|
||||
|
||||
protected:
|
||||
void Draw() override
|
||||
{
|
||||
}
|
||||
|
||||
GSTexture* GetOutput(int i, int& y_offset) override
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
public:
|
||||
GSRendererNull()
|
||||
: GSRenderer()
|
||||
{
|
||||
}
|
||||
void Draw() override;
|
||||
GSTexture* GetOutput(int i, int& y_offset) override;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue