From 273189b435441828fb7d75e197d02acf70ffae80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 19 Jun 2016 20:33:20 +0200 Subject: [PATCH] Mention that glPixelStore() is used in *Framebuffer::read(). --- src/Magnum/AbstractFramebuffer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/AbstractFramebuffer.h b/src/Magnum/AbstractFramebuffer.h index d8c9a61fc..f966dd0f8 100644 --- a/src/Magnum/AbstractFramebuffer.h +++ b/src/Magnum/AbstractFramebuffer.h @@ -319,8 +319,8 @@ class MAGNUM_EXPORT AbstractFramebuffer { * * If @extension{ARB,robustness} is available, the operation is * protected from buffer overflow. - * @see @fn_gl{BindFramebuffer}, @fn_gl{ReadPixels} or - * @fn_gl_extension{ReadnPixels,ARB,robustness} + * @see @fn_gl{BindFramebuffer}, then @fn_gl{PixelStore} and + * @fn_gl{ReadPixels} or @fn_gl_extension{ReadnPixels,ARB,robustness} */ void read(const Range2Di& rectangle, Image2D& image);