1 2 3 4 5 6 7 8 9 10 11 12
/// Load scene files. #pragma once #include <gfx/asset.h> typedef struct Gfx Gfx; typedef struct Model Model; /// Load a model. /// /// Currently only supports the GLTF format. Model* gfx_model_load(Gfx*, const LoadModelCmd*);