summaryrefslogtreecommitdiffhomepage
path: root/draw/floor.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-11-13 08:31:18 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-11-13 08:31:18 +0100
commit2fdf274092556eb0ec96f5e20cfe364549f59485 (patch)
tree3ca86a3287dbeecdabc64a7b34acd6eb8739f8b0 /draw/floor.cpp
parentd19332e515f41167bc4dab82b48d1a9e601b48d9 (diff)
draw: reformat
Diffstat (limited to 'draw/floor.cpp')
-rw-r--r--draw/floor.cpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/draw/floor.cpp b/draw/floor.cpp
index 1a5c908e..5e645b0f 100644
--- a/draw/floor.cpp
+++ b/draw/floor.cpp
@@ -14,28 +14,24 @@ floor_mesh::floor_mesh() = default;
void floor_mesh::draw(tile_shader& shader, chunk& c)
{
constexpr auto quad_index_count = 6;
-
auto [mesh_, ids] = c.ensure_ground_mesh();
-
- tile_atlas* last_atlas = nullptr;
- std::size_t last_pos = 0;
+ struct { tile_atlas* atlas = nullptr; std::size_t pos = 0; } last;
GL::MeshView mesh{mesh_};
[[maybe_unused]] std::size_t draw_count = 0;
const auto do_draw = [&](std::size_t i, tile_atlas* atlas) {
- if (atlas == last_atlas)
+ if (atlas == last.atlas)
return;
- if (auto len = i - last_pos; last_atlas && len > 0)
+ if (auto len = i - last.pos; last.atlas && len > 0)
{
- last_atlas->texture().bind(0);
+ last.atlas->texture().bind(0);
mesh.setCount((int)(quad_index_count * len));
- mesh.setIndexRange((int)(last_pos*quad_index_count), 0, quad_index_count*TILE_COUNT - 1);
+ mesh.setIndexRange((int)(last.pos*quad_index_count), 0, quad_index_count*TILE_COUNT - 1);
shader.draw(mesh);
draw_count++;
}
- last_atlas = atlas;
- last_pos = i;
+ last = { atlas, i };
};
for (std::size_t k = 0; k < TILE_COUNT; k++)