forked from mitsuba-renderer/mitsuba2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmitsuba.h
32 lines (24 loc) · 938 Bytes
/
mitsuba.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
Mitsuba 2: A Retargetable Forward and Inverse Renderer
Copyright 2019, Realistic Graphics Lab, EPFL.
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE.txt file.
*/
#pragma once
#define MTS_VERSION_MAJOR 2
#define MTS_VERSION_MINOR 0
#define MTS_VERSION_PATCH 0
#define MTS_STRINGIFY(x) #x
#define MTS_TOSTRING(x) MTS_STRINGIFY(x)
/// Current release of Mitsuba
#define MTS_VERSION \
MTS_TOSTRING(MTS_VERSION_MAJOR) "." \
MTS_TOSTRING(MTS_VERSION_MINOR) "." \
MTS_TOSTRING(MTS_VERSION_PATCH)
/// Year of the current release
#define MTS_YEAR "2019"
/// Authors list
#define MTS_AUTHORS "Realistic Graphics Lab, EPFL"
#include <mitsuba/core/config.h>
#include <mitsuba/core/platform.h>
#include <mitsuba/core/fwd.h>