#pragma once#include<gfx/scene/mesh.h>typedefstructMesh{constGeometry*geometry;constMaterial*material;ShaderProgram*shader;}Mesh;// TODO: a mesh_render() that takes a transform, applies the material and the// transform, and then renders the geometry.