commit d22ca5bf119502fa1707894baffd71bfdd10881c parent 034b9a03a22723488e23d3257adddc0302a3a973 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Thu, 5 Jan 2023 14:59:56 +0100 Write the 0.1 release note Diffstat:
| M | README.md | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/README.md b/README.md @@ -21,6 +21,24 @@ project. Refer to the [CMake documentation](https://cmake.org/documentation) for further informations on CMake. +## Release notes + +### Version 0.1 + +- Complete rewrite of BRDF accessors. A BRDF is now represented by a single + integer and not directly by a generic data structure. Thus, the + `mrumtl_fetch_brdf` function returns an integer and not a pointer to the BRDF + which is now returned by the new function `mrumtl_get_brdf`. In addition, + data from a specific BRDF is now returned to a data structure that can + therefore store more than one scalar. +- Update of the signature of the `mrumtl_create` function: the input arguments + are now grouped into a variable of type `struct mrumtl_create_args`. Thanks + to this structure and its default value, updating the input parameters should + now marginally affect the calling code. +- Use scdoc rather than asciidoc as file format for man sources. + +### Version 0.0.1 + - Bump the CMake minimum version to 3.1. Previously it was set to 2.8 which is deprecated.