From 15afa62a8dfd4fe5034e4a46b2a13f26b57bc85b Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Wed, 13 Jul 2022 16:03:51 +0900 Subject: [PATCH] Fix compile error under gcc 9.2 Change-Id: I2b977e1c12036930f84c73728200268c2fe25386 Signed-off-by: Eunki, Hong --- dali/devel-api/text-abstraction/font-client.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dali/devel-api/text-abstraction/font-client.h b/dali/devel-api/text-abstraction/font-client.h index a339620..0644ddf 100644 --- a/dali/devel-api/text-abstraction/font-client.h +++ b/dali/devel-api/text-abstraction/font-client.h @@ -138,16 +138,16 @@ public: */ static void DecompressScanline(const GlyphBufferData& inBufferData, uint8_t* outBuffer, uint32_t& offset); - uint8_t* buffer; ///< The glyph's bitmap buffer data. - uint32_t width; ///< The width of the bitmap. - uint32_t height; ///< The height of the bitmap. - int outlineOffsetX; ///< The additional horizontal offset to be added for the glyph's position for outline. - int outlineOffsetY; ///< The additional vertical offset to be added for the glyph's position for outline. - Pixel::Format format; ///< The pixel's format of the bitmap. - CompressionType compressionType : 3; ///< The type of buffer compression. - bool isColorEmoji : 1; ///< Whether the glyph is an emoji. - bool isColorBitmap : 1; ///< Whether the glyph is a color bitmap. - bool isBufferOwned : 1; ///< Whether the glyph's bitmap buffer data owned by this class or not. Becareful when you use non-owned buffer data. + uint8_t* buffer; ///< The glyph's bitmap buffer data. + uint32_t width; ///< The width of the bitmap. + uint32_t height; ///< The height of the bitmap. + int outlineOffsetX; ///< The additional horizontal offset to be added for the glyph's position for outline. + int outlineOffsetY; ///< The additional vertical offset to be added for the glyph's position for outline. + Pixel::Format format; ///< The pixel's format of the bitmap. + CompressionType compressionType; ///< The type of buffer compression. + bool isColorEmoji : 1; ///< Whether the glyph is an emoji. + bool isColorBitmap : 1; ///< Whether the glyph is a color bitmap. + bool isBufferOwned : 1; ///< Whether the glyph's bitmap buffer data owned by this class or not. Becareful when you use non-owned buffer data. }; /** -- 2.7.4