Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
alemuntoni committed Nov 23, 2023
2 parents de481b0 + 52f492c commit 310963f
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions include/vclib/render/mesh_render_buffers.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,7 @@ class MeshRenderBuffers
return verts.data();
}

const uint vertexBufferSize() const
{
return verts.size();
}
const uint vertexBufferSize() const { return verts.size(); }

const uint32_t* triangleBufferData() const
{
Expand All @@ -97,10 +94,7 @@ class MeshRenderBuffers
return tris.data();
}

const uint triangleBufferSize() const
{
return tris.size();
}
const uint triangleBufferSize() const { return tris.size(); }

const float* vertexNormalBufferData() const
{
Expand Down

0 comments on commit 310963f

Please sign in to comment.