1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Remove the old invalidation thing

This commit is contained in:
ζeh Matt
2025-04-24 18:38:49 +03:00
parent b33a48f2b0
commit 983b4e1a1f
2 changed files with 0 additions and 14 deletions

View File

@@ -129,7 +129,6 @@ X8DrawingEngine::X8DrawingEngine([[maybe_unused]] const std::shared_ptr<Ui::IUiC
X8DrawingEngine::~X8DrawingEngine()
{
delete _drawingContext;
delete[] _dirtyGrid.Blocks;
delete[] _bits;
}

View File

@@ -26,17 +26,6 @@ namespace OpenRCT2
{
class X8DrawingContext;
struct DirtyGrid
{
uint32_t BlockShiftX;
uint32_t BlockShiftY;
uint32_t BlockWidth;
uint32_t BlockHeight;
uint32_t BlockColumns;
uint32_t BlockRows;
uint8_t* Blocks;
};
class X8WeatherDrawer final : public IWeatherDrawer
{
private:
@@ -74,8 +63,6 @@ namespace OpenRCT2
size_t _bitsSize = 0;
uint8_t* _bits = nullptr;
DirtyGrid _dirtyGrid = {};
DrawPixelInfo _bitsDPI = {};
bool _lastLightFXenabled = false;