From 8e7bf64162fd3e8fe99d6fbf7ab1d94652033d16 Mon Sep 17 00:00:00 2001 From: Marco Antognini Date: Sun, 7 Aug 2016 18:37:03 +0200 Subject: [PATCH] Added deprecated API in changelog --- changelog.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/changelog.txt b/changelog.txt index d765640b..ff61a532 100644 --- a/changelog.txt +++ b/changelog.txt @@ -18,6 +18,17 @@ General * [Windows] Added support for VS 2015 (#972) * [Windows] Create and install PDB debug symbols alongside binaries (#1037) +Deprecated API +============== + +* sf::RenderWindow::capture(): Use a sf::Texture and its sf::Texture::update(const Window&) function and copy its contents into an sf::Image instead. +* sf::Shader::setParameter(): Use setUniform() instead. +* sf::Text::getColor(): There is now fill and outline colors instead of a single global color. Use getFillColor() or getOutlineColor() instead. +* sf::Text::setColor(): There is now fill and outline colors instead of a single global color. Use setFillColor() or setOutlineColor() instead. +* sf::LinesStrip: Use LineStrip instead. +* sf::TrianglesFan: Use TriangleFan instead. +* sf::TrianglesStrip: Use TriangleStrip instead. + System ====== @@ -199,6 +210,11 @@ General * [Linux] Fixed missing pthread dependency (#794) * [OS X] Relaxed CMake installation rules regarding framework dependencies (#767) +Deprecated API +============== + +* sf::Event::MouseWheelEvent: This event is deprecated and potentially inaccurate. Use MouseWheelScrollEvent instead. + Window ======