Browse Source

doc: updated changelog, mark new APIs as new.

pull/406/head
Vladimír Vondruš 7 years ago
parent
commit
e72a0459c8
  1. 8
      doc/changelog.dox
  2. 2
      src/Magnum/GL/AbstractTexture.h

8
doc/changelog.dox

@ -103,6 +103,14 @@ See also:
- Ability to specify application return code in
@ref Platform::AbstractXApplication::exit()
@subsubsection changelog-latest-changes-gl GL library
- Added @ref GL::AbstractTexture::bind() and
@ref GL::AbstractTexture::bindImages() overloads taking a
@ref Corrade::Containers::ArrayView instead of @ref std::initializer_list
in order to allow passing runtime-sized lists (see
[mosra/magnum#403](https://github.com/mosra/magnum/pull/403))
@subsubsection changelog-latest-changes-platform Platform libraries
- Worked around @ref Platform::GlfwApplication crash while creating GL

2
src/Magnum/GL/AbstractTexture.h

@ -232,6 +232,7 @@ class MAGNUM_GL_EXPORT AbstractTexture: public AbstractObject {
/**
* @brief Bind textures to given range of texture units
* @m_since_latest
*
* Binds first texture in the list to @p firstTextureUnit, second to
* `firstTextureUnit + 1` etc. If any texture is @cpp nullptr @ce,
@ -294,6 +295,7 @@ class MAGNUM_GL_EXPORT AbstractTexture: public AbstractObject {
/**
* @brief Bind textures to given range of texture units
* @m_since_latest
*
* Binds first level of given texture in the list to @p firstImageUnit,
* second to `firstTextureUnit + 1` etc. 3D, cube map and array

Loading…
Cancel
Save