mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-23 14:54:30 +01:00
Remove some unused symbols
This commit is contained in:
committed by
GitHub
parent
c5c21a7b56
commit
7274c6a7e7
@@ -577,11 +577,6 @@ void mask_init()
|
||||
}
|
||||
}
|
||||
|
||||
void gfx_draw_pixel(rct_drawpixelinfo* dpi, const ScreenCoordsXY& coords, int32_t colour)
|
||||
{
|
||||
gfx_fill_rect(dpi, { coords, coords }, colour);
|
||||
}
|
||||
|
||||
void gfx_filter_pixel(rct_drawpixelinfo* dpi, const ScreenCoordsXY& coords, FilterPaletteID palette)
|
||||
{
|
||||
gfx_filter_rect(dpi, { coords, coords }, palette);
|
||||
|
||||
@@ -665,13 +665,9 @@ extern int32_t gPickupPeepY;
|
||||
|
||||
extern bool gTinyFontAntiAliased;
|
||||
|
||||
extern rct_drawpixelinfo gScreenDPI;
|
||||
extern rct_drawpixelinfo gWindowDPI;
|
||||
|
||||
bool clip_drawpixelinfo(
|
||||
rct_drawpixelinfo* dst, rct_drawpixelinfo* src, const ScreenCoordsXY& coords, int32_t width, int32_t height);
|
||||
void gfx_set_dirty_blocks(const ScreenRect& rect);
|
||||
void gfx_draw_all_dirty_blocks();
|
||||
void gfx_invalidate_screen();
|
||||
|
||||
// palette
|
||||
@@ -680,7 +676,6 @@ void load_palette();
|
||||
|
||||
// other
|
||||
void gfx_clear(rct_drawpixelinfo* dpi, uint8_t paletteIndex);
|
||||
void gfx_draw_pixel(rct_drawpixelinfo* dpi, const ScreenCoordsXY& coords, int32_t colour);
|
||||
void gfx_filter_pixel(rct_drawpixelinfo* dpi, const ScreenCoordsXY& coords, FilterPaletteID palette);
|
||||
void gfx_invalidate_pickedup_peep();
|
||||
void gfx_draw_pickedup_peep(rct_drawpixelinfo* dpi);
|
||||
|
||||
@@ -167,10 +167,6 @@ void gfx_set_dirty_blocks(const ScreenRect& rect)
|
||||
}
|
||||
}
|
||||
|
||||
void gfx_draw_all_dirty_blocks()
|
||||
{
|
||||
}
|
||||
|
||||
void gfx_clear(rct_drawpixelinfo* dpi, uint8_t paletteIndex)
|
||||
{
|
||||
auto drawingEngine = dpi->DrawingEngine;
|
||||
|
||||
@@ -130,9 +130,7 @@ void window_update_all_viewports()
|
||||
*/
|
||||
void window_update_all()
|
||||
{
|
||||
// gfx_draw_all_dirty_blocks();
|
||||
// window_update_all_viewports();
|
||||
// gfx_draw_all_dirty_blocks();
|
||||
|
||||
// 1000 tick update
|
||||
gWindowUpdateTicks += gCurrentDeltaTime;
|
||||
|
||||
@@ -21,7 +21,6 @@
|
||||
#endif // __ANDROID__
|
||||
|
||||
struct TTFFontDescriptor;
|
||||
struct rct2_install_info;
|
||||
|
||||
#ifndef MAX_PATH
|
||||
# define MAX_PATH 260
|
||||
|
||||
@@ -88,17 +88,6 @@ constexpr const int32_t rct2_object_entry_group_counts[] = {
|
||||
};
|
||||
// clang-format on
|
||||
|
||||
struct rct2_install_info
|
||||
{
|
||||
uint32_t installLevel;
|
||||
char title[260];
|
||||
char path[260];
|
||||
uint32_t var_20C;
|
||||
uint8_t pad_210[256];
|
||||
char expansionPackNames[16][128];
|
||||
uint32_t activeExpansionPacks; // 0xB10
|
||||
};
|
||||
|
||||
#pragma pack(push, 1)
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user