1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00

Add lighting test and benchmark (#12802)

This commit is contained in:
Jude Melton-Houghton 2022-09-26 06:49:08 -04:00 committed by GitHub
parent 8dec3a5ecb
commit f916398a54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 292 additions and 63 deletions

View file

@ -24,7 +24,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "util/container.h"
class Map;
class ServerMap;
class MapBlock;
class MMVManip;
@ -68,7 +67,7 @@ void update_block_border_lighting(Map *map, MapBlock *block,
* \param modified_blocks output, contains all map blocks that
* the function modified
*/
void blit_back_with_light(ServerMap *map, MMVManip *vm,
void blit_back_with_light(Map *map, MMVManip *vm,
std::map<v3s16, MapBlock*> *modified_blocks);
/*!
@ -77,7 +76,7 @@ void blit_back_with_light(ServerMap *map, MMVManip *vm,
*
* \param block the block to update
*/
void repair_block_light(ServerMap *map, MapBlock *block,
void repair_block_light(Map *map, MapBlock *block,
std::map<v3s16, MapBlock*> *modified_blocks);
/*!