Assimp v5.2.2 (January 2022)
The Asset-Importer-Lib API documentation.
|
Functions | |
size_t | Decode (const char *in, size_t inLength, uint8_t *&out) |
Will decode the given character buffer from ASCII to UTF64. | |
std::vector< uint8_t > | Decode (const std::string &in) |
Will decode the given character buffer from ASCII to UTF64. | |
size_t | Decode (const std::string &in, std::vector< uint8_t > &out) |
Will decode the given character buffer from ASCII to UTF64. | |
std::string | Encode (const std::vector< uint8_t > &in) |
Will encode the given character buffer from UTF64 to ASCII. | |
void | Encode (const std::vector< uint8_t > &in, std::string &out) |
Will encode the given character buffer from UTF64 to ASCII. | |
void | Encode (const uint8_t *in, size_t inLength, std::string &out) |
Will encode the given character buffer from UTF64 to ASCII. | |
Will decode the given character buffer from ASCII to UTF64.
in | The ASCII buffer to decode. |
inLength | The size of the buffer. |
out | The decoded buffer. |
Will decode the given character buffer from ASCII to UTF64.
in | The ASCII string. |
Will decode the given character buffer from ASCII to UTF64.
in | The ASCII buffer to decode as a std::string. |
out | The decoded buffer. |
Will encode the given character buffer from UTF64 to ASCII.
in | A vector, which contains the buffer for encoding. |
Will encode the given character buffer from UTF64 to ASCII.
in | A vector, which contains the buffer for encoding. |
out | The encoded ASCII string. |