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 "PrecompiledHeader.h"
|
||||||
#include "GSRendererNull.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 GSRendererNull final : public GSRenderer
|
||||||
{
|
{
|
||||||
class GSVertexTraceNull : public GSVertexTrace
|
public:
|
||||||
{
|
GSRendererNull();
|
||||||
public:
|
|
||||||
GSVertexTraceNull(const GSState* state)
|
|
||||||
: GSVertexTrace(state)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void Draw() override
|
void Draw() override;
|
||||||
{
|
GSTexture* GetOutput(int i, int& y_offset) override;
|
||||||
}
|
|
||||||
|
|
||||||
GSTexture* GetOutput(int i, int& y_offset) override
|
|
||||||
{
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
public:
|
|
||||||
GSRendererNull()
|
|
||||||
: GSRenderer()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue