summaryrefslogtreecommitdiffstats
path: root/libdimension/dimension/finishes.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2009-11-09 15:20:58 -0500
committerTavian Barnes <tavianator@gmail.com>2009-11-09 16:07:33 -0500
commit5138e55d3eb41255b1436d40ceba134876c3c5cd (patch)
tree5a3e00248c328b097c4b71e225c597d19a372363 /libdimension/dimension/finishes.h
parent319491781c1389d82897075b6d890e74d82a08a9 (diff)
downloaddimension-5138e55d3eb41255b1436d40ceba134876c3c5cd.tar.xz
Add support for finishes (BRDFs).
Diffstat (limited to 'libdimension/dimension/finishes.h')
-rw-r--r--libdimension/dimension/finishes.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/libdimension/dimension/finishes.h b/libdimension/dimension/finishes.h
new file mode 100644
index 0000000..da18a6f
--- /dev/null
+++ b/libdimension/dimension/finishes.h
@@ -0,0 +1,31 @@
+/*************************************************************************
+ * Copyright (C) 2009 Tavian Barnes <tavianator@gmail.com> *
+ * *
+ * This file is part of The Dimension Library. *
+ * *
+ * The Dimension Library is free software; you can redistribute it and/ *
+ * or modify it under the terms of the GNU Lesser General Public License *
+ * as published by the Free Software Foundation; either version 3 of the *
+ * License, or (at your option) any later version. *
+ * *
+ * The Dimension Library is distributed in the hope that it will be *
+ * useful, but WITHOUT ANY WARRANTY; without even the implied warranty *
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
+ * Lesser General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU Lesser General Public *
+ * License along with this program. If not, see *
+ * <http://www.gnu.org/licenses/>. *
+ *************************************************************************/
+
+/*
+ * Custom finishes.
+ */
+
+#ifndef DIMENSION_FINISHES_H
+#define DIMENSION_FINISHES_H
+
+/* A specular finish */
+dmnsn_finish *dmnsn_new_specular_finish();
+
+#endif /* DIMENSION_FINISHES_H */