Skip to content

Commit fc3ab82

Browse files
committed
Mitsuba 2.2.0 update release notes
1 parent 74253f4 commit fc3ab82

File tree

6 files changed

+31
-11
lines changed

6 files changed

+31
-11
lines changed

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Mitsuba 2: A Retargetable Forward and Inverse Renderer
1010

1111
.. toctree::
1212
:maxdepth: 1
13-
:caption: Getting started
13+
:caption: Overview
1414

1515
src/getting_started/intro
1616
src/getting_started/cloning
@@ -19,6 +19,7 @@ Mitsuba 2: A Retargetable Forward and Inverse Renderer
1919
src/getting_started/file_format
2020
src/getting_started/differences
2121
src/getting_started/faq
22+
release_notes.rst
2223

2324
.. toctree::
2425
:maxdepth: 1
@@ -81,5 +82,4 @@ Mitsuba 2: A Retargetable Forward and Inverse Renderer
8182
:maxdepth: 1
8283
:caption: Miscellaneous
8384

84-
release_notes.rst
8585
zz_bibliography

docs/release_notes.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,25 @@ Incoming release
1111

1212
- TBA
1313

14+
Mitsuba 2.2.0
15+
-------------
16+
17+
*July 22, 2020*
18+
19+
- Instancing support via ``shapegroup`` and ``instance`` plugins (`#170 <https://github.com/mitsuba-renderer/mitsuba2/pull/170>`_)
20+
- Various sampler plugins: ``stratified``, ``multijitter``, ``orthogonal``,
21+
``ldsampler`` (`#187 <https://github.com/mitsuba-renderer/mitsuba2/pull/187>`_)
22+
- ``bumpmap`` BSDF plugin (`#201 <https://github.com/mitsuba-renderer/mitsuba2/pull/201>`_)
23+
- ``normalmap`` BSDF plugin
24+
- Raytracing API improvements (`#209 <https://github.com/mitsuba-renderer/mitsuba2/pull/209>`_)
25+
- Differentiable surface interaction (`#209 <https://github.com/mitsuba-renderer/mitsuba2/pull/209>`_)
26+
- Add ``<path>`` XML tag (`#165 <https://github.com/mitsuba-renderer/mitsuba2/pull/165>`_)
27+
- `BlenderMesh` shape plugin
28+
- `Projector` emitter plugin
29+
- Add support for textured area light sampling
30+
- Add ``Mesh::eval_parameterization`` to parameterize the mesh using UV values
31+
- Various bug fixes and other improvements
32+
1433
Mitsuba 2.1.0
1534
-------------
1635

docs/src/getting_started/intro.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Introduction
2-
==============
1+
Getting started
2+
===============
33

44
.. image:: ../../images/features.svg
55
:width: 100%

include/mitsuba/mitsuba.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#pragma once
1010

1111
#define MTS_VERSION_MAJOR 2
12-
#define MTS_VERSION_MINOR 1
12+
#define MTS_VERSION_MINOR 2
1313
#define MTS_VERSION_PATCH 0
1414

1515
#define MTS_STRINGIFY(x) #x

src/bsdfs/bumpmap.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Bump map BSDF adapter (:monosp:`bumpmap`)
1313
-----------------------------------------
1414
1515
.. pluginparameters::
16+
1617
* - (Nested plugin)
1718
- |texture|
1819
- Specifies the bump map texture.

src/shapes/instance.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ Instance (:monosp:`instance`)
3333
This plugin implements a geometry instance used to efficiently replicate geometry many times. For
3434
details on how to create instances, refer to the :ref:`shape-shapegroup` plugin.
3535
36-
.. subfigstart::
37-
.. subfigure:: ../../resources/data/docs/images/render/shape_instance_fractal.jpg
38-
:caption: The Stanford bunny loaded a single time and instanciated 1365 times
39-
(equivalent to 100 million triangles)
40-
.. subfigend::
41-
:label: fig-instancing
36+
.. image:: ../../resources/data/docs/images/render/shape_instance_fractal.jpg
37+
:width: 100%
38+
:align: center
39+
40+
The Stanford bunny loaded a single time and instanciated 1365 times (equivalent to 100 million
41+
triangles)
4242
4343
.. warning::
4444

0 commit comments

Comments
 (0)