mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
VideoCommon: Rename Renderer to EFBInterface.
This commit is contained in:
@ -20,9 +20,9 @@ class PointerWrap;
|
||||
|
||||
class AbstractGfx;
|
||||
class BoundingBox;
|
||||
class Renderer;
|
||||
class TextureCacheBase;
|
||||
class VertexManagerBase;
|
||||
class EFBInterfaceBase;
|
||||
|
||||
enum class FieldType
|
||||
{
|
||||
@ -80,12 +80,12 @@ protected:
|
||||
std::unique_ptr<PerfQueryBase> perf_query,
|
||||
std::unique_ptr<BoundingBox> bounding_box);
|
||||
|
||||
// For software and null backends. Allows overriding the default Renderer and Texture Cache
|
||||
// For software and null backends. Allows overriding the default EFBInterface and TextureCache
|
||||
bool InitializeShared(std::unique_ptr<AbstractGfx> gfx,
|
||||
std::unique_ptr<VertexManagerBase> vertex_manager,
|
||||
std::unique_ptr<PerfQueryBase> perf_query,
|
||||
std::unique_ptr<BoundingBox> bounding_box,
|
||||
std::unique_ptr<Renderer> renderer,
|
||||
std::unique_ptr<EFBInterfaceBase> efb_interface,
|
||||
std::unique_ptr<TextureCacheBase> texture_cache);
|
||||
void ShutdownShared();
|
||||
|
||||
|
Reference in New Issue
Block a user