text
stringlengths
1
24.5M
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "triangle.h" #include "intersector_epilog.h" namespace embree { namespace isa { /*! Intersects M motion blur triangles with 1 ray */ template<int M, bool filter> struct TriangleMvMBIntersector1Moelle...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "triangle.h" #include "triangle_intersector_moeller.h" namespace embree { namespace isa { /*! Intersects M triangles with 1 ray */ template<int M, bool filter> struct TriangleMIntersector1Moeller ...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "triangle.h" #include "intersector_epilog.h" /*! This intersector implements a modified version of the Moeller * Trumbore intersector from the paper "Fast, Minimum Storage * Ray-Triangle Intersection". In contra...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "triangle.h" #include "trianglev.h" #include "trianglev_mb.h" #include "intersector_epilog.h" /*! Modified Pluecker ray/triangle intersector. The test first shifts * the ray origin into the origin of the coordinat...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "triangle.h" #include "intersector_epilog.h" /*! This intersector implements a modified version of the Woop's ray-triangle intersection test */ namespace embree { namespace isa { template<int M> struct ...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #include "primitive.h" namespace embree { namespace isa { struct TriangleTriangleIntersector { __forceinline static float T(float pa0, float pa1, float da0, float da1) { return pa0 + (pa1-pa0)*da0/(da0-da1); ...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "../common/default.h" //#include "../common/scene_curves.h" #include "../common/context.h" namespace embree { class BezierBasis { public: template<typename T> static __forceinline Vec4<T> eval(const...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "catmullclark_patch.h" #include "bezier_curve.h" namespace embree { template<class T, class S> static __forceinline T deCasteljau(const S& uu, const T& v0, const T& v1, const T& v2, const T& v3) { cons...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "catmullclark_patch.h" #include "bezier_curve.h" namespace embree { template<typename Vertex, typename Vertex_t = Vertex> class __aligned(64) BilinearPatchT { typedef CatmullClark1RingT<Vertex,Vertex...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "../common/default.h" #include "bezier_curve.h" namespace embree { class BSplineBasis { public: template<typename T> static __forceinline Vec4<T> eval(const T& u) { const T t = u; ...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "catmullclark_patch.h" #include "bspline_curve.h" namespace embree { template<typename Vertex, typename Vertex_t = Vertex> class __aligned(64) BSplinePatchT { typedef CatmullClark1RingT<Vertex,Vertex...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "../common/geometry.h" namespace embree { static const size_t MAX_PATCH_VALENCE = 16; //!< maximum number of vertices of a patch static const size_t MAX_RING_FACE_VALENCE = 64; //!< maximum number of...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "catmullclark_ring.h" #include "bezier_curve.h" namespace embree { template<typename Vertex, typename Vertex_t = Vertex> class __aligned(64) CatmullClarkPatchT { public: typedef CatmullClark1RingT<...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "../common/geometry.h" #include "../common/buffer.h" #include "half_edge.h" #include "catmullclark_coefficients.h" namespace embree { struct __aligned(64) FinalQuad { Vec3fa vtx[4]; }; template<typename V...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "../common/default.h" #include "bezier_curve.h" #include "../common/scene_curves.h" /* Implements Catmul Rom curves with control points p0, p1, p2, p3. At t=0 the curve goes through p1, with tangent (p2-p0)/2, ...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "patch.h" namespace embree { namespace isa { template<typename Vertex, typename Vertex_t = Vertex> struct FeatureAdaptiveEval { public: typedef PatchT<Vertex,Vertex_t> Patc...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "patch.h" #include "catmullclark_patch.h" #include "bspline_patch.h" #include "gregory_patch.h" #include "tessellation.h" namespace embree { namespace isa { struct FeatureAdaptiveEvalGrid { typede...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "patch.h" namespace embree { namespace isa { template<typename vbool, typename vint, typename vfloat, typename Vertex, typename Vertex_t = Vertex> struct FeatureAdaptiveEvalSimd { public: ...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "catmullclark_patch.h" #include "bezier_patch.h" #include "bezier_curve.h" #include "catmullclark_coefficients.h" namespace embree { template<typename Vertex, typename Vertex_t = Vertex> class __aligned(64) Gr...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "gregory_patch.h" namespace embree { class __aligned(64) DenseGregoryPatch3fa { typedef Vec3fa Vec3fa_4x4[4][4]; public: __forceinline DenseGregoryPatch3fa (const GregoryPatch3fa& patch) { ...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "../common/default.h" namespace embree { struct __aligned(16) GridRange { unsigned int u_start; unsigned int u_end; unsigned int v_start; unsigned int v_end; __forceinline GridRange() {} ...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "catmullclark_coefficients.h" namespace embree { class __aligned(32) HalfEdge { friend class SubdivMesh; public: enum PatchType : char { BILINEAR_PATCH = 0, //!< a bilinear patch ...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "../common/default.h" #include "bezier_curve.h" namespace embree { template<typename Vertex> struct HermiteCurveT : BezierCurveT<Vertex> { __forceinline HermiteCurveT() {} __forceinline Hermit...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "bezier_curve.h" namespace embree { namespace isa { template<typename V> struct TensorLinearQuadraticBezierSurface { QuadraticBezierCurve<V> L; QuadraticBezierCurve<V> R; ...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "catmullclark_patch.h" #include "bilinear_patch.h" #include "bspline_patch.h" #include "bezier_patch.h" #include "gregory_patch.h" #include "tessellation_cache.h" #if 1 #define PATCH_DEBUG_SUBDIVISION(ptr,x,y,z) #el...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "patch.h" #include "feature_adaptive_eval.h" namespace embree { namespace isa { template<typename Vertex, typename Vertex_t = Vertex> struct PatchEval { public: typedef Pat...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "patch.h" #include "feature_adaptive_eval_grid.h" namespace embree { namespace isa { struct PatchEvalGrid { typedef Patch3fa Patch; typedef Patch::Ref Ref; typedef GeneralCatmullClarkP...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "patch.h" #include "feature_adaptive_eval_simd.h" namespace embree { namespace isa { template<typename vbool, typename vint, typename vfloat, typename Vertex, typename Vertex_t = Vertex> struct PatchEv...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "../geometry/primitive.h" #include "bspline_patch.h" #include "bezier_patch.h" #include "gregory_patch.h" #include "gregory_patch_dense.h" #include "tessellation.h" #include "tessellation_cache.h" #include "gridrange...
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once namespace embree { /* adjust discret tessellation level for feature-adaptive pre-subdivision */ __forceinline float adjustTessellationLevel(float l, const size_t sublevel) { for (size_t i=0; i<sublevel; i++) l *= 0....
// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "../common/default.h" /* force a complete cache invalidation when running out of allocation space */ #define FORCE_SIMPLE_FLUSH 0 #define THREAD_BLOCK_ATOMIC_ADD 4 #if defined(DEBUG) #define CACHE_STATS(x) #else ...
/** @file callbacks.c @brief ENet callback functions */ #define ENET_BUILDING_LIB 1 #include "enet/enet.h" static ENetCallbacks callbacks = { malloc, free, abort }; int enet_initialize_with_callbacks (ENetVersion version, const ENetCallbacks * inits) { if (version < ENET_VERSION_CREATE (1, 3, 0)) return -1...
/** @file compress.c @brief An adaptive order-2 PPM range coder */ #define ENET_BUILDING_LIB 1 #include <string.h> #include "enet/enet.h" typedef struct _ENetSymbol { /* binary indexed tree of symbols */ enet_uint8 value; enet_uint8 count; enet_uint16 under; enet_uint16 left, right; /* cont...
/**************************************************************************/ /* enet_godot.cpp */ /**************************************************************************/ /* This file is part of: */ /* ...
/** @file host.c @brief ENet host management functions */ #define ENET_BUILDING_LIB 1 #include <string.h> #include "enet/enet.h" /** @defgroup host ENet host functions @{ */ /** Creates a host for communicating to peers. @param address the address at which other peers may connect to this host. If NUL...
/** @file list.c @brief ENet linked list functions */ #define ENET_BUILDING_LIB 1 #include "enet/enet.h" /** @defgroup list ENet linked list utility functions @ingroup private @{ */ void enet_list_clear (ENetList * list) { list -> sentinel.next = & list -> sentinel; list -> sentinel.previous = & ...
/** @file packet.c @brief ENet packet management functions */ #include <string.h> #define ENET_BUILDING_LIB 1 #include "enet/enet.h" /** @defgroup Packet ENet packet functions @{ */ /** Creates a packet that may be sent to a peer. @param data initial contents of the packet's data; the packet's d...
/** @file peer.c @brief ENet peer management functions */ #include <string.h> #define ENET_BUILDING_LIB 1 #include "enet/enet.h" /** @defgroup peer ENet peer functions @{ */ /** Configures throttle parameter for a peer. Unreliable packets are dropped by ENet in response to the varying conditions of ...
/** @file protocol.c @brief ENet protocol functions */ #include <stdio.h> #include <string.h> #define ENET_BUILDING_LIB 1 #include "enet/utility.h" #include "enet/time.h" #include "enet/enet.h" static const size_t commandSizes [ENET_PROTOCOL_COMMAND_COUNT] = { 0, sizeof (ENetProtocolAcknowledge), sizeo...
/** @file callbacks.h @brief ENet callbacks */ #ifndef __ENET_CALLBACKS_H__ #define __ENET_CALLBACKS_H__ #include <stdlib.h> typedef struct _ENetCallbacks { void * (ENET_CALLBACK * malloc) (size_t size); void (ENET_CALLBACK * free) (void * memory); void (ENET_CALLBACK * no_memory) (void); } ENetCallba...
/** @file enet.h @brief ENet public header file */ #ifndef __ENET_ENET_H__ #define __ENET_ENET_H__ #ifdef __cplusplus extern "C" { #endif #include <stdint.h> #include <stdlib.h> #if 0 #ifdef _WIN32 #include "enet/win32.h" #else #include "enet/unix.h" #endif #endif #include "enet/enet_godot.h" #include "enet/typ...
/**************************************************************************/ /* enet_godot.h */ /**************************************************************************/ /* This file is part of: */ /* ...
/**************************************************************************/ /* enet_godot_ext.h */ /**************************************************************************/ /* This file is part of: */ /* ...
/** @file list.h @brief ENet list management */ #ifndef __ENET_LIST_H__ #define __ENET_LIST_H__ #include <stdlib.h> typedef struct _ENetListNode { struct _ENetListNode * next; struct _ENetListNode * previous; } ENetListNode; typedef ENetListNode * ENetListIterator; typedef struct _ENetList { ENetListN...
/** @file protocol.h @brief ENet protocol */ #ifndef __ENET_PROTOCOL_H__ #define __ENET_PROTOCOL_H__ #include "enet/types.h" enum { ENET_PROTOCOL_MINIMUM_MTU = 576, ENET_PROTOCOL_MAXIMUM_MTU = 4096, ENET_PROTOCOL_MAXIMUM_PACKET_COMMANDS = 32, ENET_PROTOCOL_MINIMUM_WINDOW_SIZE ...
/** @file time.h @brief ENet time constants and macros */ #ifndef __ENET_TIME_H__ #define __ENET_TIME_H__ #define ENET_TIME_OVERFLOW 86400000 #define ENET_TIME_LESS(a, b) ((a) - (b) >= ENET_TIME_OVERFLOW) #define ENET_TIME_GREATER(a, b) ((b) - (a) >= ENET_TIME_OVERFLOW) #define ENET_TIME_LESS_EQUAL(a, b) (! ENET_...
/** @file types.h @brief type definitions for ENet */ #ifndef __ENET_TYPES_H__ #define __ENET_TYPES_H__ typedef unsigned char enet_uint8; /**< unsigned 8-bit type */ typedef unsigned short enet_uint16; /**< unsigned 16-bit type */ typedef unsigned int enet_uint32; /**< unsigned 32-bit type */ #end...
/** @file utility.h @brief ENet utility header */ #ifndef __ENET_UTILITY_H__ #define __ENET_UTILITY_H__ #define ENET_MAX(x, y) ((x) > (y) ? (x) : (y)) #define ENET_MIN(x, y) ((x) < (y) ? (x) : (y)) #define ENET_DIFFERENCE(x, y) ((x) < (y) ? (y) - (x) : (x) - (y)) #endif /* __ENET_UTILITY_H__ */
#include "DecodeRGB.hpp" #include "Tables.hpp" #include "Math.hpp" #include <string.h> #ifdef __ARM_NEON # include <arm_neon.h> #endif #if defined __SSE4_1__ || defined __AVX2__ || defined _MSC_VER # ifdef _MSC_VER # include <intrin.h> # include <Windows.h> # define _bswap(x) _byteswap_ulong(x) # defin...
#ifndef __DECODERGB_HPP__ #define __DECODERGB_HPP__ #include <stddef.h> #include <stdint.h> void DecodeRBlock( const void* src, void* dst, size_t width ); void DecodeRGBlock( const void* src, void* dst, size_t width ); void DecodeRGBBlock( const void* src, void* dst, size_t width ); void DecodeRGBABlock( const void* ...
#include <algorithm> #include <string.h> #include "Dither.hpp" #include "Math.hpp" #ifdef __SSE4_1__ # ifdef _MSC_VER # include <intrin.h> # include <Windows.h> # else # include <x86intrin.h> # endif #endif #ifdef __AVX2__ void DitherAvx2( uint8_t* data, __m128i px0, __m128i px1, __m128i px2, __m128i px3 ...
#ifndef __DITHER_HPP__ #define __DITHER_HPP__ #include <stddef.h> #include <stdint.h> #ifdef __AVX2__ # ifdef _MSC_VER # include <intrin.h> # else # include <x86intrin.h> # endif #endif void Dither( uint8_t* data ); #ifdef __AVX2__ void DitherAvx2( uint8_t* data, __m128i px0, __m128i px1, __m128i px2, __m1...
#ifndef __FORCEINLINE_HPP__ #define __FORCEINLINE_HPP__ #if defined(__GNUC__) # define etcpak_force_inline __attribute__((always_inline)) inline #elif defined(_MSC_VER) # define etcpak_force_inline __forceinline #else # define etcpak_force_inline inline #endif #if defined(__GNUC__) # define etcpak_no_inline __att...
#ifndef __DARKRL__MATH_HPP__ #define __DARKRL__MATH_HPP__ #include <algorithm> #include <cmath> #include <stdint.h> #include "ForceInline.hpp" template<typename T> static etcpak_force_inline T AlignPOT( T val ) { if( val == 0 ) return 1; val--; for( unsigned int i=1; i<sizeof( T ) * 8; i <<= 1 ) { ...
#ifndef __PROCESSCOMMON_HPP__ #define __PROCESSCOMMON_HPP__ #include <assert.h> #include <stddef.h> #include <stdint.h> template<class T> static size_t GetLeastError( const T* err, size_t num ) { size_t idx = 0; for( size_t i=1; i<num; i++ ) { if( err[i] < err[idx] ) { idx = i;...
#include "Dither.hpp" #include "ForceInline.hpp" #include "ProcessDxtc.hpp" #include <assert.h> #include <stdint.h> #include <string.h> #ifdef __ARM_NEON # include <arm_neon.h> #endif #if defined __AVX__ && !defined __SSE4_1__ # define __SSE4_1__ #endif #if defined __SSE4_1__ || defined __AVX2__ # ifdef _MSC_VER...
#ifndef __PROCESSDXT1_HPP__ #define __PROCESSDXT1_HPP__ #include <stddef.h> #include <stdint.h> void CompressBc1( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width ); void CompressBc1Dither( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width ); void CompressBc3( const uint32_t* src, uin...
#include <array> #include <string.h> #include <limits> #ifdef __ARM_NEON # include <arm_neon.h> #endif #include "Dither.hpp" #include "ForceInline.hpp" #include "Math.hpp" #include "ProcessCommon.hpp" #include "ProcessRGB.hpp" #include "Tables.hpp" #include "Vector.hpp" #if defined __SSE4_1__ || defined __AVX2__ || d...
#ifndef __PROCESSRGB_HPP__ #define __PROCESSRGB_HPP__ #include <stdint.h> void CompressEtc1Rgb( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width ); void CompressEtc1RgbDither( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width ); void CompressEtc2Rgb( const uint32_t* src, uint64_t* dst...
#include "Tables.hpp" const int32_t g_table[8][4] = { { 2, 8, -2, -8 }, { 5, 17, -5, -17 }, { 9, 29, -9, -29 }, { 13, 42, -13, -42 }, { 18, 60, -18, -60 }, { 24, 80, -24, -80 }, { 33, 106, -33, -106 }, { 47, 183, -47, -183 } }; const int64_t g_table256[8][4] = { ...
#ifndef __TABLES_HPP__ #define __TABLES_HPP__ #include <stdint.h> #ifdef __AVX2__ # include <immintrin.h> #endif #ifdef __SSE4_1__ # include <smmintrin.h> #endif #ifdef __ARM_NEON # include <arm_neon.h> #endif extern const int32_t g_table[8][4]; extern const int64_t g_table256[8][4]; extern const uint32_t g_id[4...
#ifndef __DARKRL__VECTOR_HPP__ #define __DARKRL__VECTOR_HPP__ #include <assert.h> #include <algorithm> #include <math.h> #include <stdint.h> #include "Math.hpp" template<class T> struct Vector2 { Vector2() : x( 0 ), y( 0 ) {} Vector2( T v ) : x( v ), y( v ) {} Vector2( T _x, T _y ) : x( _x ), y( _y ) {} ...
/**************************************************************************** * * ft2build.h * * FreeType 2 build and setup macros. * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and distribu...
/**************************************************************************** * * freetype.h * * FreeType high-level API and common types (specification only). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be use...
/**************************************************************************** * * ftadvanc.h * * Quick computation of advance widths (specification only). * * Copyright (C) 2008-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, *...
/**************************************************************************** * * ftbbox.h * * FreeType exact bbox computation (specification). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, ...
/**************************************************************************** * * ftbdf.h * * FreeType API for accessing BDF-specific strings (specification). * * Copyright (C) 2002-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used...
/**************************************************************************** * * ftbitmap.h * * FreeType utility functions for bitmaps (specification). * * Copyright (C) 2004-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * m...
/**************************************************************************** * * ftbzip2.h * * Bzip2-compressed stream support. * * Copyright (C) 2010-2024 by * Joel Klinghed. * * This file is part of the FreeType project, and may only be used, * modified, and distributed under the terms of the FreeType pr...
/**************************************************************************** * * ftcache.h * * FreeType Cache subsystem (specification). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and di...
/**************************************************************************** * * This file defines the structure of the FreeType reference. * It is used by the python script that generates the HTML files. * */ /************************************************************************** * * @chapter: *...
/**************************************************************************** * * ftcid.h * * FreeType API for accessing CID font information (specification). * * Copyright (C) 2007-2024 by * Dereg Clegg and Michael Toftdal. * * This file is part of the FreeType project, and may only be used, * modified, an...
/**************************************************************************** * * ftcolor.h * * FreeType's glyph color management (specification). * * Copyright (C) 2018-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modifie...
/**************************************************************************** * * ftdriver.h * * FreeType API for controlling driver modules (specification only). * * Copyright (C) 2017-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be ...
/**************************************************************************** * * fterrdef.h * * FreeType error codes (specification). * * Copyright (C) 2002-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and distr...
/**************************************************************************** * * fterrors.h * * FreeType error code handling (specification). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, a...
/**************************************************************************** * * ftfntfmt.h * * Support functions for font formats. * * Copyright (C) 2002-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and distrib...
/**************************************************************************** * * ftgasp.h * * Access of TrueType's 'gasp' table (specification). * * Copyright (C) 2007-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified...
/**************************************************************************** * * ftglyph.h * * FreeType convenience functions to handle glyphs (specification). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be us...
/**************************************************************************** * * ftgxval.h * * FreeType API for validating TrueTypeGX/AAT tables (specification). * * Copyright (C) 2004-2024 by * Masatake YAMATO, Redhat K.K, * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the Fr...
/**************************************************************************** * * ftgzip.h * * Gzip-compressed stream support. * * Copyright (C) 2002-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and distributed u...
/**************************************************************************** * * ftimage.h * * FreeType glyph image formats and default raster interface * (specification). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and...
/**************************************************************************** * * ftincrem.h * * FreeType incremental loading (specification). * * Copyright (C) 2002-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, a...
/**************************************************************************** * * ftlcdfil.h * * FreeType API for color filtering of subpixel bitmap glyphs * (specification). * * Copyright (C) 2006-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, a...
/**************************************************************************** * * ftlist.h * * Generic list support for FreeType (specification). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified...
/**************************************************************************** * * ftlogging.h * * Additional debugging APIs. * * Copyright (C) 2020-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and distributed und...
/**************************************************************************** * * ftlzw.h * * LZW-compressed stream support. * * Copyright (C) 2004-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and distributed und...
/**************************************************************************** * * ftmac.h * * Additional Mac-specific API. * * Copyright (C) 1996-2024 by * Just van Rossum, David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and ...
/**************************************************************************** * * ftmm.h * * FreeType Multiple Master font interface (specification). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modi...
/**************************************************************************** * * ftmodapi.h * * FreeType modules public interface (specification). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modifi...
/**************************************************************************** * * ftmoderr.h * * FreeType module error offsets (specification). * * Copyright (C) 2001-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, ...
/**************************************************************************** * * ftotval.h * * FreeType API for validating OpenType tables (specification). * * Copyright (C) 2004-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, ...
/**************************************************************************** * * ftoutln.h * * Support for the FT_Outline type used to store glyph shapes of * most scalable font formats (specification). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is pa...
/**************************************************************************** * * ftparams.h * * FreeType API for possible FT_Parameter tags (specification only). * * Copyright (C) 2017-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be ...
/**************************************************************************** * * ftpfr.h * * FreeType API for accessing PFR-specific data (specification only). * * Copyright (C) 2002-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be us...
/**************************************************************************** * * ftrender.h * * FreeType renderer modules public interface (specification). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, ...
/**************************************************************************** * * ftsizes.h * * FreeType size objects management (specification). * * Copyright (C) 1996-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified...
/**************************************************************************** * * ftsnames.h * * Simple interface to access SFNT 'name' tables (which are used * to hold font names, copyright info, notices, etc.) (specification). * * This is _not_ used to retrieve glyph names! * * Copyright (C) 1996-2024 ...
/**************************************************************************** * * ftstroke.h * * FreeType path stroker (specification). * * Copyright (C) 2002-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and dist...
/**************************************************************************** * * ftsynth.h * * FreeType synthesizing code for emboldening and slanting * (specification). * * Copyright (C) 2000-2024 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and m...