Cleanup: Remove unused functions

See 7b89a0a580, ae1b4a6a28
This commit is contained in:
Hans Goudey
2023-11-08 10:18:25 +01:00
parent b414187efb
commit ece4b6e84d

View File

@@ -78,21 +78,6 @@ static void extract_data_mesh_mapped_corner(const Span<T> attribute,
}
}
template<typename T>
static void extract_data_mesh_vert(const MeshRenderData & /*mr*/,
const Span<T> /*attribute*/,
GPUVertBuf & /*vbo*/)
{
}
template<typename T>
static void extract_data_mesh_edge(const MeshRenderData &mr,
const Span<T> attribute,
GPUVertBuf &vbo)
{
extract_data_mapped_corner(attribute, mr.corner_edges, vbo);
}
template<typename T>
static void extract_data_mesh_face(const OffsetIndices<int> faces,
const Span<T> attribute,