Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove useless doc in f3d::image #1891

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions library/public/image.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
///@}
Expand All @@ -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;
Expand Down
Loading