You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Update HarfBuzz, ICU and FreeType
HarfBuzz: Update to version 7.3.0 ICU4C: Update to version 73.1 FreeType: Update to version 2.13.0
This commit is contained in:
16
thirdparty/icu4c/common/unicode/utext.h
vendored
16
thirdparty/icu4c/common/unicode/utext.h
vendored
@@ -230,8 +230,8 @@ utext_openUChars(UText *ut, const UChar *s, int64_t length, UErrorCode *status);
|
||||
/**
|
||||
* Open a writable UText for a non-const UnicodeString.
|
||||
*
|
||||
* @param ut Pointer to a UText struct. If NULL, a new UText will be created.
|
||||
* If non-NULL, must refer to an initialized UText struct, which will then
|
||||
* @param ut Pointer to a UText struct. If nullptr, a new UText will be created.
|
||||
* If non-nullptr, must refer to an initialized UText struct, which will then
|
||||
* be reset to reference the specified input string.
|
||||
* @param s A UnicodeString.
|
||||
* @param status Errors are returned here.
|
||||
@@ -246,8 +246,8 @@ utext_openUnicodeString(UText *ut, icu::UnicodeString *s, UErrorCode *status);
|
||||
/**
|
||||
* Open a UText for a const UnicodeString. The resulting UText will not be writable.
|
||||
*
|
||||
* @param ut Pointer to a UText struct. If NULL, a new UText will be created.
|
||||
* If non-NULL, must refer to an initialized UText struct, which will then
|
||||
* @param ut Pointer to a UText struct. If nullptr, a new UText will be created.
|
||||
* If non-nullptr, must refer to an initialized UText struct, which will then
|
||||
* be reset to reference the specified input string.
|
||||
* @param s A const UnicodeString to be wrapped.
|
||||
* @param status Errors are returned here.
|
||||
@@ -261,8 +261,8 @@ utext_openConstUnicodeString(UText *ut, const icu::UnicodeString *s, UErrorCode
|
||||
|
||||
/**
|
||||
* Open a writable UText implementation for an ICU Replaceable object.
|
||||
* @param ut Pointer to a UText struct. If NULL, a new UText will be created.
|
||||
* If non-NULL, must refer to an already existing UText, which will then
|
||||
* @param ut Pointer to a UText struct. If nullptr, a new UText will be created.
|
||||
* If non-nullptr, must refer to an already existing UText, which will then
|
||||
* be reset to reference the specified replaceable text.
|
||||
* @param rep A Replaceable text object.
|
||||
* @param status Errors are returned here.
|
||||
@@ -276,8 +276,8 @@ utext_openReplaceable(UText *ut, icu::Replaceable *rep, UErrorCode *status);
|
||||
|
||||
/**
|
||||
* Open a UText implementation over an ICU CharacterIterator.
|
||||
* @param ut Pointer to a UText struct. If NULL, a new UText will be created.
|
||||
* If non-NULL, must refer to an already existing UText, which will then
|
||||
* @param ut Pointer to a UText struct. If nullptr, a new UText will be created.
|
||||
* If non-nullptr, must refer to an already existing UText, which will then
|
||||
* be reset to reference the specified replaceable text.
|
||||
* @param ci A Character Iterator.
|
||||
* @param status Errors are returned here.
|
||||
|
||||
Reference in New Issue
Block a user