diff options
author | Lars Næsbye Christensen <lars@naesbye.dk> | 2024-02-09 01:56:54 +0100 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-12 23:17:22 +0200 |
commit | 981470e0a1f4d3157d6528b3966922d825e77fce (patch) | |
tree | 076f1db900504c86e591566be5baffa8771939e0 /indra/llimage/llpngwrapper.h | |
parent | 79ceefe56b5fabdbcc1476d1d5b8253aa405ed21 (diff) |
llimage: BOOL (int) to real bool
Diffstat (limited to 'indra/llimage/llpngwrapper.h')
-rw-r--r-- | indra/llimage/llpngwrapper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llimage/llpngwrapper.h b/indra/llimage/llpngwrapper.h index 8d42317b0f..b17e8d1f40 100644 --- a/indra/llimage/llpngwrapper.h +++ b/indra/llimage/llpngwrapper.h @@ -43,9 +43,9 @@ public: S8 mComponents; }; - BOOL isValidPng(U8* src); - BOOL readPng(U8* src, S32 dataSize, LLImageRaw* rawImage, ImageInfo *infop = NULL); - BOOL writePng(const LLImageRaw* rawImage, U8* dst, size_t destSize); + bool isValidPng(U8* src); + bool readPng(U8* src, S32 dataSize, LLImageRaw* rawImage, ImageInfo *infop = NULL); + bool writePng(const LLImageRaw* rawImage, U8* dst, size_t destSize); U32 getFinalSize(); const std::string& getErrorMessage(); |