mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
17 lines
337 B
C++
17 lines
337 B
C++
#pragma once
|
|
|
|
#include "GPUCommon.h"
|
|
|
|
// Shared GPUCommon implementation for the HW backends.
|
|
// Things that are irrelevant for SoftGPU should live here.
|
|
class GPUCommonHW : public GPUCommon {
|
|
public:
|
|
GPUCommonHW(GraphicsContext *gfxCtx, Draw::DrawContext *draw);
|
|
~GPUCommonHW();
|
|
|
|
protected:
|
|
void PreExecuteOp(u32 op, u32 diff);
|
|
|
|
};
|
|
|