mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-13 19:44:28 +00:00

deprecate the `identifier()` APIs by replacing them with `type()`. ThorVG is going to introduce an instance `id()`, and this could be confused with the `identifier()` methods. with this new type() method can reduce the memory size by removing unncessary type data. New Experimental C APIs: - enum Tvg_Type - Tvg_Result tvg_paint_get_type(const Tvg_Paint* paint, Tvg_Type* type) - Tvg_Result tvg_gradient_get_type(const Tvg_Gradient* grad, Tvg_Type* type) New Experimental C++ APIs: - Type Paint::type() const - Type Fill::type() const - Type LinearGradient::type() const - Type RadialGradient::type() const - Type Shape::type() const - Type Scene::type() const - Type Picture::type() const - Type Text::type() const Deprecated C APIs: - enum Tvg_Identifier - Tvg_Result tvg_paint_get_identifier(const Tvg_Paint* paint, Tvg_Identifier* identifier) - Tvg_Result tvg_gradient_get_identifier(const Tvg_Gradient* grad, Tvg_Identifier* identifier) Deprecated C++ APIs: - enum class Type - uint32_t Paint::identifier() const - uint32_t Fill::identifier() const - static uint32_t Picture::identifier() - static uint32_t Scene::identifier() - static uint32_t Shape::identifier() - static uint32_t LinearGradient:identifier() - static uint32_T RadialGradient::identfier() Removed Experimental APIs: - static uint32_t Text::identifier() issue: https://github.com/thorvg/thorvg/issues/1372
93 lines
3.1 KiB
C++
93 lines
3.1 KiB
C++
/*
|
|
* Copyright (c) 2020 - 2024 the ThorVG project. All rights reserved.
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
#ifndef _TVG_COMMON_H_
|
|
#define _TVG_COMMON_H_
|
|
|
|
#include "config.h"
|
|
#include "thorvg.h"
|
|
|
|
using namespace std;
|
|
using namespace tvg;
|
|
|
|
//for MSVC Compat
|
|
#ifdef _MSC_VER
|
|
#define TVG_UNUSED
|
|
#define strncasecmp _strnicmp
|
|
#define strcasecmp _stricmp
|
|
#else
|
|
#define TVG_UNUSED __attribute__ ((__unused__))
|
|
#endif
|
|
|
|
// Portable 'fallthrough' attribute
|
|
#if __has_cpp_attribute(fallthrough)
|
|
#ifdef _MSC_VER
|
|
#define TVG_FALLTHROUGH [[fallthrough]];
|
|
#else
|
|
#define TVG_FALLTHROUGH __attribute__ ((fallthrough));
|
|
#endif
|
|
#else
|
|
#define TVG_FALLTHROUGH
|
|
#endif
|
|
|
|
#if defined(_MSC_VER) && defined(__clang__)
|
|
#define strncpy strncpy_s
|
|
#define strdup _strdup
|
|
#endif
|
|
|
|
enum class FileType { Png = 0, Jpg, Webp, Tvg, Svg, Lottie, Ttf, Raw, Gif, Unknown };
|
|
|
|
using Size = Point;
|
|
|
|
#ifdef THORVG_LOG_ENABLED
|
|
constexpr auto ErrorColor = "\033[31m"; //red
|
|
constexpr auto ErrorBgColor = "\033[41m";//bg red
|
|
constexpr auto LogColor = "\033[32m"; //green
|
|
constexpr auto LogBgColor = "\033[42m"; //bg green
|
|
constexpr auto GreyColor = "\033[90m"; //grey
|
|
constexpr auto ResetColors = "\033[0m"; //default
|
|
#define TVGERR(tag, fmt, ...) fprintf(stderr, "%s[E]%s %s" tag "%s (%s %d): %s" fmt "\n", ErrorBgColor, ResetColors, ErrorColor, GreyColor, __FILE__, __LINE__, ResetColors, ##__VA_ARGS__)
|
|
#define TVGLOG(tag, fmt, ...) fprintf(stdout, "%s[L]%s %s" tag "%s (%s %d): %s" fmt "\n", LogBgColor, ResetColors, LogColor, GreyColor, __FILE__, __LINE__, ResetColors, ##__VA_ARGS__)
|
|
#else
|
|
#define TVGERR(...) do {} while(0)
|
|
#define TVGLOG(...) do {} while(0)
|
|
#endif
|
|
|
|
uint16_t THORVG_VERSION_NUMBER();
|
|
|
|
|
|
#define P(A) ((A)->pImpl) //Access to pimpl.
|
|
#define PP(A) (((Paint*)(A))->pImpl) //Access to pimpl.
|
|
|
|
|
|
//for debugging
|
|
#if 0
|
|
#include <sys/time.h>
|
|
static inline double THORVG_TIMESTAMP()
|
|
{
|
|
struct timeval tv;
|
|
gettimeofday(&tv, NULL);
|
|
return (tv.tv_sec + tv.tv_usec / 1000000.0);
|
|
}
|
|
#endif
|
|
|
|
#endif //_TVG_COMMON_H_
|