aboutsummaryrefslogtreecommitdiffstats
path: root/mtl.h
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2018-05-02 21:22:03 +0100
committerTomasz Kramkowski <tk@the-tk.com>2018-05-02 21:22:03 +0100
commitb659c412263f6dd7df962f7d42f4f51b7c3d5609 (patch)
treee2495e0b1446527b909a9c9fa2776797c7c28221 /mtl.h
parentec93a8eddf70adef2b1439a511d990021ad25d99 (diff)
downloadfaqe-b659c412263f6dd7df962f7d42f4f51b7c3d5609.tar.gz
faqe-b659c412263f6dd7df962f7d42f4f51b7c3d5609.tar.xz
faqe-b659c412263f6dd7df962f7d42f4f51b7c3d5609.zip
Implement diffuse texture loading and basic material support
Diffstat (limited to 'mtl.h')
-rw-r--r--mtl.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/mtl.h b/mtl.h
new file mode 100644
index 0000000..7c427c1
--- /dev/null
+++ b/mtl.h
@@ -0,0 +1,10 @@
+#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