1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-27 17:28:41 +00:00

Fix vertex count accounting in ClientMap

This commit is contained in:
sfan5 2024-08-26 23:51:01 +02:00
parent 0f7ee126de
commit c52a4369eb
2 changed files with 13 additions and 15 deletions

View file

@ -162,8 +162,9 @@ private:
m_pos(pos), m_partial_buffer(buffer), m_reuse_material(false), m_use_partial_buffer(true)
{}
scene::IMeshBuffer* getBuffer();
void draw(video::IVideoDriver* driver);
video::SMaterial &getMaterial();
/// @return index count
u32 draw(video::IVideoDriver* driver);
};
Client *m_client;