X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Ftext%2Ftext-view-interface.h;h=c15cda105486b6b7157ce77aeb15492ac04962fa;hp=a4402096117b9a92fe258ce59ccd2e3e767144b8;hb=09e2475439f1d40c576df0fdc0bc9e26a9661758;hpb=306d2f61a1b64179e801fa8a0bb2bd7b4e9dd682 diff --git a/dali-toolkit/public-api/text/text-view-interface.h b/dali-toolkit/public-api/text/text-view-interface.h index a440209..c15cda1 100644 --- a/dali-toolkit/public-api/text/text-view-interface.h +++ b/dali-toolkit/public-api/text/text-view-interface.h @@ -69,20 +69,20 @@ public: * @param[in] glyphIndex Index to the first glyph. * @param[in] numberOfGlyphs Number of glyphs to be copied. */ - virtual void GetGlyphs( GlyphIndex glyphIndex, - GlyphInfo* glyphs, + virtual void GetGlyphs( GlyphInfo* glyphs, + GlyphIndex glyphIndex, Length numberOfGlyphs ) const = 0; /** * @brief Retrieves the glyph positions. * * @pre The size of the @p positions buffer needs to be big enough to copy the @p numberOfGlyphs positions. - * @param[in] glyphIndex Index to the first glyph position. * @param[out] glyphPositions Pointer to a buffer where the glyph positions are copied. + * @param[in] glyphIndex Index to the first glyph position. * @param[in] numberOfGlyphs The number of positions to be copied. */ - virtual void GetGlyphPositions( GlyphIndex glyphIndex, - Vector2* glyphPositions, + virtual void GetGlyphPositions( Vector2* glyphPositions, + GlyphIndex glyphIndex, Length numberOfGlyphs ) const = 0; };