From 1a06f5071d70a11ff14fc1b1fd69ea3c35955ab2 Mon Sep 17 00:00:00 2001 From: lisyarus Date: Sun, 12 Feb 2023 11:40:38 +0300 Subject: [PATCH] Remove obsolete gfx::mesh::count method --- libs/gfx/include/psemek/gfx/mesh.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/libs/gfx/include/psemek/gfx/mesh.hpp b/libs/gfx/include/psemek/gfx/mesh.hpp index b647f230..4fdfec7d 100644 --- a/libs/gfx/include/psemek/gfx/mesh.hpp +++ b/libs/gfx/include/psemek/gfx/mesh.hpp @@ -193,8 +193,6 @@ namespace psemek::gfx std::size_t index_count() const { return info_.index_count_; } std::size_t instance_count() const { return info_.instance_count_; } - std::size_t count() const; // total vertex count = number of vertex shader executions - GLenum primitive_type() const { return info_.primitive_type_; } GLenum index_type() const { return info_.index_type_; }