aboutsummaryrefslogtreecommitdiff
path: root/src/asset/model.h
blob: d6399b1101d7df12a167e106fc7082c63685416c (plain)
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*);