From 3c215d6abb2aa81bd494416dcc065032341fa5bd Mon Sep 17 00:00:00 2001 From: lisyarus Date: Fri, 2 Oct 2020 19:13:54 +0300 Subject: [PATCH] Rename indexed_mesh::count -> indexed_mesh::index_count --- libs/gfx/include/psemek/gfx/mesh.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gfx/include/psemek/gfx/mesh.hpp b/libs/gfx/include/psemek/gfx/mesh.hpp index e583d6af..bbfa59b3 100644 --- a/libs/gfx/include/psemek/gfx/mesh.hpp +++ b/libs/gfx/include/psemek/gfx/mesh.hpp @@ -605,7 +605,7 @@ namespace psemek::gfx gl::DrawElements(primitive_type_, count_, index_type_, nullptr); } - GLsizei count() const + GLsizei index_count() const { return count_; }