1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com> * SPDX-License-Identifier: MIT */ #ifndef MTL_H #define MTL_H #include "gl.h" typedef int mtlidx; mtlidx mtl_load(char *name); void mtl_use(mtlidx mtl); #endif // MTL_H