Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
QFSW committed May 14, 2023
1 parent 4dc022a commit 7bbe174
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/rendering/mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ Mesh::Mesh(std::string&& name, RawMeshData&& raw_data)
{
SCOPED_EVENT("Building mesh", _name.c_str());
Logger::log("Building mesh '%s'", _name.c_str());
check(_raw_data.check_valid());

_raw_data.check_valid();

glGenBuffers(1, &_vbo);
glGenBuffers(1, &_ebo);
Expand Down

0 comments on commit 7bbe174

Please sign in to comment.