Remove duplicate declaration of GPUCommon::CmdFunc

This commit is contained in:
Henrik Rydgård 2018-02-26 15:19:11 +01:00
parent 0b4b2bfe9c
commit a78365e73d
2 changed files with 1 additions and 2 deletions

@ -110,6 +110,6 @@ bool GPU_Init(GraphicsContext *ctx, Draw::DrawContext *draw) {
void GPU_Shutdown() {
delete gpu;
gpu = 0;
gpu = nullptr;
gpuDebug = 0;
}

@ -300,7 +300,6 @@ protected:
GraphicsContext *gfxCtx_;
Draw::DrawContext *draw_;
typedef void (GPUCommon::*CmdFunc)(u32 op, u32 diff);
struct CommandInfo {
uint64_t flags;
GPUCommon::CmdFunc func;