@@ -222,6 +222,10 @@ class Image : public ::Image {
222222
223223 /* *
224224 * Load image from file into CPU memory (RAM)
225+ *
226+ * @return Whether or not the image was loaded successfully.
227+ *
228+ * @see ::LoadImage()
225229 */
226230 bool Load (const std::string& fileName) {
227231 set (::LoadImage (fileName.c_str ()));
@@ -230,6 +234,10 @@ class Image : public ::Image {
230234
231235 /* *
232236 * Load image from RAW file data.
237+ *
238+ * @return Whether or not the raw image data was loaded successfully.
239+ *
240+ * @see ::LoadImageRaw()
233241 */
234242 bool Load (const std::string& fileName, int width, int height, int format, int headerSize) {
235243 set (::LoadImageRaw (fileName.c_str (), width, height, format, headerSize));
@@ -238,6 +246,10 @@ class Image : public ::Image {
238246
239247 /* *
240248 * Load image sequence from file (frames appended to image.data).
249+ *
250+ * @return Whether or not the image animation was loaded successfully.
251+ *
252+ * @see ::LoadImageAnim()
241253 */
242254 bool Load (const std::string& fileName, int * frames) {
243255 set (::LoadImageAnim (fileName.c_str (), frames));
@@ -246,6 +258,10 @@ class Image : public ::Image {
246258
247259 /* *
248260 * Load image from memory buffer, fileType refers to extension: i.e. "png".
261+ *
262+ * @return Whether or not the image data was loaded successfully.
263+ *
264+ * @see ::LoadImageFromMemory()
249265 */
250266 bool Load (
251267 const std::string& fileType,
@@ -259,6 +275,8 @@ class Image : public ::Image {
259275 * Load an image from the given file.
260276 *
261277 * @return True or false depending on whether or not the image was loaded from the texture.
278+ *
279+ * @see ::LoadImageFromTexture()
262280 */
263281 bool Load (const ::Texture2D& texture) {
264282 set (::LoadImageFromTexture (texture));
0 commit comments