rename IPlatformRender to IPlatformRenderer

This commit is contained in:
Tropical
2026-04-01 20:16:33 -05:00
parent 0299a503f9
commit e57105c5b3
6 changed files with 14 additions and 14 deletions
@@ -4,7 +4,7 @@
#include "PlatformTypes.h"
class IPlatformRender {
class IPlatformRenderer {
public:
enum eVertexType {
VERTEX_TYPE_PF3_TF2_CB4_NB4_XW1,
@@ -45,7 +45,7 @@ public:
enum eTextureFormat { TEXTURE_FORMAT_RxGyBzAw, MAX_TEXTURE_FORMATS };
virtual ~IPlatformRender() = default;
virtual ~IPlatformRenderer() = default;
// Lifecycle
virtual void Initialise() = 0;
+1 -1
View File
@@ -3,7 +3,7 @@
#include "IPlatformInput.h"
#include "IPlatformNetwork.h"
#include "IPlatformProfile.h"
#include "IPlatformRender.h"
#include "IPlatformRenderer.h"
#include "IPlatformSound.h"
#include "IPlatformStorage.h"
#include "IPlatformUIController.h"
+2 -2
View File
@@ -7,10 +7,10 @@
class IPlatformInput;
class IPlatformProfile;
class IPlatformRender;
class IPlatformRenderer;
class IPlatformStorage;
IPlatformInput& PlatformInput = InputManager;
IPlatformProfile& PlatformProfile = ProfileManager;
IPlatformRender& PlatformRender = RenderManager;
IPlatformRenderer& PlatformRender = RenderManager;
IPlatformStorage& PlatformStorage = StorageManager;
+3 -3
View File
@@ -2,12 +2,12 @@
#include "IPlatformInput.h"
#include "IPlatformProfile.h"
#include "IPlatformRender.h"
#include "IPlatformRenderer.h"
#include "IPlatformStorage.h"
class IPlatformInput;
class IPlatformProfile;
class IPlatformRender;
class IPlatformRenderer;
class IPlatformStorage;
// Interface references to platform services. World code uses these
@@ -16,5 +16,5 @@ class IPlatformStorage;
extern IPlatformInput& PlatformInput;
extern IPlatformProfile& PlatformProfile;
extern IPlatformRender& PlatformRender;
extern IPlatformRenderer& PlatformRender;
extern IPlatformStorage& PlatformStorage;