1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-21 14:57:09 +00:00

Remove unnecessary cpp files

This commit is contained in:
kobewi
2025-07-11 15:00:44 +02:00
parent 1d8e738499
commit d591bcc09c
25 changed files with 51 additions and 537 deletions

View File

@@ -49,23 +49,23 @@ class RenderingMethod;
class RenderingServerGlobals {
public:
static bool threaded;
static inline bool threaded = false;
static RendererUtilities *utilities;
static RendererLightStorage *light_storage;
static RendererMaterialStorage *material_storage;
static RendererMeshStorage *mesh_storage;
static RendererParticlesStorage *particles_storage;
static RendererTextureStorage *texture_storage;
static RendererGI *gi;
static RendererFog *fog;
static RendererCameraAttributes *camera_attributes;
static RendererCanvasRender *canvas_render;
static RendererCompositor *rasterizer;
static inline RendererUtilities *utilities = nullptr;
static inline RendererLightStorage *light_storage = nullptr;
static inline RendererMaterialStorage *material_storage = nullptr;
static inline RendererMeshStorage *mesh_storage = nullptr;
static inline RendererParticlesStorage *particles_storage = nullptr;
static inline RendererTextureStorage *texture_storage = nullptr;
static inline RendererGI *gi = nullptr;
static inline RendererFog *fog = nullptr;
static inline RendererCameraAttributes *camera_attributes = nullptr;
static inline RendererCanvasRender *canvas_render = nullptr;
static inline RendererCompositor *rasterizer = nullptr;
static RendererCanvasCull *canvas;
static RendererViewport *viewport;
static RenderingMethod *scene;
static inline RendererCanvasCull *canvas = nullptr;
static inline RendererViewport *viewport = nullptr;
static inline RenderingMethod *scene = nullptr;
};
#define RSG RenderingServerGlobals