1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-04 10:03:36 +00:00
GLideN64/src/BufferCopy/ColorBufferToRDRAMStub.h

16 lines
434 B
C++

#include "ColorBufferToRDRAM.h"
class ColorBufferToRDRAMStub : public ColorBufferToRDRAM
{
public:
ColorBufferToRDRAMStub() : ColorBufferToRDRAM() {}
~ColorBufferToRDRAMStub() {};
private:
void _init() override {}
void _initBuffers() override {}
void _destroyBuffers(void) override {}
bool _readPixels(GLint _x0, GLint _y0, GLsizei _width, GLsizei _height, u32 _size, bool _sync) override {}
void _cleanUp() override {}
};