From 5f90c3f0d2be00a3d31fad80fc96d5511944927d Mon Sep 17 00:00:00 2001 From: Michael Migliore Date: Tue, 7 Jan 2025 22:19:08 +0100 Subject: [PATCH] Remove useless doc in f3d::image --- library/public/image.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/library/public/image.h b/library/public/image.h index c2ece89f70..68b96fc482 100644 --- a/library/public/image.h +++ b/library/public/image.h @@ -96,8 +96,6 @@ class F3D_EXPORT image ///@{ @name Resolution /** * Set/Get image resolution. - * - * \deprecated { setResolution is deprecated, use the appropriate constructor } */ [[nodiscard]] unsigned int getWidth() const; [[nodiscard]] unsigned int getHeight() const; @@ -106,8 +104,6 @@ class F3D_EXPORT image ///@{ @name Channel Count /** * Set/Get image channel count. - * - * \deprecated { setChannelCount is deprecated, use the appropriate constructor } */ [[nodiscard]] unsigned int getChannelCount() const; ///@} @@ -127,8 +123,6 @@ class F3D_EXPORT image /** * Set/Get image buffer data. * Its size is expected to be `width * height * channelCount * typeSize`. - * - * \deprecated { setData and getData are deprecated, use setContent and getContent instead } */ image& setContent(void* buffer); [[nodiscard]] void* getContent() const;