├── .gitignore ├── .gitmodules ├── ChunkPool.cpp ├── ChunkPool.hpp ├── ComPointer.hpp ├── CriticalCode.cpp ├── CriticalCode.hpp ├── CriticalSection.cpp ├── CriticalSection.hpp ├── EmptyFile.cpp ├── EmptyFile.hpp ├── Exception.cpp ├── Exception.hpp ├── File.cpp ├── File.hpp ├── FileInputStream.cpp ├── FileInputStream.hpp ├── FileSystem.cpp ├── FileSystem.hpp ├── Future.hpp ├── Handler.hpp ├── InputStream.cpp ├── InputStream.hpp ├── LICENSE ├── Log.cpp ├── Log.hpp ├── ManagedHeap.cpp ├── ManagedHeap.hpp ├── MemoryFile.cpp ├── MemoryFile.hpp ├── MemoryPool.cpp ├── MemoryPool.hpp ├── MemoryStream.cpp ├── MemoryStream.hpp ├── NOTICE.md ├── Object.cpp ├── Object.hpp ├── ObjectPool.hpp ├── OutputStream.cpp ├── OutputStream.hpp ├── PartFile.cpp ├── PartFile.hpp ├── PoolObject.cpp ├── PoolObject.hpp ├── Profiling.cpp ├── Profiling.hpp ├── PushAllocator.hpp ├── README.md ├── RefCounted.hpp ├── ResourceManager.hpp ├── ResourceManager.ipp ├── Semaphore.cpp ├── Semaphore.hpp ├── Storage.cpp ├── Storage.hpp ├── StorageInputStream.cpp ├── StorageInputStream.hpp ├── StreamReader.cpp ├── StreamReader.hpp ├── StreamWriter.cpp ├── StreamWriter.hpp ├── String.hpp ├── StringTraveler.cpp ├── StringTraveler.hpp ├── Strings.cpp ├── Strings.hpp ├── SubFileSystem.cpp ├── SubFileSystem.hpp ├── Thread.cpp ├── Thread.hpp ├── Ticker.cpp ├── Ticker.hpp ├── Time.cpp ├── Time.hpp ├── TypedPool.hpp ├── archi ├── AssimpConvertor.cpp ├── AssimpConvertor.hpp ├── BlobCreator.cpp ├── BlobCreator.hpp ├── BoneAnimationConverter.cpp ├── BoneAnimationConverter.hpp ├── EnvConverter.hpp ├── FontCreator.cpp ├── FontCreator.hpp ├── Processor.hpp ├── SimpleGeometryCreator.cpp ├── SimpleGeometryCreator.hpp ├── SkeletonConverter.cpp ├── SkeletonConverter.hpp ├── SystemFontCreator.cpp ├── SystemFontCreator.hpp ├── Vertex.cpp ├── Vertex.hpp ├── WavefrontObj.cpp ├── WavefrontObj.hpp ├── XafConverter.cpp ├── XafConverter.hpp ├── alphabat.txt ├── general.hpp └── main.cpp ├── audio ├── AlBuffer.cpp ├── AlBuffer.hpp ├── AlBufferedPlayer.cpp ├── AlBufferedPlayer.hpp ├── AlBufferedSound.cpp ├── AlBufferedSound.hpp ├── AlDevice.cpp ├── AlDevice.hpp ├── AlPlayer.cpp ├── AlPlayer.hpp ├── AlStreamedPlayer.cpp ├── AlStreamedPlayer.hpp ├── AlStreamedSound.cpp ├── AlStreamedSound.hpp ├── AlSystem.cpp ├── AlSystem.hpp ├── Device.hpp ├── Format.hpp ├── OggVorbisSource.cpp ├── OggVorbisSource.hpp ├── OggVorbisStream.cpp ├── OggVorbisStream.hpp ├── Player.hpp ├── Player3D.hpp ├── SdlDevice.cpp ├── SdlDevice.hpp ├── SdlPlayer.cpp ├── SdlPlayer.hpp ├── SdlSound.cpp ├── SdlSound.hpp ├── SdlSystem.cpp ├── SdlSystem.hpp ├── Sound.cpp ├── Sound.hpp ├── Source.cpp ├── Source.hpp ├── System.hpp ├── WavSource.cpp ├── WavSource.hpp ├── XaBufferedPlayer.cpp ├── XaBufferedPlayer.hpp ├── XaBufferedSound.cpp ├── XaBufferedSound.hpp ├── XaDevice.cpp ├── XaDevice.hpp ├── XaPlayer.cpp ├── XaPlayer.hpp ├── XaStreamedPlayer.cpp ├── XaStreamedPlayer.hpp ├── XaStreamedSound.cpp ├── XaStreamedSound.hpp ├── XaSystem.cpp ├── XaSystem.hpp ├── al.hpp ├── audio.hpp ├── test.cpp └── xaudio2.hpp ├── config.hpp ├── config └── alloca.hpp ├── configure.js ├── crypto ├── CngRandomAlgorithm.cpp ├── CngRandomAlgorithm.hpp ├── GenericHashAlgorithm.hpp ├── HashAlgorithm.hpp ├── HashStream.cpp ├── HashStream.hpp ├── LamportSignatureAlgorithm.cpp ├── LamportSignatureAlgorithm.hpp ├── RandomAlgorithm.hpp ├── SignatureAlgorithm.hpp ├── StreamHasher.cpp ├── StreamHasher.hpp ├── StreamSigner.cpp ├── StreamSigner.hpp ├── WhirlpoolStream.cpp ├── WhirlpoolStream.hpp └── crypto.hpp ├── data ├── Base64OutputStream.cpp ├── Base64OutputStream.hpp ├── BlobFileSystem.cpp ├── BlobFileSystem.hpp ├── BlobFileSystemBuilder.cpp ├── BlobFileSystemBuilder.hpp ├── BufferedFileSystem.cpp ├── BufferedFileSystem.hpp ├── BufferedInputStream.cpp ├── BufferedInputStream.hpp ├── BufferedOutputStream.cpp ├── BufferedOutputStream.hpp ├── CompositeFileSystem.cpp ├── CompositeFileSystem.hpp ├── ConvertingFileSystem.cpp ├── ConvertingFileSystem.hpp ├── DeflateStream.cpp ├── DeflateStream.hpp ├── FilterFileSystem.cpp ├── FilterFileSystem.hpp ├── InflateStream.cpp ├── InflateStream.hpp ├── Lz4CompressStream.cpp ├── Lz4CompressStream.hpp ├── Lz4DecompressStream.cpp ├── Lz4DecompressStream.hpp ├── Out2InStream.cpp ├── Out2InStream.hpp ├── SQLiteFileSystem.cpp ├── SQLiteFileSystem.hpp ├── TempFileSystem.cpp ├── TempFileSystem.hpp ├── data.hpp ├── sqlite.cpp └── sqlite.hpp ├── deps ├── assimp │ ├── .gitignore │ └── configure.js ├── botan │ ├── .gitignore │ ├── configure.js │ ├── configure.js.in │ ├── include │ │ └── botan │ │ │ ├── aead.h │ │ │ ├── allocator.h │ │ │ ├── api.h │ │ │ ├── asio_async_ops.h │ │ │ ├── asio_compat.h │ │ │ ├── asio_context.h │ │ │ ├── asio_error.h │ │ │ ├── asio_stream.h │ │ │ ├── asn1_obj.h │ │ │ ├── asn1_print.h │ │ │ ├── assert.h │ │ │ ├── auto_rng.h │ │ │ ├── base64.h │ │ │ ├── bcrypt.h │ │ │ ├── ber_dec.h │ │ │ ├── bigint.h │ │ │ ├── block_cipher.h │ │ │ ├── buf_comp.h │ │ │ ├── certstor.h │ │ │ ├── certstor_flatfile.h │ │ │ ├── certstor_macos.h │ │ │ ├── certstor_system.h │ │ │ ├── certstor_windows.h │ │ │ ├── cipher_mode.h │ │ │ ├── compiler.h │ │ │ ├── compression.h │ │ │ ├── concepts.h │ │ │ ├── credentials_manager.h │ │ │ ├── curve25519.h │ │ │ ├── data_src.h │ │ │ ├── database.h │ │ │ ├── der_enc.h │ │ │ ├── dh.h │ │ │ ├── dl_group.h │ │ │ ├── ec_apoint.h │ │ │ ├── ec_group.h │ │ │ ├── ec_point_format.h │ │ │ ├── ec_scalar.h │ │ │ ├── ecc_key.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ed25519.h │ │ │ ├── ed448.h │ │ │ ├── exceptn.h │ │ │ ├── hash.h │ │ │ ├── hex.h │ │ │ ├── hmac_drbg.h │ │ │ ├── internal │ │ │ ├── aes.h │ │ │ ├── alignment_buffer.h │ │ │ ├── barrett.h │ │ │ ├── bit_ops.h │ │ │ ├── blake2b.h │ │ │ ├── blinding.h │ │ │ ├── blowfish.h │ │ │ ├── bswap.h │ │ │ ├── calendar.h │ │ │ ├── cbc.h │ │ │ ├── chacha.h │ │ │ ├── chacha20poly1305.h │ │ │ ├── charset.h │ │ │ ├── cmac.h │ │ │ ├── codec_base.h │ │ │ ├── compress_utils.h │ │ │ ├── cpuid.h │ │ │ ├── cpuid_features.h │ │ │ ├── ct_utils.h │ │ │ ├── ctr.h │ │ │ ├── curve448_gf.h │ │ │ ├── curve448_scalar.h │ │ │ ├── divide.h │ │ │ ├── dl_scheme.h │ │ │ ├── donna128.h │ │ │ ├── dyn_load.h │ │ │ ├── ec_inner_data.h │ │ │ ├── ec_inner_pc.h │ │ │ ├── ec_key_data.h │ │ │ ├── ed25519_fe.h │ │ │ ├── ed25519_internal.h │ │ │ ├── ed448_internal.h │ │ │ ├── eme.h │ │ │ ├── eme_pkcs.h │ │ │ ├── emsa.h │ │ │ ├── emsa_pkcs1.h │ │ │ ├── filesystem.h │ │ │ ├── fmt.h │ │ │ ├── gcm.h │ │ │ ├── ghash.h │ │ │ ├── hash_id.h │ │ │ ├── hkdf.h │ │ │ ├── hmac.h │ │ │ ├── http_util.h │ │ │ ├── int_utils.h │ │ │ ├── isa_extn.h │ │ │ ├── kdf2.h │ │ │ ├── keccak_helpers.h │ │ │ ├── keccak_perm.h │ │ │ ├── keccak_perm_round.h │ │ │ ├── keypair.h │ │ │ ├── loadstor.h │ │ │ ├── locking_allocator.h │ │ │ ├── mdx_hash.h │ │ │ ├── mem_pool.h │ │ │ ├── mgf1.h │ │ │ ├── mod_inv.h │ │ │ ├── mode_pad.h │ │ │ ├── monty.h │ │ │ ├── monty_exp.h │ │ │ ├── mp_asmi.h │ │ │ ├── mp_core.h │ │ │ ├── mul128.h │ │ │ ├── oaep.h │ │ │ ├── ocb.h │ │ │ ├── oid_map.h │ │ │ ├── os_utils.h │ │ │ ├── parsing.h │ │ │ ├── pbes2.h │ │ │ ├── pcurves.h │ │ │ ├── pcurves_algos.h │ │ │ ├── pcurves_impl.h │ │ │ ├── pcurves_instance.h │ │ │ ├── pcurves_mul.h │ │ │ ├── pcurves_solinas.h │ │ │ ├── pcurves_util.h │ │ │ ├── pcurves_wrap.h │ │ │ ├── pk_ops_impl.h │ │ │ ├── poly1305.h │ │ │ ├── poly_dbl.h │ │ │ ├── prefetch.h │ │ │ ├── prf_tls.h │ │ │ ├── primality.h │ │ │ ├── pssr.h │ │ │ ├── rfc6979.h │ │ │ ├── rotate.h │ │ │ ├── rounding.h │ │ │ ├── scan_name.h │ │ │ ├── serpent.h │ │ │ ├── serpent_fn.h │ │ │ ├── serpent_sbox.h │ │ │ ├── sha1.h │ │ │ ├── sha2_32.h │ │ │ ├── sha2_32_f.h │ │ │ ├── sha2_64.h │ │ │ ├── sha2_64_f.h │ │ │ ├── sha3.h │ │ │ ├── shake.h │ │ │ ├── shake_xof.h │ │ │ ├── simd_2x64.h │ │ │ ├── simd_4x32.h │ │ │ ├── simd_4x64.h │ │ │ ├── simd_avx2.h │ │ │ ├── simd_avx2_gfni.h │ │ │ ├── skein_512.h │ │ │ ├── socket.h │ │ │ ├── socket_udp.h │ │ │ ├── stl_util.h │ │ │ ├── stream_mode.h │ │ │ ├── threefish_512.h │ │ │ ├── time_utils.h │ │ │ ├── tls_channel_impl.h │ │ │ ├── tls_channel_impl_12.h │ │ │ ├── tls_client_impl_12.h │ │ │ ├── tls_handshake_hash.h │ │ │ ├── tls_handshake_io.h │ │ │ ├── tls_handshake_state.h │ │ │ ├── tls_handshake_transitions.h │ │ │ ├── tls_reader.h │ │ │ ├── tls_record.h │ │ │ ├── tls_seq_numbers.h │ │ │ ├── tls_server_impl_12.h │ │ │ ├── tls_session_key.h │ │ │ ├── uri.h │ │ │ ├── version_info.h │ │ │ ├── workfactor.h │ │ │ ├── x448_internal.h │ │ │ └── x509_utils.h │ │ │ ├── kdf.h │ │ │ ├── mac.h │ │ │ ├── mem_ops.h │ │ │ ├── mutex.h │ │ │ ├── numthry.h │ │ │ ├── ocsp.h │ │ │ ├── oids.h │ │ │ ├── pbkdf.h │ │ │ ├── pbkdf2.h │ │ │ ├── pem.h │ │ │ ├── pk_algs.h │ │ │ ├── pk_keys.h │ │ │ ├── pk_ops.h │ │ │ ├── pk_ops_fwd.h │ │ │ ├── pkcs10.h │ │ │ ├── pkcs8.h │ │ │ ├── pkix_enums.h │ │ │ ├── pkix_types.h │ │ │ ├── pss_params.h │ │ │ ├── pubkey.h │ │ │ ├── pwdhash.h │ │ │ ├── reducer.h │ │ │ ├── rng.h │ │ │ ├── rsa.h │ │ │ ├── secmem.h │ │ │ ├── stateful_rng.h │ │ │ ├── stream_cipher.h │ │ │ ├── strong_type.h │ │ │ ├── sym_algo.h │ │ │ ├── symkey.h │ │ │ ├── system_rng.h │ │ │ ├── tls.h │ │ │ ├── tls_alert.h │ │ │ ├── tls_algos.h │ │ │ ├── tls_callbacks.h │ │ │ ├── tls_channel.h │ │ │ ├── tls_ciphersuite.h │ │ │ ├── tls_client.h │ │ │ ├── tls_exceptn.h │ │ │ ├── tls_extensions.h │ │ │ ├── tls_external_psk.h │ │ │ ├── tls_handshake_msg.h │ │ │ ├── tls_magic.h │ │ │ ├── tls_messages.h │ │ │ ├── tls_policy.h │ │ │ ├── tls_server.h │ │ │ ├── tls_server_info.h │ │ │ ├── tls_session.h │ │ │ ├── tls_session_manager.h │ │ │ ├── tls_session_manager_hybrid.h │ │ │ ├── tls_session_manager_memory.h │ │ │ ├── tls_session_manager_noop.h │ │ │ ├── tls_session_manager_sql.h │ │ │ ├── tls_session_manager_stateless.h │ │ │ ├── tls_signature_scheme.h │ │ │ ├── tls_version.h │ │ │ ├── types.h │ │ │ ├── version.h │ │ │ ├── x25519.h │ │ │ ├── x448.h │ │ │ ├── x509_ca.h │ │ │ ├── x509_crl.h │ │ │ ├── x509_ext.h │ │ │ ├── x509_key.h │ │ │ ├── x509_obj.h │ │ │ ├── x509cert.h │ │ │ ├── x509path.h │ │ │ ├── x509self.h │ │ │ ├── xof.h │ │ │ └── zlib.h │ ├── include_darwin_arm64_clang │ │ └── botan │ │ │ ├── build.h │ │ │ └── internal │ │ │ └── target_info.h │ ├── include_darwin_x64_clang │ │ └── botan │ │ │ ├── build.h │ │ │ └── internal │ │ │ └── target_info.h │ ├── include_darwin_x86_clang │ │ └── botan │ │ │ ├── build.h │ │ │ └── internal │ │ │ └── target_info.h │ ├── include_linux_x64_clang │ │ └── botan │ │ │ ├── build.h │ │ │ └── internal │ │ │ └── target_info.h │ ├── include_win32_x64_clang │ │ └── botan │ │ │ ├── build.h │ │ │ └── internal │ │ │ └── target_info.h │ ├── include_win32_x86_msvc │ │ └── botan │ │ │ ├── build.h │ │ │ └── internal │ │ │ └── target_info.h │ └── prepare.sh ├── bullet │ ├── .gitignore │ ├── configure.js │ └── repo │ │ ├── AUTHORS │ │ ├── BspDemo.bsp │ │ ├── BulletConfig.cmake.in │ │ ├── BulletLicense.txt │ │ ├── Bullet_User_Manual.pdf │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Demos │ │ ├── AllBulletDemos │ │ │ ├── CMakeLists.txt │ │ │ ├── DemoEntries.cpp │ │ │ ├── DemoEntries.h │ │ │ ├── Main.cpp │ │ │ └── Makefile.am │ │ ├── BasicDemo │ │ │ ├── BasicDemo.cpp │ │ │ ├── BasicDemo.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Win32BasicDemo.cpp │ │ │ └── main.cpp │ │ ├── Benchmarks │ │ │ ├── BenchmarkDemo.cpp │ │ │ ├── BenchmarkDemo.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Taru.mdl │ │ │ ├── Win32BenchmarkDemo.cpp │ │ │ ├── landscape.mdl │ │ │ ├── main.cpp │ │ │ └── premake4.lua │ │ ├── Box2dDemo │ │ │ ├── Box2dDemo.cpp │ │ │ ├── Box2dDemo.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Win32Box2dDemo.cpp │ │ │ └── main.cpp │ │ ├── BspDemo │ │ │ ├── BspConverter.cpp │ │ │ ├── BspConverter.h │ │ │ ├── BspDemo.cpp │ │ │ ├── BspDemo.h │ │ │ ├── BspLoader.cpp │ │ │ ├── BspLoader.h │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── BulletDinoDemo │ │ │ ├── BulletDino.c │ │ │ └── CMakeLists.txt │ │ ├── BulletXmlImportDemo │ │ │ ├── BulletXmlImportDemo.cpp │ │ │ ├── BulletXmlImportDemo.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Win32BulletXmlImportDemo.cpp │ │ │ ├── bullet_basic.xml │ │ │ ├── bulletser.xml │ │ │ └── main.cpp │ │ ├── CMakeLists.txt │ │ ├── CcdPhysicsDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── CcdPhysicsDemo.cpp │ │ │ ├── CcdPhysicsDemo.h │ │ │ ├── Makefile.am │ │ │ └── main.cpp │ │ ├── CellSpuDemo │ │ │ ├── BasicDemo2.cpp │ │ │ └── BasicDemo2.h │ │ ├── CharacterDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── CharacterDemo.cpp │ │ │ ├── CharacterDemo.h │ │ │ ├── DynamicCharacterController.cpp │ │ │ ├── DynamicCharacterController.h │ │ │ └── main.cpp │ │ ├── CollisionDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── CollisionDemo.cpp │ │ │ └── CollisionDemo.h │ │ ├── CollisionInterfaceDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── CollisionInterfaceDemo.cpp │ │ │ ├── CollisionInterfaceDemo.h │ │ │ ├── Win32CollisionInterfaceDemo.cpp │ │ │ └── main.cpp │ │ ├── ConcaveConvexcastDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── ConcaveConvexcastDemo.cpp │ │ │ ├── ConcaveConvexcastDemo.h │ │ │ └── main.cpp │ │ ├── ConcaveDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── ConcaveDemo.h │ │ │ ├── ConcavePhysicsDemo.cpp │ │ │ ├── Jamfile │ │ │ ├── Win32ConcaveDemo.cpp │ │ │ └── main.cpp │ │ ├── ConcaveRaycastDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── ConcaveRaycastDemo.cpp │ │ │ ├── ConcaveRaycastDemo.h │ │ │ └── main.cpp │ │ ├── ConstraintDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── ConstraintDemo.cpp │ │ │ ├── ConstraintDemo.h │ │ │ ├── Win32ConstraintDemo.cpp │ │ │ └── main.cpp │ │ ├── ContinuousConvexCollision │ │ │ ├── CMakeLists.txt │ │ │ ├── ContinuousConvexCollision.h │ │ │ └── ContinuousConvexCollisionDemo.cpp │ │ ├── ConvexDecompositionDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── ConvexDecompositionDemo.cpp │ │ │ ├── ConvexDecompositionDemo.h │ │ │ ├── Win32ConvexDecompositionDemo.cpp │ │ │ ├── main.cpp │ │ │ └── testFile32Single.bullet │ │ ├── ConvexHullDistance │ │ │ ├── CMakeLists.txt │ │ │ └── ConvexHullDistanceDemo.cpp │ │ ├── DX11ClothDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── DXUT │ │ │ │ ├── Core │ │ │ │ │ ├── DXUT.cpp │ │ │ │ │ ├── DXUT.h │ │ │ │ │ ├── DXUTDevice11.cpp │ │ │ │ │ ├── DXUTDevice11.h │ │ │ │ │ ├── DXUTDevice9.cpp │ │ │ │ │ ├── DXUTDevice9.h │ │ │ │ │ ├── DXUTmisc.cpp │ │ │ │ │ ├── DXUTmisc.h │ │ │ │ │ └── dpiaware.manifest │ │ │ │ └── Optional │ │ │ │ │ ├── DXUTLockFreePipe.h │ │ │ │ │ ├── DXUTShapes.cpp │ │ │ │ │ ├── DXUTShapes.h │ │ │ │ │ ├── DXUTcamera.cpp │ │ │ │ │ ├── DXUTcamera.h │ │ │ │ │ ├── DXUTgui.cpp │ │ │ │ │ ├── DXUTgui.h │ │ │ │ │ ├── DXUTguiIME.cpp │ │ │ │ │ ├── DXUTguiIME.h │ │ │ │ │ ├── DXUTres.cpp │ │ │ │ │ ├── DXUTres.h │ │ │ │ │ ├── DXUTsettingsdlg.cpp │ │ │ │ │ ├── DXUTsettingsdlg.h │ │ │ │ │ ├── ImeUi.cpp │ │ │ │ │ ├── ImeUi.h │ │ │ │ │ ├── SDKmesh.cpp │ │ │ │ │ ├── SDKmesh.h │ │ │ │ │ ├── SDKmisc.cpp │ │ │ │ │ ├── SDKmisc.h │ │ │ │ │ ├── SDKsound.cpp │ │ │ │ │ ├── SDKsound.h │ │ │ │ │ ├── SDKwavefile.cpp │ │ │ │ │ ├── SDKwavefile.h │ │ │ │ │ └── directx.ico │ │ │ ├── Media │ │ │ │ ├── Tiny │ │ │ │ │ ├── Tiny_skin.dds │ │ │ │ │ ├── tiny.sdkmesh │ │ │ │ │ └── tiny.x │ │ │ │ └── UI │ │ │ │ │ ├── DXUTShared.fx │ │ │ │ │ ├── Font.dds │ │ │ │ │ ├── arrow.x │ │ │ │ │ └── dxutcontrols.dds │ │ │ ├── amdFlag.bmp │ │ │ ├── atiFlag.bmp │ │ │ ├── btDirectComputeSupport.h │ │ │ ├── cap.h │ │ │ ├── capsule.h │ │ │ ├── cloth.h │ │ │ ├── cloth_renderer.cpp │ │ │ ├── cloth_renderer.fx │ │ │ ├── cloth_renderer.rc │ │ │ ├── cloth_renderer_PS.hlsl │ │ │ ├── cloth_renderer_VS.hlsl │ │ │ ├── cylinder.h │ │ │ ├── premake4.lua │ │ │ ├── resource.h │ │ │ ├── texture.bmp │ │ │ └── texture.png │ │ ├── DoublePrecisionDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── DoublePrecisionDemo.cpp │ │ │ └── DoublePrecisionDemo.h │ │ ├── DynamicControlDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── MotorDemo.cpp │ │ │ ├── MotorDemo.h │ │ │ └── main.cpp │ │ ├── EPAPenDepthDemo │ │ │ └── PenetrationTestBullet.cpp │ │ ├── FeatherstoneMultiBodyDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── FeatherstoneMultiBodyDemo.cpp │ │ │ ├── FeatherstoneMultiBodyDemo.h │ │ │ ├── Makefile.am │ │ │ ├── Win32FeatherstoneMultiBodyDemo.cpp │ │ │ └── main.cpp │ │ ├── ForkLiftDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── ForkLiftDemo.cpp │ │ │ ├── ForkLiftDemo.h │ │ │ ├── Makefile.am │ │ │ └── main.cpp │ │ ├── FractureDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── FractureDemo.cpp │ │ │ ├── FractureDemo.h │ │ │ ├── Win32FractureDemo.cpp │ │ │ ├── btFractureBody.cpp │ │ │ ├── btFractureBody.h │ │ │ ├── btFractureDynamicsWorld.cpp │ │ │ ├── btFractureDynamicsWorld.h │ │ │ └── main.cpp │ │ ├── GenericJointDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── GenericJointDemo.cpp │ │ │ ├── GenericJointDemo.h │ │ │ ├── Ragdoll.cpp │ │ │ ├── Ragdoll.h │ │ │ ├── Win32GenericJointDemo.cpp │ │ │ └── main.cpp │ │ ├── GimpactTestDemo │ │ │ ├── BunnyMesh.h │ │ │ ├── CMakeLists.txt │ │ │ ├── GimpactTestDemo.cpp │ │ │ ├── GimpactTestDemo.h │ │ │ ├── TorusMesh.h │ │ │ ├── Win32GimpactDemo.cpp │ │ │ └── main.cpp │ │ ├── GjkConvexCastDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── LinearConvexCastDemo.cpp │ │ │ ├── LinearConvexCastDemo.h │ │ │ └── main.cpp │ │ ├── Gpu2dDemo │ │ │ ├── BasicDemo.cpp │ │ │ ├── BasicDemo.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── btGpuDemo2dCpuFunc.cpp │ │ │ ├── btGpuDemo2dSharedCode.h │ │ │ ├── btGpuDemo2dSharedDefs.h │ │ │ ├── btGpuDemo2dSharedTypes.h │ │ │ ├── btGpuDemoDynamicsWorld.cpp │ │ │ ├── btGpuDemoDynamicsWorld.h │ │ │ ├── btGpuDemoPairCache.cpp │ │ │ ├── btGpuDemoPairCache.h │ │ │ ├── main.cpp │ │ │ ├── oecakeLoader.cpp │ │ │ └── oecakeLoader.h │ │ ├── Gpu3dDemo │ │ │ ├── BasicDemo3d.cpp │ │ │ ├── BasicDemo3d.h │ │ │ ├── CMakeLists.txt │ │ │ ├── btGpuDemo3dCpuFunc.cpp │ │ │ ├── btGpuDemo3dSharedCode.h │ │ │ ├── btGpuDemo3dSharedDefs.h │ │ │ ├── btGpuDemo3dSharedTypes.h │ │ │ ├── btGpuDemoDynamicsWorld3D.cpp │ │ │ ├── btGpuDemoDynamicsWorld3D.h │ │ │ └── main.cpp │ │ ├── GyroscopicDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── GyroscopicDemo.cpp │ │ │ ├── GyroscopicDemo.h │ │ │ ├── Win32GyroscopicDemo.cpp │ │ │ └── main.cpp │ │ ├── HelloWorld │ │ │ ├── CMakeLists.txt │ │ │ ├── HelloWorld.cpp │ │ │ └── premake4.lua │ │ ├── InternalEdgeDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── InternalEdgeDemo.cpp │ │ │ ├── InternalEdgeDemo.h │ │ │ ├── Taru.mdl │ │ │ ├── Win32InternalEdgeDemo.cpp │ │ │ └── main.cpp │ │ ├── Makefile.am │ │ ├── MovingConcaveDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── ConcaveDemo.h │ │ │ └── ConcavePhysicsDemo.cpp │ │ ├── MultiMaterialDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── MultiMaterialDemo.cpp │ │ │ ├── MultiMaterialDemo.h │ │ │ └── main.cpp │ │ ├── MultiThreadedDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── MultiThreadedDemo.cpp │ │ │ ├── MultiThreadedDemo.h │ │ │ └── main.cpp │ │ ├── NativeClient │ │ │ ├── bin_html │ │ │ │ ├── bind.js │ │ │ │ ├── dragger.js │ │ │ │ ├── httpd.cmd │ │ │ │ ├── httpd.py │ │ │ │ ├── index.html │ │ │ │ ├── trackball.js │ │ │ │ ├── tumbler.js │ │ │ │ ├── tumbler.nmf │ │ │ │ └── vector3.js │ │ │ ├── callback.h │ │ │ ├── cube.cc │ │ │ ├── cube.h │ │ │ ├── opengl_context.cc │ │ │ ├── opengl_context.h │ │ │ ├── opengl_context_ptrs.h │ │ │ ├── premake4.lua │ │ │ ├── scripting_bridge.cc │ │ │ ├── scripting_bridge.h │ │ │ ├── shader_util.cc │ │ │ ├── shader_util.h │ │ │ ├── transforms.cc │ │ │ ├── transforms.h │ │ │ ├── tumbler.cc │ │ │ ├── tumbler.h │ │ │ └── tumbler_module.cc │ │ ├── OpenCLClothDemo │ │ │ ├── AMD │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── premake4.lua │ │ │ ├── Apple │ │ │ │ └── CMakeLists.txt │ │ │ ├── CLClothDemo.sln │ │ │ ├── CLClothDemo.vcproj │ │ │ ├── CMakeLists.txt │ │ │ ├── Intel │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── premake4.lua │ │ │ ├── MiniCL │ │ │ │ └── CMakeLists.txt │ │ │ ├── NVidia │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── premake4.lua │ │ │ ├── btOpenCLSupport.h │ │ │ ├── cl_cloth_demo.cpp │ │ │ ├── cloth.h │ │ │ ├── clstuff.cpp │ │ │ ├── clstuff.h │ │ │ ├── clstuff.hpp │ │ │ ├── fragment.glsl │ │ │ ├── gl_win.cpp │ │ │ ├── gl_win.h │ │ │ ├── gl_win.hpp │ │ │ ├── shaders.cl │ │ │ └── vertex.glsl │ │ ├── OpenGL │ │ │ ├── CMakeLists.txt │ │ │ ├── CommandLineArguments.h │ │ │ ├── DebugCastResult.h │ │ │ ├── DemoApplication.cpp │ │ │ ├── DemoApplication.h │ │ │ ├── GLDebugDrawer.cpp │ │ │ ├── GLDebugDrawer.h │ │ │ ├── GLDebugFont.cpp │ │ │ ├── GLDebugFont.h │ │ │ ├── GL_DialogDynamicsWorld.cpp │ │ │ ├── GL_DialogDynamicsWorld.h │ │ │ ├── GL_DialogWindow.cpp │ │ │ ├── GL_DialogWindow.h │ │ │ ├── GL_ShapeDrawer.cpp │ │ │ ├── GL_ShapeDrawer.h │ │ │ ├── GL_Simplex1to4.cpp │ │ │ ├── GL_Simplex1to4.h │ │ │ ├── GlutDemoApplication.cpp │ │ │ ├── GlutDemoApplication.h │ │ │ ├── GlutStuff.cpp │ │ │ ├── GlutStuff.h │ │ │ ├── Makefile.am │ │ │ ├── RenderTexture.cpp │ │ │ ├── RenderTexture.h │ │ │ ├── Win32AppMain.cpp │ │ │ ├── Win32DemoApplication.cpp │ │ │ ├── Win32DemoApplication.h │ │ │ ├── premake4.lua │ │ │ ├── stb_image.cpp │ │ │ └── stb_image.h │ │ ├── OpenPL_Demo │ │ │ ├── CApi.cpp │ │ │ └── OpenPL_Demo.c │ │ ├── RagdollDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── RagdollDemo.cpp │ │ │ ├── RagdollDemo.h │ │ │ └── main.cpp │ │ ├── RaytestDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── RaytestDemo.cpp │ │ │ ├── RaytestDemo.h │ │ │ ├── Win32RaytestDemo.cpp │ │ │ └── main.cpp │ │ ├── Raytracer │ │ │ ├── CMakeLists.txt │ │ │ ├── Raytracer.cpp │ │ │ ├── Raytracer.h │ │ │ └── main.cpp │ │ ├── RollingFrictionDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── RollingFrictionDemo.cpp │ │ │ ├── RollingFrictionDemo.h │ │ │ ├── Win32RollingFrictionDemo.cpp │ │ │ └── main.cpp │ │ ├── SerializeDemo │ │ │ ├── AMD │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── premake4.lua │ │ │ ├── CMakeLists.txt │ │ │ ├── SerializeDemo.cpp │ │ │ ├── SerializeDemo.h │ │ │ ├── Win32SerializeDemo.cpp │ │ │ ├── main.cpp │ │ │ ├── testFile.bullet │ │ │ └── testFileCloth.bullet │ │ ├── SharedOpenCL │ │ │ ├── btOpenCLInclude.h │ │ │ ├── btOpenCLUtils.cpp │ │ │ ├── btOpenCLUtils.h │ │ │ ├── clew.c │ │ │ └── clew.h │ │ ├── SimplexDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── SimplexDemo.cpp │ │ │ └── SimplexDemo.h │ │ ├── SliderConstraintDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── SliderConstraintDemo.cpp │ │ │ ├── SliderConstraintDemo.h │ │ │ └── main.cpp │ │ ├── SoftDemo │ │ │ ├── AMD │ │ │ │ └── premake4.lua │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── SoftDemo.cpp │ │ │ ├── SoftDemo.h │ │ │ ├── bunny.inl │ │ │ ├── cube.inl │ │ │ └── main.cpp │ │ ├── TerrainDemo │ │ │ ├── Makefile.am │ │ │ ├── TerrainDemo.cpp │ │ │ ├── TerrainDemo.h │ │ │ └── main.cpp │ │ ├── ThreadingDemo │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── UserCollisionAlgorithm │ │ │ ├── CMakeLists.txt │ │ │ ├── UserCollisionAlgorithm.cpp │ │ │ └── UserCollisionAlgorithm.h │ │ ├── VectorAdd_OpenCL │ │ │ ├── AMD │ │ │ │ └── CMakeLists.txt │ │ │ ├── Apple │ │ │ │ └── CMakeLists.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── MiniCL │ │ │ │ └── CMakeLists.txt │ │ │ ├── MiniCL_VectorAdd.cpp │ │ │ ├── NVidia │ │ │ │ └── CMakeLists.txt │ │ │ └── VectorAddKernels.cl │ │ ├── VehicleDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── VehicleDemo.cpp │ │ │ ├── VehicleDemo.h │ │ │ ├── heightfield128x128.cpp │ │ │ └── main.cpp │ │ ├── VoronoiFractureDemo │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── VoronoiFractureDemo.cpp │ │ │ ├── VoronoiFractureDemo.h │ │ │ ├── Win32VoronoiFractureDemo.cpp │ │ │ └── main.cpp │ │ └── premake4.lua │ │ ├── Doxyfile │ │ ├── Extras │ │ ├── AllBulletDemosOSX │ │ │ ├── AllBulletDemos.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── project.pbxproj │ │ │ │ ├── zakariya.pbxuser │ │ │ │ └── zakariya.perspectivev3 │ │ │ ├── AllBulletDemos_Prefix.pch │ │ │ ├── BulletIcon.icns │ │ │ ├── BulletIcon.psd │ │ │ ├── English.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── README.txt │ │ │ ├── main.m │ │ │ └── src │ │ │ │ ├── BTDemo.h │ │ │ │ ├── BTDemo.mm │ │ │ │ ├── BTDemosAppController.h │ │ │ │ ├── BTDemosAppController.m │ │ │ │ ├── BTSimulationParameters.h │ │ │ │ ├── BTSimulationParameters.m │ │ │ │ └── toolkit │ │ │ │ ├── BTFullscreenWindow.h │ │ │ │ ├── BTFullscreenWindow.m │ │ │ │ ├── BTGLUTKeyAdapter.h │ │ │ │ ├── BTGLUTKeyAdapter.m │ │ │ │ ├── BTOpenGLDisplayDelegate.h │ │ │ │ ├── BTOpenGLView.h │ │ │ │ └── BTOpenGLView.m │ │ ├── CDTestFramework │ │ │ ├── AntTweakBar │ │ │ │ ├── ChangeLog.txt │ │ │ │ ├── Clean.bat │ │ │ │ ├── License.txt │ │ │ │ ├── Readme.txt │ │ │ │ ├── include │ │ │ │ │ └── AntTweakBar.h │ │ │ │ └── src │ │ │ │ │ ├── AntPerfTimer.h │ │ │ │ │ ├── AntTweakBar.rc │ │ │ │ │ ├── AntTweakBar.sln │ │ │ │ │ ├── AntTweakBar.vcproj │ │ │ │ │ ├── LoadOGL.cpp │ │ │ │ │ ├── LoadOGL.h │ │ │ │ │ ├── LoadOGLCore.cpp │ │ │ │ │ ├── LoadOGLCore.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.x86_64 │ │ │ │ │ ├── MiniGLUT.h │ │ │ │ │ ├── TwBar.cpp │ │ │ │ │ ├── TwBar.h │ │ │ │ │ ├── TwColors.cpp │ │ │ │ │ ├── TwColors.h │ │ │ │ │ ├── TwDirect3D10.cpp │ │ │ │ │ ├── TwDirect3D10.h │ │ │ │ │ ├── TwDirect3D11.cpp │ │ │ │ │ ├── TwDirect3D11.h │ │ │ │ │ ├── TwDirect3D9.cpp │ │ │ │ │ ├── TwDirect3D9.h │ │ │ │ │ ├── TwEventGLFW.c │ │ │ │ │ ├── TwEventGLUT.c │ │ │ │ │ ├── TwEventSDL.c │ │ │ │ │ ├── TwEventWin.c │ │ │ │ │ ├── TwEventWin32.c │ │ │ │ │ ├── TwEventX11.c │ │ │ │ │ ├── TwFonts.cpp │ │ │ │ │ ├── TwFonts.h │ │ │ │ │ ├── TwGraph.h │ │ │ │ │ ├── TwMgr.cpp │ │ │ │ │ ├── TwMgr.h │ │ │ │ │ ├── TwOpenGL.cpp │ │ │ │ │ ├── TwOpenGL.h │ │ │ │ │ ├── TwOpenGLCore.cpp │ │ │ │ │ ├── TwOpenGLCore.h │ │ │ │ │ ├── TwPrecomp.cpp │ │ │ │ │ ├── TwPrecomp.h │ │ │ │ │ ├── d3d10vs2003.h │ │ │ │ │ ├── res │ │ │ │ │ ├── FontChars.txt │ │ │ │ │ ├── FontFixed1.pgm │ │ │ │ │ ├── FontLargeAA.pgm │ │ │ │ │ ├── FontNormal.pgm │ │ │ │ │ ├── FontNormalAA.pgm │ │ │ │ │ ├── FontSmall.pgm │ │ │ │ │ ├── TwXCursors.h │ │ │ │ │ ├── cur00000.cur │ │ │ │ │ ├── cur00001.cur │ │ │ │ │ ├── cur00002.cur │ │ │ │ │ ├── cur00003.cur │ │ │ │ │ ├── cur00004.cur │ │ │ │ │ ├── cur00005.cur │ │ │ │ │ ├── cur00006.cur │ │ │ │ │ ├── cur00007.cur │ │ │ │ │ ├── cur00008.cur │ │ │ │ │ ├── cur00009.cur │ │ │ │ │ ├── cur00010.cur │ │ │ │ │ ├── cur00011.cur │ │ │ │ │ ├── cur00012.cur │ │ │ │ │ ├── cur00013.cur │ │ │ │ │ ├── curs00.pbm │ │ │ │ │ ├── curs01.pbm │ │ │ │ │ ├── curs02.pbm │ │ │ │ │ ├── curs03.pbm │ │ │ │ │ ├── curs04.pbm │ │ │ │ │ ├── curs05.pbm │ │ │ │ │ ├── curs06.pbm │ │ │ │ │ ├── curs07.pbm │ │ │ │ │ ├── curs08.pbm │ │ │ │ │ ├── curs09.pbm │ │ │ │ │ ├── curs10.pbm │ │ │ │ │ ├── curs11.pbm │ │ │ │ │ ├── curs12.pbm │ │ │ │ │ ├── curs13.pbm │ │ │ │ │ ├── mask00.pbm │ │ │ │ │ ├── mask01.pbm │ │ │ │ │ ├── mask02.pbm │ │ │ │ │ ├── mask03.pbm │ │ │ │ │ ├── mask04.pbm │ │ │ │ │ ├── mask05.pbm │ │ │ │ │ ├── mask06.pbm │ │ │ │ │ ├── mask07.pbm │ │ │ │ │ ├── mask08.pbm │ │ │ │ │ ├── mask09.pbm │ │ │ │ │ ├── mask10.pbm │ │ │ │ │ ├── mask11.pbm │ │ │ │ │ ├── mask12.pbm │ │ │ │ │ └── mask13.pbm │ │ │ │ │ └── resource.h │ │ │ ├── BipartiteBoxPruning.cpp │ │ │ ├── BipartiteBoxPruning.h │ │ │ ├── BulletSAPCompleteBoxPruningTest.cpp │ │ │ ├── BulletSAPCompleteBoxPruningTest.h │ │ │ ├── CDTestFramework.cpp │ │ │ ├── CDTestFramework.h │ │ │ ├── CDTestFramework.sln │ │ │ ├── CDTestFramework.txt │ │ │ ├── CDTestFramework.vcproj │ │ │ ├── Camera.cpp │ │ │ ├── Camera.h │ │ │ ├── CapsuleMeshQuery.cpp │ │ │ ├── CapsuleMeshQuery.h │ │ │ ├── CollisionTest.cpp │ │ │ ├── CollisionTest.h │ │ │ ├── CompleteBoxPruning.cpp │ │ │ ├── CompleteBoxPruning.h │ │ │ ├── GLFontData.h │ │ │ ├── GLFontRenderer.cpp │ │ │ ├── GLFontRenderer.h │ │ │ ├── GLUT32.DLL │ │ │ ├── History.txt │ │ │ ├── IceHelpers.cpp │ │ │ ├── IceHelpers.h │ │ │ ├── License.txt │ │ │ ├── License.txt.bak │ │ │ ├── OBBMeshQuery.cpp │ │ │ ├── OBBMeshQuery.h │ │ │ ├── Opcode │ │ │ │ ├── Ice │ │ │ │ │ ├── IceAABB.cpp │ │ │ │ │ ├── IceAABB.h │ │ │ │ │ ├── IceAllocator.cpp │ │ │ │ │ ├── IceAllocator.h │ │ │ │ │ ├── IceAssert.h │ │ │ │ │ ├── IceAxes.h │ │ │ │ │ ├── IceBitArray.cpp │ │ │ │ │ ├── IceBitArray.h │ │ │ │ │ ├── IceBoundingSphere.h │ │ │ │ │ ├── IceContainer.cpp │ │ │ │ │ ├── IceContainer.h │ │ │ │ │ ├── IceFPU.h │ │ │ │ │ ├── IceHPoint.cpp │ │ │ │ │ ├── IceHPoint.h │ │ │ │ │ ├── IceHashing.h │ │ │ │ │ ├── IceIndexedTriangle.cpp │ │ │ │ │ ├── IceIndexedTriangle.h │ │ │ │ │ ├── IceLSS.h │ │ │ │ │ ├── IceMatrix3x3.cpp │ │ │ │ │ ├── IceMatrix3x3.h │ │ │ │ │ ├── IceMatrix4x4.cpp │ │ │ │ │ ├── IceMatrix4x4.h │ │ │ │ │ ├── IceMemoryMacros.h │ │ │ │ │ ├── IceOBB.cpp │ │ │ │ │ ├── IceOBB.h │ │ │ │ │ ├── IcePairs.h │ │ │ │ │ ├── IcePlane.cpp │ │ │ │ │ ├── IcePlane.h │ │ │ │ │ ├── IcePoint.cpp │ │ │ │ │ ├── IcePoint.h │ │ │ │ │ ├── IcePreprocessor.h │ │ │ │ │ ├── IceRandom.cpp │ │ │ │ │ ├── IceRandom.h │ │ │ │ │ ├── IceRay.cpp │ │ │ │ │ ├── IceRay.h │ │ │ │ │ ├── IceRevisitedRadix.cpp │ │ │ │ │ ├── IceRevisitedRadix.h │ │ │ │ │ ├── IceSegment.cpp │ │ │ │ │ ├── IceSegment.h │ │ │ │ │ ├── IceTriangle.cpp │ │ │ │ │ ├── IceTriangle.h │ │ │ │ │ ├── IceTrilist.h │ │ │ │ │ ├── IceTypes.h │ │ │ │ │ ├── IceUtils.cpp │ │ │ │ │ ├── IceUtils.h │ │ │ │ │ ├── _IceAABB.h │ │ │ │ │ ├── _IceContainer.cpp │ │ │ │ │ ├── _IceContainer.h │ │ │ │ │ ├── _IceFPU.h │ │ │ │ │ ├── _IceMemoryMacros.h │ │ │ │ │ ├── _IcePreprocessor.h │ │ │ │ │ ├── _IceRevisitedRadix.cpp │ │ │ │ │ ├── _IceRevisitedRadix.h │ │ │ │ │ ├── _IceTypes.h │ │ │ │ │ └── _IceUtils.h │ │ │ │ ├── OPC_AABBCollider.cpp │ │ │ │ ├── OPC_AABBCollider.h │ │ │ │ ├── OPC_AABBTree.cpp │ │ │ │ ├── OPC_AABBTree.h │ │ │ │ ├── OPC_ArraySAP.cpp │ │ │ │ ├── OPC_ArraySAP.h │ │ │ │ ├── OPC_BaseModel.cpp │ │ │ │ ├── OPC_BaseModel.h │ │ │ │ ├── OPC_BoxBoxOverlap.h │ │ │ │ ├── OPC_BoxPruning.cpp │ │ │ │ ├── OPC_BoxPruning.h │ │ │ │ ├── OPC_Collider.cpp │ │ │ │ ├── OPC_Collider.h │ │ │ │ ├── OPC_Common.cpp │ │ │ │ ├── OPC_Common.h │ │ │ │ ├── OPC_HybridModel.cpp │ │ │ │ ├── OPC_HybridModel.h │ │ │ │ ├── OPC_IceHook.h │ │ │ │ ├── OPC_LSSAABBOverlap.h │ │ │ │ ├── OPC_LSSCollider.cpp │ │ │ │ ├── OPC_LSSCollider.h │ │ │ │ ├── OPC_LSSTriOverlap.h │ │ │ │ ├── OPC_MeshInterface.cpp │ │ │ │ ├── OPC_MeshInterface.h │ │ │ │ ├── OPC_Model.cpp │ │ │ │ ├── OPC_Model.h │ │ │ │ ├── OPC_OBBCollider.cpp │ │ │ │ ├── OPC_OBBCollider.h │ │ │ │ ├── OPC_OptimizedTree.cpp │ │ │ │ ├── OPC_OptimizedTree.h │ │ │ │ ├── OPC_Picking.cpp │ │ │ │ ├── OPC_Picking.h │ │ │ │ ├── OPC_PlanesAABBOverlap.h │ │ │ │ ├── OPC_PlanesCollider.cpp │ │ │ │ ├── OPC_PlanesCollider.h │ │ │ │ ├── OPC_PlanesTriOverlap.h │ │ │ │ ├── OPC_RayAABBOverlap.h │ │ │ │ ├── OPC_RayCollider.cpp │ │ │ │ ├── OPC_RayCollider.h │ │ │ │ ├── OPC_RayTriOverlap.h │ │ │ │ ├── OPC_Settings.h │ │ │ │ ├── OPC_SphereAABBOverlap.h │ │ │ │ ├── OPC_SphereCollider.cpp │ │ │ │ ├── OPC_SphereCollider.h │ │ │ │ ├── OPC_SphereTriOverlap.h │ │ │ │ ├── OPC_SweepAndPrune.cpp │ │ │ │ ├── OPC_SweepAndPrune.h │ │ │ │ ├── OPC_TreeBuilders.cpp │ │ │ │ ├── OPC_TreeBuilders.h │ │ │ │ ├── OPC_TreeCollider.cpp │ │ │ │ ├── OPC_TreeCollider.h │ │ │ │ ├── OPC_TriBoxOverlap.h │ │ │ │ ├── OPC_TriTriOverlap.h │ │ │ │ ├── OPC_VolumeCollider.cpp │ │ │ │ ├── OPC_VolumeCollider.h │ │ │ │ ├── Opcode.cpp │ │ │ │ ├── Opcode.dsp │ │ │ │ ├── Opcode.dsw │ │ │ │ ├── Opcode.h │ │ │ │ ├── Opcode.sln │ │ │ │ ├── Opcode.vcproj │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ │ ├── OpcodeArraySAPTest.cpp │ │ │ ├── OpcodeArraySAPTest.h │ │ │ ├── Profiling.h │ │ │ ├── ReadMe.txt │ │ │ ├── RenderingHelpers.cpp │ │ │ ├── RenderingHelpers.h │ │ │ ├── SphereMeshQuery.cpp │ │ │ ├── SphereMeshQuery.h │ │ │ ├── Terrain.cpp │ │ │ ├── Terrain.h │ │ │ ├── convex1.bin │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── CMakeLists.txt │ │ ├── CUDA │ │ │ ├── btCudaBroadphase.cpp │ │ │ ├── btCudaBroadphase.cu │ │ │ ├── btCudaBroadphase.h │ │ │ ├── btCudaDefines.h │ │ │ ├── btCudaUtils.cu │ │ │ ├── btGpuDemo2dCudaFunc.cu │ │ │ ├── btGpuDemo3dCudaFunc.cu │ │ │ ├── cutil_gl_error.h │ │ │ ├── cutil_math.h │ │ │ ├── libbulletcuda.vcproj │ │ │ ├── radixsort.cu │ │ │ ├── radixsort.cuh │ │ │ └── radixsort_kernel.cu │ │ ├── ConvexDecomposition │ │ │ ├── CMakeLists.txt │ │ │ ├── ConvexBuilder.cpp │ │ │ ├── ConvexBuilder.h │ │ │ ├── ConvexDecomposition.cpp │ │ │ ├── ConvexDecomposition.h │ │ │ ├── bestfit.cpp │ │ │ ├── bestfit.h │ │ │ ├── bestfitobb.cpp │ │ │ ├── bestfitobb.h │ │ │ ├── cd_hull.cpp │ │ │ ├── cd_hull.h │ │ │ ├── cd_vector.h │ │ │ ├── cd_wavefront.cpp │ │ │ ├── cd_wavefront.h │ │ │ ├── concavity.cpp │ │ │ ├── concavity.h │ │ │ ├── fitsphere.cpp │ │ │ ├── fitsphere.h │ │ │ ├── float_math.cpp │ │ │ ├── float_math.h │ │ │ ├── meshvolume.cpp │ │ │ ├── meshvolume.h │ │ │ ├── planetri.cpp │ │ │ ├── planetri.h │ │ │ ├── premake4.lua │ │ │ ├── raytri.cpp │ │ │ ├── raytri.h │ │ │ ├── splitplane.cpp │ │ │ ├── splitplane.h │ │ │ ├── vlookup.cpp │ │ │ └── vlookup.h │ │ ├── GIMPACTUtils │ │ │ ├── CMakeLists.txt │ │ │ ├── btGImpactConvexDecompositionShape.cpp │ │ │ └── btGImpactConvexDecompositionShape.h │ │ ├── HACD │ │ │ ├── CMakeLists.txt │ │ │ ├── hacdCircularList.h │ │ │ ├── hacdCircularList.inl │ │ │ ├── hacdGraph.cpp │ │ │ ├── hacdGraph.h │ │ │ ├── hacdHACD.cpp │ │ │ ├── hacdHACD.h │ │ │ ├── hacdICHull.cpp │ │ │ ├── hacdICHull.h │ │ │ ├── hacdManifoldMesh.cpp │ │ │ ├── hacdManifoldMesh.h │ │ │ ├── hacdVector.h │ │ │ ├── hacdVector.inl │ │ │ ├── hacdVersion.h │ │ │ └── premake4.lua │ │ ├── Makefile.am │ │ ├── Serialize │ │ │ ├── BlenderSerialize │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bBlenderFile.cpp │ │ │ │ ├── bBlenderFile.h │ │ │ │ ├── bMain.cpp │ │ │ │ ├── bMain.h │ │ │ │ ├── dna249-64bit.cpp │ │ │ │ └── dna249.cpp │ │ │ ├── BulletFileLoader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── autogenerated │ │ │ │ │ └── bullet.h │ │ │ │ ├── bChunk.cpp │ │ │ │ ├── bChunk.h │ │ │ │ ├── bCommon.h │ │ │ │ ├── bDNA.cpp │ │ │ │ ├── bDNA.h │ │ │ │ ├── bDefines.h │ │ │ │ ├── bFile.cpp │ │ │ │ ├── bFile.h │ │ │ │ ├── btBulletFile.cpp │ │ │ │ ├── btBulletFile.h │ │ │ │ └── premake4.lua │ │ │ ├── BulletWorldImporter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btBulletWorldImporter.cpp │ │ │ │ ├── btBulletWorldImporter.h │ │ │ │ ├── btWorldImporter.cpp │ │ │ │ ├── btWorldImporter.h │ │ │ │ └── premake4.lua │ │ │ ├── BulletXmlWorldImporter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btBulletXmlWorldImporter.cpp │ │ │ │ ├── btBulletXmlWorldImporter.h │ │ │ │ ├── premake4.lua │ │ │ │ ├── string_split.cpp │ │ │ │ ├── string_split.h │ │ │ │ ├── tinystr.cpp │ │ │ │ ├── tinystr.h │ │ │ │ ├── tinyxml.cpp │ │ │ │ ├── tinyxml.h │ │ │ │ ├── tinyxmlerror.cpp │ │ │ │ └── tinyxmlparser.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── HeaderGenerator │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── apiGen.cpp │ │ │ │ ├── blenderGenerate.py │ │ │ │ ├── bulletGenerate.py │ │ │ │ └── createDnaString.bat │ │ │ ├── ReadBulletSample │ │ │ │ ├── BulletDataExtractor.cpp │ │ │ │ ├── BulletDataExtractor.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ └── makesdna │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DNA_rigidbody.h │ │ │ │ └── makesdna.cpp │ │ ├── glui │ │ │ ├── CMakeLists.txt │ │ │ ├── GL │ │ │ │ └── glui.h │ │ │ ├── algebra3.cpp │ │ │ ├── algebra3.h │ │ │ ├── arcball.cpp │ │ │ ├── arcball.h │ │ │ ├── glui.cpp │ │ │ ├── glui_add_controls.cpp │ │ │ ├── glui_bitmap_img_data.cpp │ │ │ ├── glui_bitmaps.cpp │ │ │ ├── glui_button.cpp │ │ │ ├── glui_checkbox.cpp │ │ │ ├── glui_column.cpp │ │ │ ├── glui_commandline.cpp │ │ │ ├── glui_control.cpp │ │ │ ├── glui_edittext.cpp │ │ │ ├── glui_filebrowser.cpp │ │ │ ├── glui_internal.h │ │ │ ├── glui_internal_control.h │ │ │ ├── glui_list.cpp │ │ │ ├── glui_listbox.cpp │ │ │ ├── glui_mouse_iaction.cpp │ │ │ ├── glui_node.cpp │ │ │ ├── glui_panel.cpp │ │ │ ├── glui_radio.cpp │ │ │ ├── glui_rollout.cpp │ │ │ ├── glui_rotation.cpp │ │ │ ├── glui_scrollbar.cpp │ │ │ ├── glui_separator.cpp │ │ │ ├── glui_spinner.cpp │ │ │ ├── glui_statictext.cpp │ │ │ ├── glui_string.cpp │ │ │ ├── glui_textbox.cpp │ │ │ ├── glui_translation.cpp │ │ │ ├── glui_tree.cpp │ │ │ ├── glui_treepanel.cpp │ │ │ ├── glui_window.cpp │ │ │ ├── quaternion.cpp │ │ │ ├── quaternion.h │ │ │ └── readme.txt │ │ ├── khx2dae │ │ │ ├── Bullet_dae_screenshot.jpg │ │ │ ├── Havok5.5toColladaPhysics.dae │ │ │ ├── Havok_hkx_screenshot.jpg │ │ │ ├── SimpleLoadDemo.patch │ │ │ └── readme.txt │ │ ├── premake4.lua │ │ └── sph │ │ │ ├── READ_ME.txt │ │ │ ├── cmp.sh │ │ │ ├── common │ │ │ ├── GLee.c │ │ │ ├── GLee.h │ │ │ ├── common_defs.h │ │ │ ├── geomx.cpp │ │ │ ├── geomx.h │ │ │ ├── gl_helper.cpp │ │ │ ├── gl_helper.h │ │ │ ├── glext.h │ │ │ ├── glut.h │ │ │ ├── image.cpp │ │ │ ├── image.h │ │ │ ├── matrix-inline.h │ │ │ ├── matrix.cci │ │ │ ├── matrix.cpp │ │ │ ├── matrix.h │ │ │ ├── mdebug.cpp │ │ │ ├── mdebug.h │ │ │ ├── mesh.cpp │ │ │ ├── mesh.h │ │ │ ├── mesh_info.h │ │ │ ├── mtime.cpp │ │ │ ├── mtime.h │ │ │ ├── particle.cpp │ │ │ ├── particle.h │ │ │ ├── point_set.cpp │ │ │ ├── point_set.h │ │ │ ├── vector-inline.h │ │ │ ├── vector.cci │ │ │ ├── vector.cpp │ │ │ └── vector.h │ │ │ ├── fluid_system_host.linkinfo │ │ │ ├── fluids.vcproj │ │ │ ├── fluids │ │ │ ├── fluid.cpp │ │ │ ├── fluid.h │ │ │ ├── fluid_system.cpp │ │ │ ├── fluid_system.cu │ │ │ ├── fluid_system.h │ │ │ ├── fluid_system_host.cu │ │ │ ├── fluid_system_host.cuh │ │ │ ├── fluid_system_kern.cu │ │ │ ├── fluid_system_kern.cuh │ │ │ ├── radixsort.cu │ │ │ ├── radixsort.cuh │ │ │ └── radixsort_kernel.cu │ │ │ ├── fluids_2005.sln │ │ │ ├── fluids_2005.vcproj │ │ │ └── main.cpp │ │ ├── GLUT32.DLL │ │ ├── Glut │ │ ├── EmptyGL │ │ │ └── GL │ │ │ │ ├── egl_cpx.h │ │ │ │ ├── egl_defs.h │ │ │ │ ├── egl_logged.h │ │ │ │ ├── egl_tokens.h │ │ │ │ ├── egl_void.h │ │ │ │ ├── gl.h │ │ │ │ ├── glu.h │ │ │ │ └── glut.h │ │ ├── GL │ │ │ ├── glew.h │ │ │ ├── glext.h │ │ │ ├── glut.h │ │ │ ├── glxew.h │ │ │ ├── glxext.h │ │ │ ├── wglew.h │ │ │ └── wglext.h │ │ ├── btGlutInclude.h │ │ ├── glew32s.lib │ │ ├── glew64s.lib │ │ ├── glut32.lib │ │ └── glut64.lib │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── RELEASING.TXT │ │ ├── Test │ │ ├── Info.plist │ │ ├── README.txt │ │ ├── Source │ │ │ ├── TestList.cpp │ │ │ ├── TestList.h │ │ │ ├── Tests │ │ │ │ ├── Test_3x3getRot.cpp │ │ │ │ ├── Test_3x3getRot.h │ │ │ │ ├── Test_3x3mulM.cpp │ │ │ │ ├── Test_3x3mulM.h │ │ │ │ ├── Test_3x3mulM1M2.cpp │ │ │ │ ├── Test_3x3mulM1M2.h │ │ │ │ ├── Test_3x3mulMV.cpp │ │ │ │ ├── Test_3x3mulMV.h │ │ │ │ ├── Test_3x3mulVM.cpp │ │ │ │ ├── Test_3x3mulVM.h │ │ │ │ ├── Test_3x3setRot.cpp │ │ │ │ ├── Test_3x3setRot.h │ │ │ │ ├── Test_3x3timesTranspose.cpp │ │ │ │ ├── Test_3x3timesTranspose.h │ │ │ │ ├── Test_3x3transpose.cpp │ │ │ │ ├── Test_3x3transpose.h │ │ │ │ ├── Test_3x3transposeTimes.cpp │ │ │ │ ├── Test_3x3transposeTimes.h │ │ │ │ ├── Test_btDbvt.cpp │ │ │ │ ├── Test_btDbvt.h │ │ │ │ ├── Test_dot3.cpp │ │ │ │ ├── Test_dot3.h │ │ │ │ ├── Test_maxdot.cpp │ │ │ │ ├── Test_maxdot.h │ │ │ │ ├── Test_mindot.cpp │ │ │ │ ├── Test_mindot.h │ │ │ │ ├── Test_qtdot.cpp │ │ │ │ ├── Test_qtdot.h │ │ │ │ ├── Test_qtmul.cpp │ │ │ │ ├── Test_qtmul.h │ │ │ │ ├── Test_qtmulQV3.cpp │ │ │ │ ├── Test_qtmulQV3.h │ │ │ │ ├── Test_qtmulV3Q.cpp │ │ │ │ ├── Test_qtmulV3Q.h │ │ │ │ ├── Test_qtnorm.cpp │ │ │ │ ├── Test_qtnorm.h │ │ │ │ ├── Test_quat_aos_neon.cpp │ │ │ │ ├── Test_quat_aos_neon.h │ │ │ │ ├── Test_v3cross.cpp │ │ │ │ ├── Test_v3cross.h │ │ │ │ ├── Test_v3div.cpp │ │ │ │ ├── Test_v3div.h │ │ │ │ ├── Test_v3dot.cpp │ │ │ │ ├── Test_v3dot.h │ │ │ │ ├── Test_v3interp.cpp │ │ │ │ ├── Test_v3interp.h │ │ │ │ ├── Test_v3lerp.cpp │ │ │ │ ├── Test_v3lerp.h │ │ │ │ ├── Test_v3norm.cpp │ │ │ │ ├── Test_v3norm.h │ │ │ │ ├── Test_v3rotate.cpp │ │ │ │ ├── Test_v3rotate.h │ │ │ │ ├── Test_v3sdiv.cpp │ │ │ │ ├── Test_v3sdiv.h │ │ │ │ ├── Test_v3skew.cpp │ │ │ │ ├── Test_v3skew.h │ │ │ │ ├── Test_v3triple.cpp │ │ │ │ └── Test_v3triple.h │ │ │ ├── Utils.cpp │ │ │ ├── Utils.h │ │ │ ├── btIntDefines.h │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ └── vector.h │ │ └── premake4.lua │ │ ├── UnitTests │ │ ├── BulletUnitTests │ │ │ ├── CMakeLists.txt │ │ │ ├── Main.cpp │ │ │ ├── TestBulletOnly.h │ │ │ ├── TestCholeskyDecomposition.cpp │ │ │ ├── TestCholeskyDecomposition.h │ │ │ ├── TestLinearMath.h │ │ │ ├── TestPolarDecomposition.cpp │ │ │ ├── TestPolarDecomposition.h │ │ │ ├── btCholeskyDecomposition.cpp │ │ │ └── btCholeskyDecomposition.h │ │ ├── CMakeLists.txt │ │ └── cppunit │ │ │ ├── AUTHORS │ │ │ ├── BUGS │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog │ │ │ ├── CodingGuideLines.txt │ │ │ ├── THANKS │ │ │ ├── TODO │ │ │ ├── include │ │ │ └── cppunit │ │ │ │ ├── AdditionalMessage.h │ │ │ │ ├── Asserter.h │ │ │ │ ├── BriefTestProgressListener.h │ │ │ │ ├── CompilerOutputter.h │ │ │ │ ├── Exception.h │ │ │ │ ├── Message.h │ │ │ │ ├── Outputter.h │ │ │ │ ├── Portability.h │ │ │ │ ├── Protector.h │ │ │ │ ├── SourceLine.h │ │ │ │ ├── SynchronizedObject.h │ │ │ │ ├── Test.h │ │ │ │ ├── TestAssert.h │ │ │ │ ├── TestCaller.h │ │ │ │ ├── TestCase.h │ │ │ │ ├── TestComposite.h │ │ │ │ ├── TestFailure.h │ │ │ │ ├── TestFixture.h │ │ │ │ ├── TestLeaf.h │ │ │ │ ├── TestListener.h │ │ │ │ ├── TestPath.h │ │ │ │ ├── TestResult.h │ │ │ │ ├── TestResultCollector.h │ │ │ │ ├── TestRunner.h │ │ │ │ ├── TestSuccessListener.h │ │ │ │ ├── TestSuite.h │ │ │ │ ├── TextOutputter.h │ │ │ │ ├── TextTestProgressListener.h │ │ │ │ ├── TextTestResult.h │ │ │ │ ├── TextTestRunner.h │ │ │ │ ├── XmlOutputter.h │ │ │ │ ├── XmlOutputterHook.h │ │ │ │ ├── config-auto.h │ │ │ │ ├── config │ │ │ │ ├── CppUnitApi.h │ │ │ │ ├── SelectDllLoader.h │ │ │ │ ├── SourcePrefix.h │ │ │ │ ├── config-bcb5.h │ │ │ │ ├── config-evc4.h │ │ │ │ ├── config-mac.h │ │ │ │ └── config-msvc6.h │ │ │ │ ├── extensions │ │ │ │ ├── AutoRegisterSuite.h │ │ │ │ ├── ExceptionTestCaseDecorator.h │ │ │ │ ├── HelperMacros.h │ │ │ │ ├── Orthodox.h │ │ │ │ ├── RepeatedTest.h │ │ │ │ ├── TestCaseDecorator.h │ │ │ │ ├── TestDecorator.h │ │ │ │ ├── TestFactory.h │ │ │ │ ├── TestFactoryRegistry.h │ │ │ │ ├── TestFixtureFactory.h │ │ │ │ ├── TestNamer.h │ │ │ │ ├── TestSetUp.h │ │ │ │ ├── TestSuiteBuilderContext.h │ │ │ │ ├── TestSuiteFactory.h │ │ │ │ ├── TypeInfoHelper.h │ │ │ │ └── XmlInputHelper.h │ │ │ │ ├── plugin │ │ │ │ ├── DynamicLibraryManager.h │ │ │ │ ├── DynamicLibraryManagerException.h │ │ │ │ ├── PlugInManager.h │ │ │ │ ├── PlugInParameters.h │ │ │ │ ├── TestPlugIn.h │ │ │ │ └── TestPlugInDefaultImpl.h │ │ │ │ ├── portability │ │ │ │ ├── CppUnitDeque.h │ │ │ │ ├── CppUnitMap.h │ │ │ │ ├── CppUnitSet.h │ │ │ │ ├── CppUnitStack.h │ │ │ │ ├── CppUnitVector.h │ │ │ │ ├── FloatingPoint.h │ │ │ │ └── Stream.h │ │ │ │ ├── tools │ │ │ │ ├── Algorithm.h │ │ │ │ ├── StringTools.h │ │ │ │ ├── XmlDocument.h │ │ │ │ └── XmlElement.h │ │ │ │ └── ui │ │ │ │ └── text │ │ │ │ ├── TestRunner.h │ │ │ │ └── TextTestRunner.h │ │ │ └── src │ │ │ └── cppunit │ │ │ ├── AdditionalMessage.cpp │ │ │ ├── Asserter.cpp │ │ │ ├── BeOsDynamicLibraryManager.cpp │ │ │ ├── BriefTestProgressListener.cpp │ │ │ ├── CompilerOutputter.cpp │ │ │ ├── DefaultProtector.cpp │ │ │ ├── DefaultProtector.h │ │ │ ├── DllMain.cpp │ │ │ ├── DynamicLibraryManager.cpp │ │ │ ├── DynamicLibraryManagerException.cpp │ │ │ ├── Exception.cpp │ │ │ ├── Message.cpp │ │ │ ├── PlugInManager.cpp │ │ │ ├── PlugInParameters.cpp │ │ │ ├── Protector.cpp │ │ │ ├── ProtectorChain.cpp │ │ │ ├── ProtectorChain.h │ │ │ ├── ProtectorContext.h │ │ │ ├── RepeatedTest.cpp │ │ │ ├── ShlDynamicLibraryManager.cpp │ │ │ ├── SourceLine.cpp │ │ │ ├── StringTools.cpp │ │ │ ├── SynchronizedObject.cpp │ │ │ ├── Test.cpp │ │ │ ├── TestAssert.cpp │ │ │ ├── TestCase.cpp │ │ │ ├── TestCaseDecorator.cpp │ │ │ ├── TestComposite.cpp │ │ │ ├── TestDecorator.cpp │ │ │ ├── TestFactoryRegistry.cpp │ │ │ ├── TestFailure.cpp │ │ │ ├── TestLeaf.cpp │ │ │ ├── TestNamer.cpp │ │ │ ├── TestPath.cpp │ │ │ ├── TestPlugInDefaultImpl.cpp │ │ │ ├── TestResult.cpp │ │ │ ├── TestResultCollector.cpp │ │ │ ├── TestRunner.cpp │ │ │ ├── TestSetUp.cpp │ │ │ ├── TestSuccessListener.cpp │ │ │ ├── TestSuite.cpp │ │ │ ├── TestSuiteBuilderContext.cpp │ │ │ ├── TextOutputter.cpp │ │ │ ├── TextTestProgressListener.cpp │ │ │ ├── TextTestResult.cpp │ │ │ ├── TextTestRunner.cpp │ │ │ ├── TypeInfoHelper.cpp │ │ │ ├── UnixDynamicLibraryManager.cpp │ │ │ ├── Win32DynamicLibraryManager.cpp │ │ │ ├── XmlDocument.cpp │ │ │ ├── XmlElement.cpp │ │ │ ├── XmlOutputter.cpp │ │ │ └── XmlOutputterHook.cpp │ │ ├── UseBullet.cmake │ │ ├── VERSION │ │ ├── acinclude.m4 │ │ ├── autogen.sh │ │ ├── build │ │ ├── Info.plist │ │ ├── autoexp_dat.txt │ │ ├── bullet.rc │ │ ├── bullet_ico.ico │ │ ├── findDirectX11.lua │ │ ├── findOpenCL.lua │ │ ├── fruitstrap_osx │ │ ├── icon.png │ │ ├── ios_build.sh │ │ ├── ios_run.sh │ │ ├── premake4.exe │ │ ├── premake4.lua │ │ ├── premake4_linux │ │ ├── premake4_osx │ │ ├── vs2005.bat │ │ ├── vs2008.bat │ │ ├── vs2010.bat │ │ ├── vs2010_dx11.bat │ │ ├── vs2010_opencl.bat │ │ └── vs_all.bat │ │ ├── bullet.pc.cmake │ │ ├── bullet.pc.in │ │ ├── bullet_logo.png │ │ ├── config.h.in │ │ ├── configure.ac │ │ ├── convex0.bin │ │ ├── docs │ │ ├── BulletQuickstart.pdf │ │ ├── BulletQuickstart.tex │ │ ├── building.tex │ │ ├── bullet_logo_2010_9.eps │ │ ├── faq.tex │ │ ├── helloworld.tex │ │ ├── intro.tex │ │ └── titlepic.sty │ │ ├── file.obj │ │ ├── glut64.dll │ │ ├── heightfield128x128.raw │ │ ├── install-sh │ │ ├── jenga.dae │ │ ├── lib │ │ └── readme.txt │ │ ├── src │ │ ├── Bullet-C-Api.h │ │ ├── BulletCollision │ │ │ ├── BroadphaseCollision │ │ │ │ ├── btAxisSweep3.cpp │ │ │ │ ├── btAxisSweep3.h │ │ │ │ ├── btBroadphaseInterface.h │ │ │ │ ├── btBroadphaseProxy.cpp │ │ │ │ ├── btBroadphaseProxy.h │ │ │ │ ├── btCollisionAlgorithm.cpp │ │ │ │ ├── btCollisionAlgorithm.h │ │ │ │ ├── btDbvt.cpp │ │ │ │ ├── btDbvt.h │ │ │ │ ├── btDbvtBroadphase.cpp │ │ │ │ ├── btDbvtBroadphase.h │ │ │ │ ├── btDispatcher.cpp │ │ │ │ ├── btDispatcher.h │ │ │ │ ├── btMultiSapBroadphase.cpp │ │ │ │ ├── btMultiSapBroadphase.h │ │ │ │ ├── btOverlappingPairCache.cpp │ │ │ │ ├── btOverlappingPairCache.h │ │ │ │ ├── btOverlappingPairCallback.h │ │ │ │ ├── btQuantizedBvh.cpp │ │ │ │ ├── btQuantizedBvh.h │ │ │ │ ├── btSimpleBroadphase.cpp │ │ │ │ └── btSimpleBroadphase.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CollisionDispatch │ │ │ │ ├── SphereTriangleDetector.cpp │ │ │ │ ├── SphereTriangleDetector.h │ │ │ │ ├── btActivatingCollisionAlgorithm.cpp │ │ │ │ ├── btActivatingCollisionAlgorithm.h │ │ │ │ ├── btBox2dBox2dCollisionAlgorithm.cpp │ │ │ │ ├── btBox2dBox2dCollisionAlgorithm.h │ │ │ │ ├── btBoxBoxCollisionAlgorithm.cpp │ │ │ │ ├── btBoxBoxCollisionAlgorithm.h │ │ │ │ ├── btBoxBoxDetector.cpp │ │ │ │ ├── btBoxBoxDetector.h │ │ │ │ ├── btCollisionConfiguration.h │ │ │ │ ├── btCollisionCreateFunc.h │ │ │ │ ├── btCollisionDispatcher.cpp │ │ │ │ ├── btCollisionDispatcher.h │ │ │ │ ├── btCollisionObject.cpp │ │ │ │ ├── btCollisionObject.h │ │ │ │ ├── btCollisionObjectWrapper.h │ │ │ │ ├── btCollisionWorld.cpp │ │ │ │ ├── btCollisionWorld.h │ │ │ │ ├── btCompoundCollisionAlgorithm.cpp │ │ │ │ ├── btCompoundCollisionAlgorithm.h │ │ │ │ ├── btCompoundCompoundCollisionAlgorithm.cpp │ │ │ │ ├── btCompoundCompoundCollisionAlgorithm.h │ │ │ │ ├── btConvex2dConvex2dAlgorithm.cpp │ │ │ │ ├── btConvex2dConvex2dAlgorithm.h │ │ │ │ ├── btConvexConcaveCollisionAlgorithm.cpp │ │ │ │ ├── btConvexConcaveCollisionAlgorithm.h │ │ │ │ ├── btConvexConvexAlgorithm.cpp │ │ │ │ ├── btConvexConvexAlgorithm.h │ │ │ │ ├── btConvexPlaneCollisionAlgorithm.cpp │ │ │ │ ├── btConvexPlaneCollisionAlgorithm.h │ │ │ │ ├── btDefaultCollisionConfiguration.cpp │ │ │ │ ├── btDefaultCollisionConfiguration.h │ │ │ │ ├── btEmptyCollisionAlgorithm.cpp │ │ │ │ ├── btEmptyCollisionAlgorithm.h │ │ │ │ ├── btGhostObject.cpp │ │ │ │ ├── btGhostObject.h │ │ │ │ ├── btHashedSimplePairCache.cpp │ │ │ │ ├── btHashedSimplePairCache.h │ │ │ │ ├── btInternalEdgeUtility.cpp │ │ │ │ ├── btInternalEdgeUtility.h │ │ │ │ ├── btManifoldResult.cpp │ │ │ │ ├── btManifoldResult.h │ │ │ │ ├── btSimulationIslandManager.cpp │ │ │ │ ├── btSimulationIslandManager.h │ │ │ │ ├── btSphereBoxCollisionAlgorithm.cpp │ │ │ │ ├── btSphereBoxCollisionAlgorithm.h │ │ │ │ ├── btSphereSphereCollisionAlgorithm.cpp │ │ │ │ ├── btSphereSphereCollisionAlgorithm.h │ │ │ │ ├── btSphereTriangleCollisionAlgorithm.cpp │ │ │ │ ├── btSphereTriangleCollisionAlgorithm.h │ │ │ │ ├── btUnionFind.cpp │ │ │ │ └── btUnionFind.h │ │ │ ├── CollisionShapes │ │ │ │ ├── btBox2dShape.cpp │ │ │ │ ├── btBox2dShape.h │ │ │ │ ├── btBoxShape.cpp │ │ │ │ ├── btBoxShape.h │ │ │ │ ├── btBvhTriangleMeshShape.cpp │ │ │ │ ├── btBvhTriangleMeshShape.h │ │ │ │ ├── btCapsuleShape.cpp │ │ │ │ ├── btCapsuleShape.h │ │ │ │ ├── btCollisionMargin.h │ │ │ │ ├── btCollisionShape.cpp │ │ │ │ ├── btCollisionShape.h │ │ │ │ ├── btCompoundShape.cpp │ │ │ │ ├── btCompoundShape.h │ │ │ │ ├── btConcaveShape.cpp │ │ │ │ ├── btConcaveShape.h │ │ │ │ ├── btConeShape.cpp │ │ │ │ ├── btConeShape.h │ │ │ │ ├── btConvex2dShape.cpp │ │ │ │ ├── btConvex2dShape.h │ │ │ │ ├── btConvexHullShape.cpp │ │ │ │ ├── btConvexHullShape.h │ │ │ │ ├── btConvexInternalShape.cpp │ │ │ │ ├── btConvexInternalShape.h │ │ │ │ ├── btConvexPointCloudShape.cpp │ │ │ │ ├── btConvexPointCloudShape.h │ │ │ │ ├── btConvexPolyhedron.cpp │ │ │ │ ├── btConvexPolyhedron.h │ │ │ │ ├── btConvexShape.cpp │ │ │ │ ├── btConvexShape.h │ │ │ │ ├── btConvexTriangleMeshShape.cpp │ │ │ │ ├── btConvexTriangleMeshShape.h │ │ │ │ ├── btCylinderShape.cpp │ │ │ │ ├── btCylinderShape.h │ │ │ │ ├── btEmptyShape.cpp │ │ │ │ ├── btEmptyShape.h │ │ │ │ ├── btHeightfieldTerrainShape.cpp │ │ │ │ ├── btHeightfieldTerrainShape.h │ │ │ │ ├── btMaterial.h │ │ │ │ ├── btMinkowskiSumShape.cpp │ │ │ │ ├── btMinkowskiSumShape.h │ │ │ │ ├── btMultiSphereShape.cpp │ │ │ │ ├── btMultiSphereShape.h │ │ │ │ ├── btMultimaterialTriangleMeshShape.cpp │ │ │ │ ├── btMultimaterialTriangleMeshShape.h │ │ │ │ ├── btOptimizedBvh.cpp │ │ │ │ ├── btOptimizedBvh.h │ │ │ │ ├── btPolyhedralConvexShape.cpp │ │ │ │ ├── btPolyhedralConvexShape.h │ │ │ │ ├── btScaledBvhTriangleMeshShape.cpp │ │ │ │ ├── btScaledBvhTriangleMeshShape.h │ │ │ │ ├── btShapeHull.cpp │ │ │ │ ├── btShapeHull.h │ │ │ │ ├── btSphereShape.cpp │ │ │ │ ├── btSphereShape.h │ │ │ │ ├── btStaticPlaneShape.cpp │ │ │ │ ├── btStaticPlaneShape.h │ │ │ │ ├── btStridingMeshInterface.cpp │ │ │ │ ├── btStridingMeshInterface.h │ │ │ │ ├── btTetrahedronShape.cpp │ │ │ │ ├── btTetrahedronShape.h │ │ │ │ ├── btTriangleBuffer.cpp │ │ │ │ ├── btTriangleBuffer.h │ │ │ │ ├── btTriangleCallback.cpp │ │ │ │ ├── btTriangleCallback.h │ │ │ │ ├── btTriangleIndexVertexArray.cpp │ │ │ │ ├── btTriangleIndexVertexArray.h │ │ │ │ ├── btTriangleIndexVertexMaterialArray.cpp │ │ │ │ ├── btTriangleIndexVertexMaterialArray.h │ │ │ │ ├── btTriangleInfoMap.h │ │ │ │ ├── btTriangleMesh.cpp │ │ │ │ ├── btTriangleMesh.h │ │ │ │ ├── btTriangleMeshShape.cpp │ │ │ │ ├── btTriangleMeshShape.h │ │ │ │ ├── btTriangleShape.h │ │ │ │ ├── btUniformScalingShape.cpp │ │ │ │ └── btUniformScalingShape.h │ │ │ ├── Doxyfile │ │ │ ├── Gimpact │ │ │ │ ├── btBoxCollision.h │ │ │ │ ├── btClipPolygon.h │ │ │ │ ├── btCompoundFromGimpact.h │ │ │ │ ├── btContactProcessing.cpp │ │ │ │ ├── btContactProcessing.h │ │ │ │ ├── btGImpactBvh.cpp │ │ │ │ ├── btGImpactBvh.h │ │ │ │ ├── btGImpactCollisionAlgorithm.cpp │ │ │ │ ├── btGImpactCollisionAlgorithm.h │ │ │ │ ├── btGImpactMassUtil.h │ │ │ │ ├── btGImpactQuantizedBvh.cpp │ │ │ │ ├── btGImpactQuantizedBvh.h │ │ │ │ ├── btGImpactShape.cpp │ │ │ │ ├── btGImpactShape.h │ │ │ │ ├── btGenericPoolAllocator.cpp │ │ │ │ ├── btGenericPoolAllocator.h │ │ │ │ ├── btGeometryOperations.h │ │ │ │ ├── btQuantization.h │ │ │ │ ├── btTriangleShapeEx.cpp │ │ │ │ ├── btTriangleShapeEx.h │ │ │ │ ├── gim_array.h │ │ │ │ ├── gim_basic_geometry_operations.h │ │ │ │ ├── gim_bitset.h │ │ │ │ ├── gim_box_collision.h │ │ │ │ ├── gim_box_set.cpp │ │ │ │ ├── gim_box_set.h │ │ │ │ ├── gim_clip_polygon.h │ │ │ │ ├── gim_contact.cpp │ │ │ │ ├── gim_contact.h │ │ │ │ ├── gim_geom_types.h │ │ │ │ ├── gim_geometry.h │ │ │ │ ├── gim_hash_table.h │ │ │ │ ├── gim_linear_math.h │ │ │ │ ├── gim_math.h │ │ │ │ ├── gim_memory.cpp │ │ │ │ ├── gim_memory.h │ │ │ │ ├── gim_radixsort.h │ │ │ │ ├── gim_tri_collision.cpp │ │ │ │ └── gim_tri_collision.h │ │ │ ├── NarrowPhaseCollision │ │ │ │ ├── btContinuousConvexCollision.cpp │ │ │ │ ├── btContinuousConvexCollision.h │ │ │ │ ├── btConvexCast.cpp │ │ │ │ ├── btConvexCast.h │ │ │ │ ├── btConvexPenetrationDepthSolver.h │ │ │ │ ├── btDiscreteCollisionDetectorInterface.h │ │ │ │ ├── btGjkConvexCast.cpp │ │ │ │ ├── btGjkConvexCast.h │ │ │ │ ├── btGjkEpa2.cpp │ │ │ │ ├── btGjkEpa2.h │ │ │ │ ├── btGjkEpaPenetrationDepthSolver.cpp │ │ │ │ ├── btGjkEpaPenetrationDepthSolver.h │ │ │ │ ├── btGjkPairDetector.cpp │ │ │ │ ├── btGjkPairDetector.h │ │ │ │ ├── btManifoldPoint.h │ │ │ │ ├── btMinkowskiPenetrationDepthSolver.cpp │ │ │ │ ├── btMinkowskiPenetrationDepthSolver.h │ │ │ │ ├── btPersistentManifold.cpp │ │ │ │ ├── btPersistentManifold.h │ │ │ │ ├── btPointCollector.h │ │ │ │ ├── btPolyhedralContactClipping.cpp │ │ │ │ ├── btPolyhedralContactClipping.h │ │ │ │ ├── btRaycastCallback.cpp │ │ │ │ ├── btRaycastCallback.h │ │ │ │ ├── btSimplexSolverInterface.h │ │ │ │ ├── btSubSimplexConvexCast.cpp │ │ │ │ ├── btSubSimplexConvexCast.h │ │ │ │ ├── btVoronoiSimplexSolver.cpp │ │ │ │ └── btVoronoiSimplexSolver.h │ │ │ └── premake4.lua │ │ ├── BulletDynamics │ │ │ ├── CMakeLists.txt │ │ │ ├── Character │ │ │ │ ├── btCharacterControllerInterface.h │ │ │ │ ├── btKinematicCharacterController.cpp │ │ │ │ └── btKinematicCharacterController.h │ │ │ ├── ConstraintSolver │ │ │ │ ├── btConeTwistConstraint.cpp │ │ │ │ ├── btConeTwistConstraint.h │ │ │ │ ├── btConstraintSolver.h │ │ │ │ ├── btContactConstraint.cpp │ │ │ │ ├── btContactConstraint.h │ │ │ │ ├── btContactSolverInfo.h │ │ │ │ ├── btFixedConstraint.cpp │ │ │ │ ├── btFixedConstraint.h │ │ │ │ ├── btGearConstraint.cpp │ │ │ │ ├── btGearConstraint.h │ │ │ │ ├── btGeneric6DofConstraint.cpp │ │ │ │ ├── btGeneric6DofConstraint.h │ │ │ │ ├── btGeneric6DofSpringConstraint.cpp │ │ │ │ ├── btGeneric6DofSpringConstraint.h │ │ │ │ ├── btHinge2Constraint.cpp │ │ │ │ ├── btHinge2Constraint.h │ │ │ │ ├── btHingeConstraint.cpp │ │ │ │ ├── btHingeConstraint.h │ │ │ │ ├── btJacobianEntry.h │ │ │ │ ├── btPoint2PointConstraint.cpp │ │ │ │ ├── btPoint2PointConstraint.h │ │ │ │ ├── btSequentialImpulseConstraintSolver.cpp │ │ │ │ ├── btSequentialImpulseConstraintSolver.h │ │ │ │ ├── btSliderConstraint.cpp │ │ │ │ ├── btSliderConstraint.h │ │ │ │ ├── btSolve2LinearConstraint.cpp │ │ │ │ ├── btSolve2LinearConstraint.h │ │ │ │ ├── btSolverBody.h │ │ │ │ ├── btSolverConstraint.h │ │ │ │ ├── btTypedConstraint.cpp │ │ │ │ ├── btTypedConstraint.h │ │ │ │ ├── btUniversalConstraint.cpp │ │ │ │ └── btUniversalConstraint.h │ │ │ ├── Dynamics │ │ │ │ ├── Bullet-C-API.cpp │ │ │ │ ├── btActionInterface.h │ │ │ │ ├── btDiscreteDynamicsWorld.cpp │ │ │ │ ├── btDiscreteDynamicsWorld.h │ │ │ │ ├── btDynamicsWorld.h │ │ │ │ ├── btRigidBody.cpp │ │ │ │ ├── btRigidBody.h │ │ │ │ ├── btSimpleDynamicsWorld.cpp │ │ │ │ └── btSimpleDynamicsWorld.h │ │ │ ├── Featherstone │ │ │ │ ├── btMultiBody.cpp │ │ │ │ ├── btMultiBody.h │ │ │ │ ├── btMultiBodyConstraint.cpp │ │ │ │ ├── btMultiBodyConstraint.h │ │ │ │ ├── btMultiBodyConstraintSolver.cpp │ │ │ │ ├── btMultiBodyConstraintSolver.h │ │ │ │ ├── btMultiBodyDynamicsWorld.cpp │ │ │ │ ├── btMultiBodyDynamicsWorld.h │ │ │ │ ├── btMultiBodyJointLimitConstraint.cpp │ │ │ │ ├── btMultiBodyJointLimitConstraint.h │ │ │ │ ├── btMultiBodyJointMotor.cpp │ │ │ │ ├── btMultiBodyJointMotor.h │ │ │ │ ├── btMultiBodyLink.h │ │ │ │ ├── btMultiBodyLinkCollider.h │ │ │ │ ├── btMultiBodyPoint2Point.cpp │ │ │ │ ├── btMultiBodyPoint2Point.h │ │ │ │ └── btMultiBodySolverConstraint.h │ │ │ ├── MLCPSolvers │ │ │ │ ├── btDantzigLCP.cpp │ │ │ │ ├── btDantzigLCP.h │ │ │ │ ├── btDantzigSolver.h │ │ │ │ ├── btMLCPSolver.cpp │ │ │ │ ├── btMLCPSolver.h │ │ │ │ ├── btMLCPSolverInterface.h │ │ │ │ ├── btPATHSolver.h │ │ │ │ └── btSolveProjectedGaussSeidel.h │ │ │ ├── Vehicle │ │ │ │ ├── btRaycastVehicle.cpp │ │ │ │ ├── btRaycastVehicle.h │ │ │ │ ├── btVehicleRaycaster.h │ │ │ │ ├── btWheelInfo.cpp │ │ │ │ └── btWheelInfo.h │ │ │ └── premake4.lua │ │ ├── BulletMultiThreaded │ │ │ ├── CMakeLists.txt │ │ │ ├── GpuSoftBodySolvers │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DX11 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── HLSL │ │ │ │ │ │ ├── ApplyForces.hlsl │ │ │ │ │ │ ├── ComputeBounds.hlsl │ │ │ │ │ │ ├── Integrate.hlsl │ │ │ │ │ │ ├── OutputToVertexArray.hlsl │ │ │ │ │ │ ├── PrepareLinks.hlsl │ │ │ │ │ │ ├── SolvePositions.hlsl │ │ │ │ │ │ ├── SolvePositionsSIMDBatched.hlsl │ │ │ │ │ │ ├── UpdateConstants.hlsl │ │ │ │ │ │ ├── UpdateNodes.hlsl │ │ │ │ │ │ ├── UpdateNormals.hlsl │ │ │ │ │ │ ├── UpdatePositions.hlsl │ │ │ │ │ │ ├── UpdatePositionsFromVelocities.hlsl │ │ │ │ │ │ ├── VSolveLinks.hlsl │ │ │ │ │ │ ├── solveCollisionsAndUpdateVelocities.hlsl │ │ │ │ │ │ └── solveCollisionsAndUpdateVelocitiesSIMDBatched.hlsl │ │ │ │ │ ├── btSoftBodySolverBuffer_DX11.h │ │ │ │ │ ├── btSoftBodySolverLinkData_DX11.h │ │ │ │ │ ├── btSoftBodySolverLinkData_DX11SIMDAware.h │ │ │ │ │ ├── btSoftBodySolverTriangleData_DX11.h │ │ │ │ │ ├── btSoftBodySolverVertexBuffer_DX11.h │ │ │ │ │ ├── btSoftBodySolverVertexData_DX11.h │ │ │ │ │ ├── btSoftBodySolver_DX11.cpp │ │ │ │ │ ├── btSoftBodySolver_DX11.h │ │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.cpp │ │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.h │ │ │ │ │ └── premake4.lua │ │ │ │ ├── OpenCL │ │ │ │ │ ├── AMD │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── premake4.lua │ │ │ │ │ ├── Apple │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Intel │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── premake4.lua │ │ │ │ │ ├── MiniCL │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── MiniCLTaskWrap.cpp │ │ │ │ │ ├── NVidia │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── premake4.lua │ │ │ │ │ ├── OpenCLC10 │ │ │ │ │ │ ├── ApplyForces.cl │ │ │ │ │ │ ├── ComputeBounds.cl │ │ │ │ │ │ ├── Integrate.cl │ │ │ │ │ │ ├── OutputToVertexArray.cl │ │ │ │ │ │ ├── PrepareLinks.cl │ │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocities.cl │ │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocitiesSIMDBatched.cl │ │ │ │ │ │ ├── SolvePositions.cl │ │ │ │ │ │ ├── SolvePositionsSIMDBatched.cl │ │ │ │ │ │ ├── UpdateConstants.cl │ │ │ │ │ │ ├── UpdateFixedVertexPositions.cl │ │ │ │ │ │ ├── UpdateNodes.cl │ │ │ │ │ │ ├── UpdateNormals.cl │ │ │ │ │ │ ├── UpdatePositions.cl │ │ │ │ │ │ ├── UpdatePositionsFromVelocities.cl │ │ │ │ │ │ └── VSolveLinks.cl │ │ │ │ │ ├── btSoftBodySolverBuffer_OpenCL.h │ │ │ │ │ ├── btSoftBodySolverLinkData_OpenCL.h │ │ │ │ │ ├── btSoftBodySolverLinkData_OpenCLSIMDAware.h │ │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.cpp │ │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.h │ │ │ │ │ ├── btSoftBodySolverTriangleData_OpenCL.h │ │ │ │ │ ├── btSoftBodySolverVertexBuffer_OpenGL.h │ │ │ │ │ ├── btSoftBodySolverVertexData_OpenCL.h │ │ │ │ │ ├── btSoftBodySolver_OpenCL.cpp │ │ │ │ │ ├── btSoftBodySolver_OpenCL.h │ │ │ │ │ ├── btSoftBodySolver_OpenCLSIMDAware.cpp │ │ │ │ │ └── btSoftBodySolver_OpenCLSIMDAware.h │ │ │ │ └── Shared │ │ │ │ │ └── btSoftBodySolverData.h │ │ │ ├── HeapManager.h │ │ │ ├── PlatformDefinitions.h │ │ │ ├── PosixThreadSupport.cpp │ │ │ ├── PosixThreadSupport.h │ │ │ ├── PpuAddressSpace.h │ │ │ ├── SequentialThreadSupport.cpp │ │ │ ├── SequentialThreadSupport.h │ │ │ ├── SpuCollisionObjectWrapper.cpp │ │ │ ├── SpuCollisionObjectWrapper.h │ │ │ ├── SpuCollisionTaskProcess.cpp │ │ │ ├── SpuCollisionTaskProcess.h │ │ │ ├── SpuContactManifoldCollisionAlgorithm.cpp │ │ │ ├── SpuContactManifoldCollisionAlgorithm.h │ │ │ ├── SpuDoubleBuffer.h │ │ │ ├── SpuFakeDma.cpp │ │ │ ├── SpuFakeDma.h │ │ │ ├── SpuGatheringCollisionDispatcher.cpp │ │ │ ├── SpuGatheringCollisionDispatcher.h │ │ │ ├── SpuLibspe2Support.cpp │ │ │ ├── SpuLibspe2Support.h │ │ │ ├── SpuNarrowPhaseCollisionTask │ │ │ │ ├── Box.h │ │ │ │ ├── SpuCollisionShapes.cpp │ │ │ │ ├── SpuCollisionShapes.h │ │ │ │ ├── SpuContactResult.cpp │ │ │ │ ├── SpuContactResult.h │ │ │ │ ├── SpuConvexPenetrationDepthSolver.h │ │ │ │ ├── SpuGatheringCollisionTask.cpp │ │ │ │ ├── SpuGatheringCollisionTask.h │ │ │ │ ├── SpuLocalSupport.h │ │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.cpp │ │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.h │ │ │ │ ├── SpuPreferredPenetrationDirections.h │ │ │ │ ├── boxBoxDistance.cpp │ │ │ │ ├── boxBoxDistance.h │ │ │ │ └── readme.txt │ │ │ ├── SpuSampleTask │ │ │ │ ├── SpuSampleTask.cpp │ │ │ │ ├── SpuSampleTask.h │ │ │ │ └── readme.txt │ │ │ ├── SpuSampleTaskProcess.cpp │ │ │ ├── SpuSampleTaskProcess.h │ │ │ ├── SpuSync.h │ │ │ ├── TrbDynBody.h │ │ │ ├── TrbStateVec.h │ │ │ ├── Win32ThreadSupport.cpp │ │ │ ├── Win32ThreadSupport.h │ │ │ ├── btGpu3DGridBroadphase.cpp │ │ │ ├── btGpu3DGridBroadphase.h │ │ │ ├── btGpu3DGridBroadphaseSharedCode.h │ │ │ ├── btGpu3DGridBroadphaseSharedDefs.h │ │ │ ├── btGpu3DGridBroadphaseSharedTypes.h │ │ │ ├── btGpuDefines.h │ │ │ ├── btGpuUtilsSharedCode.h │ │ │ ├── btGpuUtilsSharedDefs.h │ │ │ ├── btParallelConstraintSolver.cpp │ │ │ ├── btParallelConstraintSolver.h │ │ │ ├── btThreadSupportInterface.cpp │ │ │ ├── btThreadSupportInterface.h │ │ │ └── vectormath2bullet.h │ │ ├── BulletSoftBody │ │ │ ├── CMakeLists.txt │ │ │ ├── btDefaultSoftBodySolver.cpp │ │ │ ├── btDefaultSoftBodySolver.h │ │ │ ├── btSoftBody.cpp │ │ │ ├── btSoftBody.h │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.h │ │ │ ├── btSoftBodyData.h │ │ │ ├── btSoftBodyHelpers.cpp │ │ │ ├── btSoftBodyHelpers.h │ │ │ ├── btSoftBodyInternals.h │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.h │ │ │ ├── btSoftBodySolverVertexBuffer.h │ │ │ ├── btSoftBodySolvers.h │ │ │ ├── btSoftRigidCollisionAlgorithm.cpp │ │ │ ├── btSoftRigidCollisionAlgorithm.h │ │ │ ├── btSoftRigidDynamicsWorld.cpp │ │ │ ├── btSoftRigidDynamicsWorld.h │ │ │ ├── btSoftSoftCollisionAlgorithm.cpp │ │ │ ├── btSoftSoftCollisionAlgorithm.h │ │ │ ├── btSparseSDF.h │ │ │ └── premake4.lua │ │ ├── CMakeLists.txt │ │ ├── LinearMath │ │ │ ├── CMakeLists.txt │ │ │ ├── btAabbUtil2.h │ │ │ ├── btAlignedAllocator.cpp │ │ │ ├── btAlignedAllocator.h │ │ │ ├── btAlignedObjectArray.h │ │ │ ├── btConvexHull.cpp │ │ │ ├── btConvexHull.h │ │ │ ├── btConvexHullComputer.cpp │ │ │ ├── btConvexHullComputer.h │ │ │ ├── btDefaultMotionState.h │ │ │ ├── btGeometryUtil.cpp │ │ │ ├── btGeometryUtil.h │ │ │ ├── btGrahamScan2dConvexHull.h │ │ │ ├── btHashMap.h │ │ │ ├── btIDebugDraw.h │ │ │ ├── btList.h │ │ │ ├── btMatrix3x3.h │ │ │ ├── btMatrixX.h │ │ │ ├── btMinMax.h │ │ │ ├── btMotionState.h │ │ │ ├── btPolarDecomposition.cpp │ │ │ ├── btPolarDecomposition.h │ │ │ ├── btPoolAllocator.h │ │ │ ├── btQuadWord.h │ │ │ ├── btQuaternion.h │ │ │ ├── btQuickprof.cpp │ │ │ ├── btQuickprof.h │ │ │ ├── btRandom.h │ │ │ ├── btScalar.h │ │ │ ├── btSerializer.cpp │ │ │ ├── btSerializer.h │ │ │ ├── btStackAlloc.h │ │ │ ├── btTransform.h │ │ │ ├── btTransformUtil.h │ │ │ ├── btVector3.cpp │ │ │ ├── btVector3.h │ │ │ └── premake4.lua │ │ ├── Makefile.am │ │ ├── MiniCL │ │ │ ├── CMakeLists.txt │ │ │ ├── MiniCL.cpp │ │ │ ├── MiniCLTask │ │ │ │ ├── MiniCLTask.cpp │ │ │ │ └── MiniCLTask.h │ │ │ ├── MiniCLTaskScheduler.cpp │ │ │ ├── MiniCLTaskScheduler.h │ │ │ ├── cl.h │ │ │ ├── cl_MiniCL_Defs.h │ │ │ ├── cl_gl.h │ │ │ └── cl_platform.h │ │ ├── btBulletCollisionCommon.h │ │ ├── btBulletDynamicsCommon.h │ │ └── vectormath │ │ │ ├── neon │ │ │ ├── boolInVec.h │ │ │ ├── floatInVec.h │ │ │ ├── mat_aos.h │ │ │ ├── quat_aos.h │ │ │ ├── vec_aos.h │ │ │ └── vectormath_aos.h │ │ │ ├── scalar │ │ │ ├── boolInVec.h │ │ │ ├── floatInVec.h │ │ │ ├── mat_aos.h │ │ │ ├── quat_aos.h │ │ │ ├── vec_aos.h │ │ │ └── vectormath_aos.h │ │ │ ├── sse │ │ │ ├── boolInVec.h │ │ │ ├── floatInVec.h │ │ │ ├── mat_aos.h │ │ │ ├── quat_aos.h │ │ │ ├── vec_aos.h │ │ │ ├── vecidx_aos.h │ │ │ └── vectormath_aos.h │ │ │ └── vmInclude.h │ │ └── test1.oec ├── discord-rpc │ ├── .gitignore │ └── configure.js ├── fcgi │ ├── .gitignore │ ├── LICENSE.TERMS │ ├── README.inanity │ ├── configure.js │ ├── fastcgi.h │ ├── fcgi_config.h │ ├── fcgi_stdio.c │ ├── fcgi_stdio.h │ ├── fcgiapp.c │ ├── fcgiapp.h │ ├── fcgimisc.h │ ├── fcgio.cpp │ ├── fcgio.h │ ├── fcgios.h │ ├── os_unix.c │ └── os_win32.c ├── freetype │ ├── .gitignore │ └── configure.js ├── glew │ ├── .gitignore │ ├── LICENSE.txt │ ├── Makefile │ ├── README.txt │ ├── TODO.txt │ ├── auto │ │ ├── Makefile │ │ ├── bin │ │ │ ├── make.pl │ │ │ ├── make_def_fun.pl │ │ │ ├── make_def_var.pl │ │ │ ├── make_header.pl │ │ │ ├── make_html.pl │ │ │ ├── make_info.pl │ │ │ ├── make_info_list.pl │ │ │ ├── make_init.pl │ │ │ ├── make_list.pl │ │ │ ├── make_str.pl │ │ │ ├── make_struct_fun.pl │ │ │ ├── make_struct_var.pl │ │ │ ├── parse_spec.pl │ │ │ ├── update_ext.sh │ │ │ └── update_registry.sh │ │ ├── blacklist │ │ ├── core │ │ │ ├── GLX_AMD_gpu_association │ │ │ ├── GLX_ARB_get_proc_address │ │ │ ├── GLX_ATI_pixel_format_float │ │ │ ├── GLX_ATI_render_texture │ │ │ ├── GLX_EXT_create_context_es2_profile │ │ │ ├── GLX_EXT_create_context_es_profile │ │ │ ├── GLX_EXT_fbconfig_packed_float │ │ │ ├── GLX_EXT_framebuffer_sRGB │ │ │ ├── GLX_MESA_swap_control │ │ │ ├── GLX_NV_float_buffer │ │ │ ├── GLX_NV_vertex_array_range │ │ │ ├── GLX_SGIS_shared_multisample │ │ │ ├── GLX_SGIX_hyperpipe │ │ │ ├── GLX_SGIX_swap_barrier │ │ │ ├── GLX_SGIX_swap_group │ │ │ ├── GLX_SGI_video_sync │ │ │ ├── GLX_SUN_video_resize │ │ │ ├── GLX_VERSION_1_2 │ │ │ ├── GLX_VERSION_1_3 │ │ │ ├── GLX_VERSION_1_4 │ │ │ ├── GL_APPLE_float_pixels │ │ │ ├── GL_APPLE_pixel_buffer │ │ │ ├── GL_APPLE_texture_range │ │ │ ├── GL_ARB_draw_instanced │ │ │ ├── GL_ARB_imaging │ │ │ ├── GL_ARB_instanced_arrays │ │ │ ├── GL_ARB_internalformat_query2 │ │ │ ├── GL_ARB_matrix_palette │ │ │ ├── GL_ARB_multitexture │ │ │ ├── GL_ARB_robustness │ │ │ ├── GL_ARB_separate_shader_objects │ │ │ ├── GL_ARB_vertex_attrib_64bit │ │ │ ├── GL_ARB_vertex_blend │ │ │ ├── GL_ATIX_point_sprites │ │ │ ├── GL_ATIX_texture_env_combine3 │ │ │ ├── GL_ATIX_texture_env_route │ │ │ ├── GL_ATIX_vertex_shader_output_point_size │ │ │ ├── GL_ATI_envmap_bumpmap │ │ │ ├── GL_ATI_map_object_buffer │ │ │ ├── GL_ATI_pn_triangles │ │ │ ├── GL_ATI_separate_stencil │ │ │ ├── GL_ATI_shader_texture_lod │ │ │ ├── GL_ATI_texture_compression_3dc │ │ │ ├── GL_ATI_vertex_streams │ │ │ ├── GL_EXT_Cg_shader │ │ │ ├── GL_EXT_bindable_uniform │ │ │ ├── GL_EXT_debug_marker │ │ │ ├── GL_EXT_depth_bounds_test │ │ │ ├── GL_EXT_draw_instanced │ │ │ ├── GL_EXT_draw_range_elements │ │ │ ├── GL_EXT_fog_coord │ │ │ ├── GL_EXT_framebuffer_sRGB │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ ├── GL_EXT_packed_float │ │ │ ├── GL_EXT_pixel_buffer_object │ │ │ ├── GL_EXT_secondary_color │ │ │ ├── GL_EXT_texture_array │ │ │ ├── GL_EXT_texture_buffer_object │ │ │ ├── GL_EXT_texture_compression_latc │ │ │ ├── GL_EXT_texture_compression_rgtc │ │ │ ├── GL_EXT_texture_cube_map │ │ │ ├── GL_EXT_texture_edge_clamp │ │ │ ├── GL_EXT_texture_integer │ │ │ ├── GL_EXT_texture_rectangle │ │ │ ├── GL_EXT_texture_shared_exponent │ │ │ ├── GL_EXT_timer_query │ │ │ ├── GL_EXT_vertex_shader │ │ │ ├── GL_KTX_buffer_region │ │ │ ├── GL_NVX_gpu_memory_info │ │ │ ├── GL_NV_depth_buffer_float │ │ │ ├── GL_NV_depth_range_unclamped │ │ │ ├── GL_NV_fragment_program2 │ │ │ ├── GL_NV_fragment_program4 │ │ │ ├── GL_NV_fragment_program_option │ │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ │ ├── GL_NV_geometry_program4 │ │ │ ├── GL_NV_geometry_shader4 │ │ │ ├── GL_NV_gpu_program4 │ │ │ ├── GL_NV_gpu_program5 │ │ │ ├── GL_NV_parameter_buffer_object │ │ │ ├── GL_NV_path_rendering │ │ │ ├── GL_NV_present_video │ │ │ ├── GL_NV_tessellation_program5 │ │ │ ├── GL_NV_transform_feedback │ │ │ ├── GL_NV_vdpau_interop │ │ │ ├── GL_NV_vertex_program2_option │ │ │ ├── GL_NV_vertex_program3 │ │ │ ├── GL_NV_vertex_program4 │ │ │ ├── GL_REGAL_error_string │ │ │ ├── GL_REGAL_extension_query │ │ │ ├── GL_REGAL_log │ │ │ ├── GL_SGIX_shadow │ │ │ ├── GL_SUN_read_video_pixels │ │ │ ├── GL_VERSION_1_2 │ │ │ ├── GL_VERSION_1_2_1 │ │ │ ├── GL_VERSION_1_3 │ │ │ ├── GL_VERSION_1_4 │ │ │ ├── GL_VERSION_1_5 │ │ │ ├── GL_VERSION_2_0 │ │ │ ├── GL_VERSION_2_1 │ │ │ ├── GL_VERSION_3_0 │ │ │ ├── GL_VERSION_3_1 │ │ │ ├── GL_VERSION_3_2 │ │ │ ├── GL_VERSION_3_3 │ │ │ ├── GL_VERSION_4_0 │ │ │ ├── GL_VERSION_4_1 │ │ │ ├── GL_VERSION_4_2 │ │ │ ├── GL_VERSION_4_3 │ │ │ ├── GL_WIN_swap_hint │ │ │ ├── WGL_ARB_create_context │ │ │ ├── WGL_ATI_render_texture_rectangle │ │ │ ├── WGL_EXT_create_context_es2_profile │ │ │ ├── WGL_EXT_create_context_es_profile │ │ │ ├── WGL_EXT_framebuffer_sRGB │ │ │ ├── WGL_EXT_pixel_format_packed_float │ │ │ ├── WGL_NV_gpu_affinity │ │ │ └── WGL_NV_vertex_array_range │ │ ├── custom.txt │ │ ├── doc │ │ │ ├── advanced.html │ │ │ ├── basic.html │ │ │ ├── build.html │ │ │ ├── credits.html │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ └── log.html │ │ ├── extensions │ │ │ ├── .dummy │ │ │ ├── GLX_3DFX_multisample │ │ │ ├── GLX_AMD_gpu_association │ │ │ ├── GLX_ARB_create_context │ │ │ ├── GLX_ARB_create_context_profile │ │ │ ├── GLX_ARB_create_context_robustness │ │ │ ├── GLX_ARB_fbconfig_float │ │ │ ├── GLX_ARB_framebuffer_sRGB │ │ │ ├── GLX_ARB_get_proc_address │ │ │ ├── GLX_ARB_multisample │ │ │ ├── GLX_ARB_robustness_application_isolation │ │ │ ├── GLX_ARB_robustness_share_group_isolation │ │ │ ├── GLX_ARB_vertex_buffer_object │ │ │ ├── GLX_ATI_pixel_format_float │ │ │ ├── GLX_ATI_render_texture │ │ │ ├── GLX_EXT_create_context_es2_profile │ │ │ ├── GLX_EXT_create_context_es_profile │ │ │ ├── GLX_EXT_fbconfig_packed_float │ │ │ ├── GLX_EXT_framebuffer_sRGB │ │ │ ├── GLX_EXT_import_context │ │ │ ├── GLX_EXT_scene_marker │ │ │ ├── GLX_EXT_swap_control │ │ │ ├── GLX_EXT_swap_control_tear │ │ │ ├── GLX_EXT_texture_from_pixmap │ │ │ ├── GLX_EXT_visual_info │ │ │ ├── GLX_EXT_visual_rating │ │ │ ├── GLX_INTEL_swap_event │ │ │ ├── GLX_MESA_agp_offset │ │ │ ├── GLX_MESA_copy_sub_buffer │ │ │ ├── GLX_MESA_pixmap_colormap │ │ │ ├── GLX_MESA_release_buffers │ │ │ ├── GLX_MESA_set_3dfx_mode │ │ │ ├── GLX_MESA_swap_control │ │ │ ├── GLX_NV_copy_image │ │ │ ├── GLX_NV_float_buffer │ │ │ ├── GLX_NV_multisample_coverage │ │ │ ├── GLX_NV_present_video │ │ │ ├── GLX_NV_swap_group │ │ │ ├── GLX_NV_vertex_array_range │ │ │ ├── GLX_NV_video_capture │ │ │ ├── GLX_NV_video_out │ │ │ ├── GLX_OML_swap_method │ │ │ ├── GLX_OML_sync_control │ │ │ ├── GLX_SGIS_blended_overlay │ │ │ ├── GLX_SGIS_color_range │ │ │ ├── GLX_SGIS_multisample │ │ │ ├── GLX_SGIS_shared_multisample │ │ │ ├── GLX_SGIX_fbconfig │ │ │ ├── GLX_SGIX_hyperpipe │ │ │ ├── GLX_SGIX_pbuffer │ │ │ ├── GLX_SGIX_swap_barrier │ │ │ ├── GLX_SGIX_swap_group │ │ │ ├── GLX_SGIX_video_resize │ │ │ ├── GLX_SGIX_visual_select_group │ │ │ ├── GLX_SGI_cushion │ │ │ ├── GLX_SGI_make_current_read │ │ │ ├── GLX_SGI_swap_control │ │ │ ├── GLX_SGI_video_sync │ │ │ ├── GLX_SUN_get_transparent_index │ │ │ ├── GLX_SUN_video_resize │ │ │ ├── GL_3DFX_multisample │ │ │ ├── GL_3DFX_tbuffer │ │ │ ├── GL_3DFX_texture_compression_FXT1 │ │ │ ├── GL_AMD_blend_minmax_factor │ │ │ ├── GL_AMD_conservative_depth │ │ │ ├── GL_AMD_debug_output │ │ │ ├── GL_AMD_depth_clamp_separate │ │ │ ├── GL_AMD_draw_buffers_blend │ │ │ ├── GL_AMD_multi_draw_indirect │ │ │ ├── GL_AMD_name_gen_delete │ │ │ ├── GL_AMD_performance_monitor │ │ │ ├── GL_AMD_pinned_memory │ │ │ ├── GL_AMD_query_buffer_object │ │ │ ├── GL_AMD_sample_positions │ │ │ ├── GL_AMD_seamless_cubemap_per_texture │ │ │ ├── GL_AMD_shader_stencil_export │ │ │ ├── GL_AMD_stencil_operation_extended │ │ │ ├── GL_AMD_texture_texture4 │ │ │ ├── GL_AMD_transform_feedback3_lines_triangles │ │ │ ├── GL_AMD_vertex_shader_layer │ │ │ ├── GL_AMD_vertex_shader_tessellator │ │ │ ├── GL_AMD_vertex_shader_viewport_index │ │ │ ├── GL_APPLE_aux_depth_stencil │ │ │ ├── GL_APPLE_client_storage │ │ │ ├── GL_APPLE_element_array │ │ │ ├── GL_APPLE_fence │ │ │ ├── GL_APPLE_float_pixels │ │ │ ├── GL_APPLE_flush_buffer_range │ │ │ ├── GL_APPLE_object_purgeable │ │ │ ├── GL_APPLE_pixel_buffer │ │ │ ├── GL_APPLE_rgb_422 │ │ │ ├── GL_APPLE_row_bytes │ │ │ ├── GL_APPLE_specular_vector │ │ │ ├── GL_APPLE_texture_range │ │ │ ├── GL_APPLE_transform_hint │ │ │ ├── GL_APPLE_vertex_array_object │ │ │ ├── GL_APPLE_vertex_array_range │ │ │ ├── GL_APPLE_vertex_program_evaluators │ │ │ ├── GL_APPLE_ycbcr_422 │ │ │ ├── GL_ARB_ES2_compatibility │ │ │ ├── GL_ARB_ES3_compatibility │ │ │ ├── GL_ARB_arrays_of_arrays │ │ │ ├── GL_ARB_base_instance │ │ │ ├── GL_ARB_blend_func_extended │ │ │ ├── GL_ARB_cl_event │ │ │ ├── GL_ARB_clear_buffer_object │ │ │ ├── GL_ARB_color_buffer_float │ │ │ ├── GL_ARB_compatibility │ │ │ ├── GL_ARB_compressed_texture_pixel_storage │ │ │ ├── GL_ARB_compute_shader │ │ │ ├── GL_ARB_conservative_depth │ │ │ ├── GL_ARB_copy_buffer │ │ │ ├── GL_ARB_copy_image │ │ │ ├── GL_ARB_debug_output │ │ │ ├── GL_ARB_depth_buffer_float │ │ │ ├── GL_ARB_depth_clamp │ │ │ ├── GL_ARB_depth_texture │ │ │ ├── GL_ARB_draw_buffers │ │ │ ├── GL_ARB_draw_buffers_blend │ │ │ ├── GL_ARB_draw_elements_base_vertex │ │ │ ├── GL_ARB_draw_indirect │ │ │ ├── GL_ARB_draw_instanced │ │ │ ├── GL_ARB_explicit_attrib_location │ │ │ ├── GL_ARB_explicit_uniform_location │ │ │ ├── GL_ARB_fragment_coord_conventions │ │ │ ├── GL_ARB_fragment_layer_viewport │ │ │ ├── GL_ARB_fragment_program │ │ │ ├── GL_ARB_fragment_program_shadow │ │ │ ├── GL_ARB_fragment_shader │ │ │ ├── GL_ARB_framebuffer_no_attachments │ │ │ ├── GL_ARB_framebuffer_object │ │ │ ├── GL_ARB_framebuffer_sRGB │ │ │ ├── GL_ARB_geometry_shader4 │ │ │ ├── GL_ARB_get_program_binary │ │ │ ├── GL_ARB_gpu_shader5 │ │ │ ├── GL_ARB_gpu_shader_fp64 │ │ │ ├── GL_ARB_half_float_pixel │ │ │ ├── GL_ARB_half_float_vertex │ │ │ ├── GL_ARB_imaging │ │ │ ├── GL_ARB_instanced_arrays │ │ │ ├── GL_ARB_internalformat_query │ │ │ ├── GL_ARB_internalformat_query2 │ │ │ ├── GL_ARB_invalidate_subdata │ │ │ ├── GL_ARB_map_buffer_alignment │ │ │ ├── GL_ARB_map_buffer_range │ │ │ ├── GL_ARB_matrix_palette │ │ │ ├── GL_ARB_multi_draw_indirect │ │ │ ├── GL_ARB_multisample │ │ │ ├── GL_ARB_multitexture │ │ │ ├── GL_ARB_occlusion_query │ │ │ ├── GL_ARB_occlusion_query2 │ │ │ ├── GL_ARB_pixel_buffer_object │ │ │ ├── GL_ARB_point_parameters │ │ │ ├── GL_ARB_point_sprite │ │ │ ├── GL_ARB_program_interface_query │ │ │ ├── GL_ARB_provoking_vertex │ │ │ ├── GL_ARB_robust_buffer_access_behavior │ │ │ ├── GL_ARB_robustness │ │ │ ├── GL_ARB_robustness_application_isolation │ │ │ ├── GL_ARB_robustness_share_group_isolation │ │ │ ├── GL_ARB_sample_shading │ │ │ ├── GL_ARB_sampler_objects │ │ │ ├── GL_ARB_seamless_cube_map │ │ │ ├── GL_ARB_separate_shader_objects │ │ │ ├── GL_ARB_shader_atomic_counters │ │ │ ├── GL_ARB_shader_bit_encoding │ │ │ ├── GL_ARB_shader_image_load_store │ │ │ ├── GL_ARB_shader_image_size │ │ │ ├── GL_ARB_shader_objects │ │ │ ├── GL_ARB_shader_precision │ │ │ ├── GL_ARB_shader_stencil_export │ │ │ ├── GL_ARB_shader_storage_buffer_object │ │ │ ├── GL_ARB_shader_subroutine │ │ │ ├── GL_ARB_shader_texture_lod │ │ │ ├── GL_ARB_shading_language_100 │ │ │ ├── GL_ARB_shading_language_420pack │ │ │ ├── GL_ARB_shading_language_include │ │ │ ├── GL_ARB_shading_language_packing │ │ │ ├── GL_ARB_shadow │ │ │ ├── GL_ARB_shadow_ambient │ │ │ ├── GL_ARB_stencil_texturing │ │ │ ├── GL_ARB_sync │ │ │ ├── GL_ARB_tessellation_shader │ │ │ ├── GL_ARB_texture_border_clamp │ │ │ ├── GL_ARB_texture_buffer_object │ │ │ ├── GL_ARB_texture_buffer_object_rgb32 │ │ │ ├── GL_ARB_texture_buffer_range │ │ │ ├── GL_ARB_texture_compression │ │ │ ├── GL_ARB_texture_compression_bptc │ │ │ ├── GL_ARB_texture_compression_rgtc │ │ │ ├── GL_ARB_texture_cube_map │ │ │ ├── GL_ARB_texture_cube_map_array │ │ │ ├── GL_ARB_texture_env_add │ │ │ ├── GL_ARB_texture_env_combine │ │ │ ├── GL_ARB_texture_env_crossbar │ │ │ ├── GL_ARB_texture_env_dot3 │ │ │ ├── GL_ARB_texture_float │ │ │ ├── GL_ARB_texture_gather │ │ │ ├── GL_ARB_texture_mirrored_repeat │ │ │ ├── GL_ARB_texture_multisample │ │ │ ├── GL_ARB_texture_non_power_of_two │ │ │ ├── GL_ARB_texture_query_levels │ │ │ ├── GL_ARB_texture_query_lod │ │ │ ├── GL_ARB_texture_rectangle │ │ │ ├── GL_ARB_texture_rg │ │ │ ├── GL_ARB_texture_rgb10_a2ui │ │ │ ├── GL_ARB_texture_storage │ │ │ ├── GL_ARB_texture_storage_multisample │ │ │ ├── GL_ARB_texture_swizzle │ │ │ ├── GL_ARB_texture_view │ │ │ ├── GL_ARB_timer_query │ │ │ ├── GL_ARB_transform_feedback2 │ │ │ ├── GL_ARB_transform_feedback3 │ │ │ ├── GL_ARB_transform_feedback_instanced │ │ │ ├── GL_ARB_transpose_matrix │ │ │ ├── GL_ARB_uniform_buffer_object │ │ │ ├── GL_ARB_vertex_array_bgra │ │ │ ├── GL_ARB_vertex_array_object │ │ │ ├── GL_ARB_vertex_attrib_64bit │ │ │ ├── GL_ARB_vertex_attrib_binding │ │ │ ├── GL_ARB_vertex_blend │ │ │ ├── GL_ARB_vertex_buffer_object │ │ │ ├── GL_ARB_vertex_program │ │ │ ├── GL_ARB_vertex_shader │ │ │ ├── GL_ARB_vertex_type_2_10_10_10_rev │ │ │ ├── GL_ARB_viewport_array │ │ │ ├── GL_ARB_window_pos │ │ │ ├── GL_ATIX_point_sprites │ │ │ ├── GL_ATIX_texture_env_combine3 │ │ │ ├── GL_ATIX_texture_env_route │ │ │ ├── GL_ATIX_vertex_shader_output_point_size │ │ │ ├── GL_ATI_draw_buffers │ │ │ ├── GL_ATI_element_array │ │ │ ├── GL_ATI_envmap_bumpmap │ │ │ ├── GL_ATI_fragment_shader │ │ │ ├── GL_ATI_map_object_buffer │ │ │ ├── GL_ATI_meminfo │ │ │ ├── GL_ATI_pn_triangles │ │ │ ├── GL_ATI_separate_stencil │ │ │ ├── GL_ATI_shader_texture_lod │ │ │ ├── GL_ATI_text_fragment_shader │ │ │ ├── GL_ATI_texture_compression_3dc │ │ │ ├── GL_ATI_texture_env_combine3 │ │ │ ├── GL_ATI_texture_float │ │ │ ├── GL_ATI_texture_mirror_once │ │ │ ├── GL_ATI_vertex_array_object │ │ │ ├── GL_ATI_vertex_attrib_array_object │ │ │ ├── GL_ATI_vertex_streams │ │ │ ├── GL_EXT_422_pixels │ │ │ ├── GL_EXT_Cg_shader │ │ │ ├── GL_EXT_abgr │ │ │ ├── GL_EXT_bgra │ │ │ ├── GL_EXT_bindable_uniform │ │ │ ├── GL_EXT_blend_color │ │ │ ├── GL_EXT_blend_equation_separate │ │ │ ├── GL_EXT_blend_func_separate │ │ │ ├── GL_EXT_blend_logic_op │ │ │ ├── GL_EXT_blend_minmax │ │ │ ├── GL_EXT_blend_subtract │ │ │ ├── GL_EXT_clip_volume_hint │ │ │ ├── GL_EXT_cmyka │ │ │ ├── GL_EXT_color_subtable │ │ │ ├── GL_EXT_compiled_vertex_array │ │ │ ├── GL_EXT_convolution │ │ │ ├── GL_EXT_coordinate_frame │ │ │ ├── GL_EXT_copy_texture │ │ │ ├── GL_EXT_cull_vertex │ │ │ ├── GL_EXT_debug_marker │ │ │ ├── GL_EXT_depth_bounds_test │ │ │ ├── GL_EXT_direct_state_access │ │ │ ├── GL_EXT_draw_buffers2 │ │ │ ├── GL_EXT_draw_instanced │ │ │ ├── GL_EXT_draw_range_elements │ │ │ ├── GL_EXT_fog_coord │ │ │ ├── GL_EXT_fragment_lighting │ │ │ ├── GL_EXT_framebuffer_blit │ │ │ ├── GL_EXT_framebuffer_multisample │ │ │ ├── GL_EXT_framebuffer_multisample_blit_scaled │ │ │ ├── GL_EXT_framebuffer_object │ │ │ ├── GL_EXT_framebuffer_sRGB │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ ├── GL_EXT_histogram │ │ │ ├── GL_EXT_index_array_formats │ │ │ ├── GL_EXT_index_func │ │ │ ├── GL_EXT_index_material │ │ │ ├── GL_EXT_index_texture │ │ │ ├── GL_EXT_light_texture │ │ │ ├── GL_EXT_misc_attribute │ │ │ ├── GL_EXT_multi_draw_arrays │ │ │ ├── GL_EXT_multisample │ │ │ ├── GL_EXT_packed_depth_stencil │ │ │ ├── GL_EXT_packed_float │ │ │ ├── GL_EXT_packed_pixels │ │ │ ├── GL_EXT_paletted_texture │ │ │ ├── GL_EXT_pixel_buffer_object │ │ │ ├── GL_EXT_pixel_transform │ │ │ ├── GL_EXT_pixel_transform_color_table │ │ │ ├── GL_EXT_point_parameters │ │ │ ├── GL_EXT_polygon_offset │ │ │ ├── GL_EXT_provoking_vertex │ │ │ ├── GL_EXT_rescale_normal │ │ │ ├── GL_EXT_scene_marker │ │ │ ├── GL_EXT_secondary_color │ │ │ ├── GL_EXT_separate_shader_objects │ │ │ ├── GL_EXT_separate_specular_color │ │ │ ├── GL_EXT_shader_image_load_store │ │ │ ├── GL_EXT_shadow_funcs │ │ │ ├── GL_EXT_shared_texture_palette │ │ │ ├── GL_EXT_stencil_clear_tag │ │ │ ├── GL_EXT_stencil_two_side │ │ │ ├── GL_EXT_stencil_wrap │ │ │ ├── GL_EXT_subtexture │ │ │ ├── GL_EXT_texture │ │ │ ├── GL_EXT_texture3D │ │ │ ├── GL_EXT_texture_array │ │ │ ├── GL_EXT_texture_buffer_object │ │ │ ├── GL_EXT_texture_compression_dxt1 │ │ │ ├── GL_EXT_texture_compression_latc │ │ │ ├── GL_EXT_texture_compression_rgtc │ │ │ ├── GL_EXT_texture_compression_s3tc │ │ │ ├── GL_EXT_texture_cube_map │ │ │ ├── GL_EXT_texture_edge_clamp │ │ │ ├── GL_EXT_texture_env │ │ │ ├── GL_EXT_texture_env_add │ │ │ ├── GL_EXT_texture_env_combine │ │ │ ├── GL_EXT_texture_env_dot3 │ │ │ ├── GL_EXT_texture_filter_anisotropic │ │ │ ├── GL_EXT_texture_integer │ │ │ ├── GL_EXT_texture_lod_bias │ │ │ ├── GL_EXT_texture_mirror_clamp │ │ │ ├── GL_EXT_texture_object │ │ │ ├── GL_EXT_texture_perturb_normal │ │ │ ├── GL_EXT_texture_rectangle │ │ │ ├── GL_EXT_texture_sRGB │ │ │ ├── GL_EXT_texture_sRGB_decode │ │ │ ├── GL_EXT_texture_shared_exponent │ │ │ ├── GL_EXT_texture_snorm │ │ │ ├── GL_EXT_texture_swizzle │ │ │ ├── GL_EXT_timer_query │ │ │ ├── GL_EXT_transform_feedback │ │ │ ├── GL_EXT_vertex_array │ │ │ ├── GL_EXT_vertex_array_bgra │ │ │ ├── GL_EXT_vertex_attrib_64bit │ │ │ ├── GL_EXT_vertex_shader │ │ │ ├── GL_EXT_vertex_weighting │ │ │ ├── GL_EXT_x11_sync_object │ │ │ ├── GL_GREMEDY_frame_terminator │ │ │ ├── GL_GREMEDY_string_marker │ │ │ ├── GL_HP_convolution_border_modes │ │ │ ├── GL_HP_image_transform │ │ │ ├── GL_HP_occlusion_test │ │ │ ├── GL_HP_texture_lighting │ │ │ ├── GL_IBM_cull_vertex │ │ │ ├── GL_IBM_multimode_draw_arrays │ │ │ ├── GL_IBM_rasterpos_clip │ │ │ ├── GL_IBM_static_data │ │ │ ├── GL_IBM_texture_mirrored_repeat │ │ │ ├── GL_IBM_vertex_array_lists │ │ │ ├── GL_INGR_color_clamp │ │ │ ├── GL_INGR_interlace_read │ │ │ ├── GL_INTEL_parallel_arrays │ │ │ ├── GL_INTEL_texture_scissor │ │ │ ├── GL_KHR_debug │ │ │ ├── GL_KHR_texture_compression_astc_ldr │ │ │ ├── GL_KTX_buffer_region │ │ │ ├── GL_MESAX_texture_stack │ │ │ ├── GL_MESA_pack_invert │ │ │ ├── GL_MESA_resize_buffers │ │ │ ├── GL_MESA_window_pos │ │ │ ├── GL_MESA_ycbcr_texture │ │ │ ├── GL_NVX_gpu_memory_info │ │ │ ├── GL_NV_bindless_texture │ │ │ ├── GL_NV_blend_square │ │ │ ├── GL_NV_conditional_render │ │ │ ├── GL_NV_copy_depth_to_color │ │ │ ├── GL_NV_copy_image │ │ │ ├── GL_NV_depth_buffer_float │ │ │ ├── GL_NV_depth_clamp │ │ │ ├── GL_NV_depth_range_unclamped │ │ │ ├── GL_NV_evaluators │ │ │ ├── GL_NV_explicit_multisample │ │ │ ├── GL_NV_fence │ │ │ ├── GL_NV_float_buffer │ │ │ ├── GL_NV_fog_distance │ │ │ ├── GL_NV_fragment_program │ │ │ ├── GL_NV_fragment_program2 │ │ │ ├── GL_NV_fragment_program4 │ │ │ ├── GL_NV_fragment_program_option │ │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ │ ├── GL_NV_geometry_program4 │ │ │ ├── GL_NV_geometry_shader4 │ │ │ ├── GL_NV_gpu_program4 │ │ │ ├── GL_NV_gpu_program5 │ │ │ ├── GL_NV_gpu_program_fp64 │ │ │ ├── GL_NV_gpu_shader5 │ │ │ ├── GL_NV_half_float │ │ │ ├── GL_NV_light_max_exponent │ │ │ ├── GL_NV_multisample_coverage │ │ │ ├── GL_NV_multisample_filter_hint │ │ │ ├── GL_NV_occlusion_query │ │ │ ├── GL_NV_packed_depth_stencil │ │ │ ├── GL_NV_parameter_buffer_object │ │ │ ├── GL_NV_parameter_buffer_object2 │ │ │ ├── GL_NV_path_rendering │ │ │ ├── GL_NV_pixel_data_range │ │ │ ├── GL_NV_point_sprite │ │ │ ├── GL_NV_present_video │ │ │ ├── GL_NV_primitive_restart │ │ │ ├── GL_NV_register_combiners │ │ │ ├── GL_NV_register_combiners2 │ │ │ ├── GL_NV_shader_atomic_float │ │ │ ├── GL_NV_shader_buffer_load │ │ │ ├── GL_NV_tessellation_program5 │ │ │ ├── GL_NV_texgen_emboss │ │ │ ├── GL_NV_texgen_reflection │ │ │ ├── GL_NV_texture_barrier │ │ │ ├── GL_NV_texture_compression_vtc │ │ │ ├── GL_NV_texture_env_combine4 │ │ │ ├── GL_NV_texture_expand_normal │ │ │ ├── GL_NV_texture_multisample │ │ │ ├── GL_NV_texture_rectangle │ │ │ ├── GL_NV_texture_shader │ │ │ ├── GL_NV_texture_shader2 │ │ │ ├── GL_NV_texture_shader3 │ │ │ ├── GL_NV_transform_feedback │ │ │ ├── GL_NV_transform_feedback2 │ │ │ ├── GL_NV_vdpau_interop │ │ │ ├── GL_NV_vertex_array_range │ │ │ ├── GL_NV_vertex_array_range2 │ │ │ ├── GL_NV_vertex_attrib_integer_64bit │ │ │ ├── GL_NV_vertex_buffer_unified_memory │ │ │ ├── GL_NV_vertex_program │ │ │ ├── GL_NV_vertex_program1_1 │ │ │ ├── GL_NV_vertex_program2 │ │ │ ├── GL_NV_vertex_program2_option │ │ │ ├── GL_NV_vertex_program3 │ │ │ ├── GL_NV_vertex_program4 │ │ │ ├── GL_NV_video_capture │ │ │ ├── GL_OES_byte_coordinates │ │ │ ├── GL_OES_compressed_paletted_texture │ │ │ ├── GL_OES_read_format │ │ │ ├── GL_OES_single_precision │ │ │ ├── GL_OML_interlace │ │ │ ├── GL_OML_resample │ │ │ ├── GL_OML_subsample │ │ │ ├── GL_PGI_misc_hints │ │ │ ├── GL_PGI_vertex_hints │ │ │ ├── GL_REGAL_error_string │ │ │ ├── GL_REGAL_extension_query │ │ │ ├── GL_REGAL_log │ │ │ ├── GL_REND_screen_coordinates │ │ │ ├── GL_S3_s3tc │ │ │ ├── GL_SGIS_color_range │ │ │ ├── GL_SGIS_detail_texture │ │ │ ├── GL_SGIS_fog_function │ │ │ ├── GL_SGIS_generate_mipmap │ │ │ ├── GL_SGIS_multisample │ │ │ ├── GL_SGIS_pixel_texture │ │ │ ├── GL_SGIS_point_line_texgen │ │ │ ├── GL_SGIS_sharpen_texture │ │ │ ├── GL_SGIS_texture4D │ │ │ ├── GL_SGIS_texture_border_clamp │ │ │ ├── GL_SGIS_texture_edge_clamp │ │ │ ├── GL_SGIS_texture_filter4 │ │ │ ├── GL_SGIS_texture_lod │ │ │ ├── GL_SGIS_texture_select │ │ │ ├── GL_SGIX_async │ │ │ ├── GL_SGIX_async_histogram │ │ │ ├── GL_SGIX_async_pixel │ │ │ ├── GL_SGIX_blend_alpha_minmax │ │ │ ├── GL_SGIX_clipmap │ │ │ ├── GL_SGIX_convolution_accuracy │ │ │ ├── GL_SGIX_depth_texture │ │ │ ├── GL_SGIX_flush_raster │ │ │ ├── GL_SGIX_fog_offset │ │ │ ├── GL_SGIX_fog_texture │ │ │ ├── GL_SGIX_fragment_specular_lighting │ │ │ ├── GL_SGIX_framezoom │ │ │ ├── GL_SGIX_interlace │ │ │ ├── GL_SGIX_ir_instrument1 │ │ │ ├── GL_SGIX_list_priority │ │ │ ├── GL_SGIX_pixel_texture │ │ │ ├── GL_SGIX_pixel_texture_bits │ │ │ ├── GL_SGIX_reference_plane │ │ │ ├── GL_SGIX_resample │ │ │ ├── GL_SGIX_shadow │ │ │ ├── GL_SGIX_shadow_ambient │ │ │ ├── GL_SGIX_sprite │ │ │ ├── GL_SGIX_tag_sample_buffer │ │ │ ├── GL_SGIX_texture_add_env │ │ │ ├── GL_SGIX_texture_coordinate_clamp │ │ │ ├── GL_SGIX_texture_lod_bias │ │ │ ├── GL_SGIX_texture_multi_buffer │ │ │ ├── GL_SGIX_texture_range │ │ │ ├── GL_SGIX_texture_scale_bias │ │ │ ├── GL_SGIX_vertex_preclip │ │ │ ├── GL_SGIX_vertex_preclip_hint │ │ │ ├── GL_SGIX_ycrcb │ │ │ ├── GL_SGI_color_matrix │ │ │ ├── GL_SGI_color_table │ │ │ ├── GL_SGI_texture_color_table │ │ │ ├── GL_SUNX_constant_data │ │ │ ├── GL_SUN_convolution_border_modes │ │ │ ├── GL_SUN_global_alpha │ │ │ ├── GL_SUN_mesh_array │ │ │ ├── GL_SUN_read_video_pixels │ │ │ ├── GL_SUN_slice_accum │ │ │ ├── GL_SUN_triangle_list │ │ │ ├── GL_SUN_vertex │ │ │ ├── GL_WIN_phong_shading │ │ │ ├── GL_WIN_specular_fog │ │ │ ├── GL_WIN_swap_hint │ │ │ ├── WGL_3DFX_multisample │ │ │ ├── WGL_3DL_stereo_control │ │ │ ├── WGL_AMD_gpu_association │ │ │ ├── WGL_ARB_buffer_region │ │ │ ├── WGL_ARB_create_context │ │ │ ├── WGL_ARB_create_context_profile │ │ │ ├── WGL_ARB_create_context_robustness │ │ │ ├── WGL_ARB_extensions_string │ │ │ ├── WGL_ARB_framebuffer_sRGB │ │ │ ├── WGL_ARB_make_current_read │ │ │ ├── WGL_ARB_multisample │ │ │ ├── WGL_ARB_pbuffer │ │ │ ├── WGL_ARB_pixel_format │ │ │ ├── WGL_ARB_pixel_format_float │ │ │ ├── WGL_ARB_render_texture │ │ │ ├── WGL_ATI_pixel_format_float │ │ │ ├── WGL_ATI_render_texture_rectangle │ │ │ ├── WGL_EXT_create_context_es2_profile │ │ │ ├── WGL_EXT_create_context_es_profile │ │ │ ├── WGL_EXT_depth_float │ │ │ ├── WGL_EXT_display_color_table │ │ │ ├── WGL_EXT_extensions_string │ │ │ ├── WGL_EXT_framebuffer_sRGB │ │ │ ├── WGL_EXT_make_current_read │ │ │ ├── WGL_EXT_multisample │ │ │ ├── WGL_EXT_pbuffer │ │ │ ├── WGL_EXT_pixel_format │ │ │ ├── WGL_EXT_pixel_format_packed_float │ │ │ ├── WGL_EXT_swap_control │ │ │ ├── WGL_EXT_swap_control_tear │ │ │ ├── WGL_I3D_digital_video_control │ │ │ ├── WGL_I3D_gamma │ │ │ ├── WGL_I3D_genlock │ │ │ ├── WGL_I3D_image_buffer │ │ │ ├── WGL_I3D_swap_frame_lock │ │ │ ├── WGL_I3D_swap_frame_usage │ │ │ ├── WGL_NV_DX_interop │ │ │ ├── WGL_NV_DX_interop2 │ │ │ ├── WGL_NV_copy_image │ │ │ ├── WGL_NV_float_buffer │ │ │ ├── WGL_NV_gpu_affinity │ │ │ ├── WGL_NV_multisample_coverage │ │ │ ├── WGL_NV_present_video │ │ │ ├── WGL_NV_render_depth_texture │ │ │ ├── WGL_NV_render_texture_rectangle │ │ │ ├── WGL_NV_swap_group │ │ │ ├── WGL_NV_vertex_array_range │ │ │ ├── WGL_NV_video_capture │ │ │ ├── WGL_NV_video_output │ │ │ └── WGL_OML_sync_control │ │ ├── lib │ │ │ └── OpenGL │ │ │ │ └── Spec.pm │ │ └── src │ │ │ ├── footer.html │ │ │ ├── glew.rc │ │ │ ├── glew_head.c │ │ │ ├── glew_head.h │ │ │ ├── glew_init_gl.c │ │ │ ├── glew_init_glx.c │ │ │ ├── glew_init_tail.c │ │ │ ├── glew_init_wgl.c │ │ │ ├── glew_license.h │ │ │ ├── glew_str_glx.c │ │ │ ├── glew_str_head.c │ │ │ ├── glew_str_tail.c │ │ │ ├── glew_str_wgl.c │ │ │ ├── glew_tail.h │ │ │ ├── glew_utils.c │ │ │ ├── glew_utils.h │ │ │ ├── glewinfo.rc │ │ │ ├── glewinfo_gl.c │ │ │ ├── glewinfo_glx.c │ │ │ ├── glewinfo_head.c │ │ │ ├── glewinfo_tail.c │ │ │ ├── glewinfo_wgl.c │ │ │ ├── glxew_head.h │ │ │ ├── glxew_mid.h │ │ │ ├── glxew_tail.h │ │ │ ├── header.html │ │ │ ├── khronos_license.h │ │ │ ├── mesa_license.h │ │ │ ├── visualinfo.rc │ │ │ ├── wglew_head.h │ │ │ ├── wglew_mid.h │ │ │ └── wglew_tail.h │ ├── build │ │ ├── glew.rc │ │ ├── glewinfo.rc │ │ ├── vc10 │ │ │ ├── glew.sln │ │ │ ├── glew_shared.vcxproj │ │ │ ├── glew_static.vcxproj │ │ │ ├── glewinfo.vcxproj │ │ │ └── visualinfo.vcxproj │ │ ├── vc6 │ │ │ ├── Makefile │ │ │ ├── glew.dsw │ │ │ ├── glew_shared.dsp │ │ │ ├── glew_static.dsp │ │ │ ├── glewinfo.dsp │ │ │ └── visualinfo.dsp │ │ └── visualinfo.rc │ ├── config │ │ ├── Makefile.cygming │ │ ├── Makefile.cygwin │ │ ├── Makefile.darwin │ │ ├── Makefile.darwin-ppc │ │ ├── Makefile.darwin-x86_64 │ │ ├── Makefile.fedora-mingw32 │ │ ├── Makefile.freebsd │ │ ├── Makefile.gnu │ │ ├── Makefile.irix │ │ ├── Makefile.kfreebsd │ │ ├── Makefile.linux │ │ ├── Makefile.linux-mingw32 │ │ ├── Makefile.linux-mingw64 │ │ ├── Makefile.mingw │ │ ├── Makefile.netbsd │ │ ├── Makefile.solaris │ │ ├── Makefile.solaris-gcc │ │ ├── config.guess │ │ └── version │ ├── configure.js │ ├── doc │ │ ├── advanced.html │ │ ├── basic.html │ │ ├── build.html │ │ ├── credits.html │ │ ├── glew.css │ │ ├── glew.html │ │ ├── glew.png │ │ ├── glew.txt │ │ ├── glxew.html │ │ ├── gpl.txt │ │ ├── index.html │ │ ├── install.html │ │ ├── khronos.txt │ │ ├── log.html │ │ ├── mesa.txt │ │ ├── new.png │ │ ├── ogl_sm.jpg │ │ └── wglew.html │ ├── glew.pc.in │ ├── include │ │ └── GL │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ └── src │ │ ├── glew.c │ │ ├── glewinfo.c │ │ └── visualinfo.c ├── harfbuzz │ ├── .gitignore │ ├── README │ ├── configure.js │ └── generated │ │ ├── hb-buffer-deserialize-json.hh │ │ ├── hb-buffer-deserialize-text.hh │ │ ├── hb-ot-shape-complex-indic-machine.hh │ │ ├── hb-ot-shape-complex-myanmar-machine.hh │ │ ├── hb-ot-shape-complex-use-machine.hh │ │ └── hb-version.h ├── http-parser │ ├── .gitignore │ └── configure.js ├── icu │ ├── .gitignore │ ├── configure.js │ └── repo │ │ ├── APIChangeReport.html │ │ ├── APIChangeReport.md │ │ ├── LICENSE │ │ ├── as_is │ │ ├── bomlist.py │ │ ├── bomlist.txt │ │ ├── os390 │ │ │ └── unpax-icu.sh │ │ └── os400 │ │ │ ├── bldiculd.sh │ │ │ ├── convertConfigure.sed │ │ │ ├── cxxfilt.cpp │ │ │ ├── fixup-icu.sh │ │ │ ├── iculd.c │ │ │ └── unpax-icu.sh │ │ ├── icu4c.css │ │ ├── license.html │ │ ├── packaging │ │ ├── PACKAGES │ │ ├── README │ │ ├── distrelease.ps1 │ │ └── rpm │ │ │ └── icu.spec │ │ ├── readme.html │ │ └── source │ │ ├── .clang-format │ │ ├── Doxyfile.in │ │ ├── Makefile.in │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── allinone │ │ ├── Build.Windows.Library.ProjectConfiguration.props │ │ ├── Build.Windows.Library.WarningSettings.ProjectConfiguration.props │ │ ├── Build.Windows.PlatformToolset.props │ │ ├── Build.Windows.ProjectConfiguration.props │ │ ├── Build.Windows.UWP.ProjectConfiguration.props │ │ ├── Windows.CopyUnicodeHeaderFiles.targets │ │ ├── allinone.sln │ │ └── icucheck.bat │ │ ├── common │ │ ├── Makefile.in │ │ ├── appendable.cpp │ │ ├── bmpset.cpp │ │ ├── bmpset.h │ │ ├── brkeng.cpp │ │ ├── brkeng.h │ │ ├── brkiter.cpp │ │ ├── bytesinkutil.cpp │ │ ├── bytesinkutil.h │ │ ├── bytestream.cpp │ │ ├── bytestrie.cpp │ │ ├── bytestriebuilder.cpp │ │ ├── bytestrieiterator.cpp │ │ ├── caniter.cpp │ │ ├── capi_helper.h │ │ ├── characterproperties.cpp │ │ ├── chariter.cpp │ │ ├── charstr.cpp │ │ ├── charstr.h │ │ ├── charstrmap.h │ │ ├── cmemory.cpp │ │ ├── cmemory.h │ │ ├── common.rc │ │ ├── common.vcxproj │ │ ├── common.vcxproj.filters │ │ ├── common_uwp.vcxproj │ │ ├── cpputils.h │ │ ├── cstr.cpp │ │ ├── cstr.h │ │ ├── cstring.cpp │ │ ├── cstring.h │ │ ├── cwchar.cpp │ │ ├── cwchar.h │ │ ├── dictbe.cpp │ │ ├── dictbe.h │ │ ├── dictionarydata.cpp │ │ ├── dictionarydata.h │ │ ├── dtintrv.cpp │ │ ├── edits.cpp │ │ ├── errorcode.cpp │ │ ├── filteredbrk.cpp │ │ ├── filterednormalizer2.cpp │ │ ├── hash.h │ │ ├── icudataver.cpp │ │ ├── icuplug.cpp │ │ ├── icuplugimp.h │ │ ├── loadednormalizer2impl.cpp │ │ ├── localebuilder.cpp │ │ ├── localematcher.cpp │ │ ├── localeprioritylist.cpp │ │ ├── localeprioritylist.h │ │ ├── localsvc.h │ │ ├── locavailable.cpp │ │ ├── locbased.cpp │ │ ├── locbased.h │ │ ├── locdispnames.cpp │ │ ├── locdistance.cpp │ │ ├── locdistance.h │ │ ├── locdspnm.cpp │ │ ├── locid.cpp │ │ ├── loclikely.cpp │ │ ├── loclikelysubtags.cpp │ │ ├── loclikelysubtags.h │ │ ├── locmap.cpp │ │ ├── locmap.h │ │ ├── locresdata.cpp │ │ ├── locutil.cpp │ │ ├── locutil.h │ │ ├── lsr.cpp │ │ ├── lsr.h │ │ ├── messageimpl.h │ │ ├── messagepattern.cpp │ │ ├── msvcres.h │ │ ├── mutex.h │ │ ├── norm2_nfc_data.h │ │ ├── norm2allmodes.h │ │ ├── normalizer2.cpp │ │ ├── normalizer2impl.cpp │ │ ├── normalizer2impl.h │ │ ├── normlzr.cpp │ │ ├── parsepos.cpp │ │ ├── patternprops.cpp │ │ ├── patternprops.h │ │ ├── pluralmap.cpp │ │ ├── pluralmap.h │ │ ├── propname.cpp │ │ ├── propname.h │ │ ├── propname_data.h │ │ ├── propsvec.cpp │ │ ├── propsvec.h │ │ ├── punycode.cpp │ │ ├── punycode.h │ │ ├── putil.cpp │ │ ├── putilimp.h │ │ ├── rbbi.cpp │ │ ├── rbbi_cache.cpp │ │ ├── rbbi_cache.h │ │ ├── rbbicst.pl │ │ ├── rbbidata.cpp │ │ ├── rbbidata.h │ │ ├── rbbinode.cpp │ │ ├── rbbinode.h │ │ ├── rbbirb.cpp │ │ ├── rbbirb.h │ │ ├── rbbirpt.h │ │ ├── rbbirpt.txt │ │ ├── rbbiscan.cpp │ │ ├── rbbiscan.h │ │ ├── rbbisetb.cpp │ │ ├── rbbisetb.h │ │ ├── rbbistbl.cpp │ │ ├── rbbitblb.cpp │ │ ├── rbbitblb.h │ │ ├── resbund.cpp │ │ ├── resbund_cnv.cpp │ │ ├── resource.cpp │ │ ├── resource.h │ │ ├── restrace.cpp │ │ ├── restrace.h │ │ ├── ruleiter.cpp │ │ ├── ruleiter.h │ │ ├── schriter.cpp │ │ ├── serv.cpp │ │ ├── serv.h │ │ ├── servlk.cpp │ │ ├── servlkf.cpp │ │ ├── servloc.h │ │ ├── servls.cpp │ │ ├── servnotf.cpp │ │ ├── servnotf.h │ │ ├── servrbf.cpp │ │ ├── servslkf.cpp │ │ ├── sharedobject.cpp │ │ ├── sharedobject.h │ │ ├── simpleformatter.cpp │ │ ├── sources.txt │ │ ├── sprpimpl.h │ │ ├── static_unicode_sets.cpp │ │ ├── static_unicode_sets.h │ │ ├── stringpiece.cpp │ │ ├── stringtriebuilder.cpp │ │ ├── uarrsort.cpp │ │ ├── uarrsort.h │ │ ├── uassert.h │ │ ├── ubidi.cpp │ │ ├── ubidi_props.cpp │ │ ├── ubidi_props.h │ │ ├── ubidi_props_data.h │ │ ├── ubidiimp.h │ │ ├── ubidiln.cpp │ │ ├── ubiditransform.cpp │ │ ├── ubidiwrt.cpp │ │ ├── ubrk.cpp │ │ ├── ubrkimpl.h │ │ ├── ucase.cpp │ │ ├── ucase.h │ │ ├── ucase_props_data.h │ │ ├── ucasemap.cpp │ │ ├── ucasemap_imp.h │ │ ├── ucasemap_titlecase_brkiter.cpp │ │ ├── ucat.cpp │ │ ├── uchar.cpp │ │ ├── uchar_props_data.h │ │ ├── ucharstrie.cpp │ │ ├── ucharstriebuilder.cpp │ │ ├── ucharstrieiterator.cpp │ │ ├── uchriter.cpp │ │ ├── ucln.h │ │ ├── ucln_cmn.cpp │ │ ├── ucln_cmn.h │ │ ├── ucln_imp.h │ │ ├── ucmndata.cpp │ │ ├── ucmndata.h │ │ ├── ucnv.cpp │ │ ├── ucnv2022.cpp │ │ ├── ucnv_bld.cpp │ │ ├── ucnv_bld.h │ │ ├── ucnv_cb.cpp │ │ ├── ucnv_cnv.cpp │ │ ├── ucnv_cnv.h │ │ ├── ucnv_ct.cpp │ │ ├── ucnv_err.cpp │ │ ├── ucnv_ext.cpp │ │ ├── ucnv_ext.h │ │ ├── ucnv_imp.h │ │ ├── ucnv_io.cpp │ │ ├── ucnv_io.h │ │ ├── ucnv_lmb.cpp │ │ ├── ucnv_set.cpp │ │ ├── ucnv_u16.cpp │ │ ├── ucnv_u32.cpp │ │ ├── ucnv_u7.cpp │ │ ├── ucnv_u8.cpp │ │ ├── ucnvbocu.cpp │ │ ├── ucnvdisp.cpp │ │ ├── ucnvhz.cpp │ │ ├── ucnvisci.cpp │ │ ├── ucnvlat1.cpp │ │ ├── ucnvmbcs.cpp │ │ ├── ucnvmbcs.h │ │ ├── ucnvscsu.cpp │ │ ├── ucnvsel.cpp │ │ ├── ucol_data.h │ │ ├── ucol_swp.cpp │ │ ├── ucol_swp.h │ │ ├── ucptrie.cpp │ │ ├── ucptrie_impl.h │ │ ├── ucurr.cpp │ │ ├── ucurrimp.h │ │ ├── udata.cpp │ │ ├── udatamem.cpp │ │ ├── udatamem.h │ │ ├── udataswp.cpp │ │ ├── udataswp.h │ │ ├── uelement.h │ │ ├── uenum.cpp │ │ ├── uenumimp.h │ │ ├── uhash.cpp │ │ ├── uhash.h │ │ ├── uhash_us.cpp │ │ ├── uidna.cpp │ │ ├── uinit.cpp │ │ ├── uinvchar.cpp │ │ ├── uinvchar.h │ │ ├── uiter.cpp │ │ ├── ulayout_props.h │ │ ├── ulist.cpp │ │ ├── ulist.h │ │ ├── uloc.cpp │ │ ├── uloc_keytype.cpp │ │ ├── uloc_tag.cpp │ │ ├── ulocimp.h │ │ ├── umapfile.cpp │ │ ├── umapfile.h │ │ ├── umath.cpp │ │ ├── umutablecptrie.cpp │ │ ├── umutex.cpp │ │ ├── umutex.h │ │ ├── unames.cpp │ │ ├── unicode │ │ │ ├── appendable.h │ │ │ ├── brkiter.h │ │ │ ├── bytestream.h │ │ │ ├── bytestrie.h │ │ │ ├── bytestriebuilder.h │ │ │ ├── caniter.h │ │ │ ├── casemap.h │ │ │ ├── char16ptr.h │ │ │ ├── chariter.h │ │ │ ├── dbbi.h │ │ │ ├── docmain.h │ │ │ ├── dtintrv.h │ │ │ ├── edits.h │ │ │ ├── enumset.h │ │ │ ├── errorcode.h │ │ │ ├── filteredbrk.h │ │ │ ├── icudataver.h │ │ │ ├── icuplug.h │ │ │ ├── idna.h │ │ │ ├── localebuilder.h │ │ │ ├── localematcher.h │ │ │ ├── localpointer.h │ │ │ ├── locdspnm.h │ │ │ ├── locid.h │ │ │ ├── messagepattern.h │ │ │ ├── normalizer2.h │ │ │ ├── normlzr.h │ │ │ ├── parseerr.h │ │ │ ├── parsepos.h │ │ │ ├── platform.h │ │ │ ├── ptypes.h │ │ │ ├── putil.h │ │ │ ├── rbbi.h │ │ │ ├── rep.h │ │ │ ├── resbund.h │ │ │ ├── schriter.h │ │ │ ├── simpleformatter.h │ │ │ ├── std_string.h │ │ │ ├── strenum.h │ │ │ ├── stringoptions.h │ │ │ ├── stringpiece.h │ │ │ ├── stringtriebuilder.h │ │ │ ├── symtable.h │ │ │ ├── ubidi.h │ │ │ ├── ubiditransform.h │ │ │ ├── ubrk.h │ │ │ ├── ucasemap.h │ │ │ ├── ucat.h │ │ │ ├── uchar.h │ │ │ ├── ucharstrie.h │ │ │ ├── ucharstriebuilder.h │ │ │ ├── uchriter.h │ │ │ ├── uclean.h │ │ │ ├── ucnv.h │ │ │ ├── ucnv_cb.h │ │ │ ├── ucnv_err.h │ │ │ ├── ucnvsel.h │ │ │ ├── uconfig.h │ │ │ ├── ucpmap.h │ │ │ ├── ucptrie.h │ │ │ ├── ucurr.h │ │ │ ├── udata.h │ │ │ ├── udisplaycontext.h │ │ │ ├── uenum.h │ │ │ ├── uidna.h │ │ │ ├── uiter.h │ │ │ ├── uldnames.h │ │ │ ├── uloc.h │ │ │ ├── umachine.h │ │ │ ├── umisc.h │ │ │ ├── umutablecptrie.h │ │ │ ├── unifilt.h │ │ │ ├── unifunct.h │ │ │ ├── unimatch.h │ │ │ ├── uniset.h │ │ │ ├── unistr.h │ │ │ ├── unorm.h │ │ │ ├── unorm2.h │ │ │ ├── uobject.h │ │ │ ├── urename.h │ │ │ ├── urep.h │ │ │ ├── ures.h │ │ │ ├── uscript.h │ │ │ ├── uset.h │ │ │ ├── usetiter.h │ │ │ ├── ushape.h │ │ │ ├── usprep.h │ │ │ ├── ustring.h │ │ │ ├── ustringtrie.h │ │ │ ├── utext.h │ │ │ ├── utf.h │ │ │ ├── utf16.h │ │ │ ├── utf32.h │ │ │ ├── utf8.h │ │ │ ├── utf_old.h │ │ │ ├── utrace.h │ │ │ ├── utypes.h │ │ │ ├── uvernum.h │ │ │ └── uversion.h │ │ ├── unifiedcache.cpp │ │ ├── unifiedcache.h │ │ ├── unifilt.cpp │ │ ├── unifunct.cpp │ │ ├── uniquecharstr.h │ │ ├── uniset.cpp │ │ ├── uniset_closure.cpp │ │ ├── uniset_props.cpp │ │ ├── unisetspan.cpp │ │ ├── unisetspan.h │ │ ├── unistr.cpp │ │ ├── unistr_case.cpp │ │ ├── unistr_case_locale.cpp │ │ ├── unistr_cnv.cpp │ │ ├── unistr_props.cpp │ │ ├── unistr_titlecase_brkiter.cpp │ │ ├── unistrappender.h │ │ ├── unorm.cpp │ │ ├── unormcmp.cpp │ │ ├── unormimp.h │ │ ├── uobject.cpp │ │ ├── uposixdefs.h │ │ ├── uprops.cpp │ │ ├── uprops.h │ │ ├── ures_cnv.cpp │ │ ├── uresbund.cpp │ │ ├── uresdata.cpp │ │ ├── uresdata.h │ │ ├── uresimp.h │ │ ├── ureslocs.h │ │ ├── usc_impl.cpp │ │ ├── usc_impl.h │ │ ├── uscript.cpp │ │ ├── uscript_props.cpp │ │ ├── uset.cpp │ │ ├── uset_imp.h │ │ ├── uset_props.cpp │ │ ├── usetiter.cpp │ │ ├── ushape.cpp │ │ ├── usprep.cpp │ │ ├── ustack.cpp │ │ ├── ustr_cnv.cpp │ │ ├── ustr_cnv.h │ │ ├── ustr_imp.h │ │ ├── ustr_titlecase_brkiter.cpp │ │ ├── ustr_wcs.cpp │ │ ├── ustrcase.cpp │ │ ├── ustrcase_locale.cpp │ │ ├── ustrenum.cpp │ │ ├── ustrenum.h │ │ ├── ustrfmt.cpp │ │ ├── ustrfmt.h │ │ ├── ustring.cpp │ │ ├── ustrtrns.cpp │ │ ├── utext.cpp │ │ ├── utf_impl.cpp │ │ ├── util.cpp │ │ ├── util.h │ │ ├── util_props.cpp │ │ ├── utrace.cpp │ │ ├── utracimp.h │ │ ├── utrie.cpp │ │ ├── utrie.h │ │ ├── utrie2.cpp │ │ ├── utrie2.h │ │ ├── utrie2_builder.cpp │ │ ├── utrie2_impl.h │ │ ├── utrie_swap.cpp │ │ ├── uts46.cpp │ │ ├── utypeinfo.h │ │ ├── utypes.cpp │ │ ├── uvector.cpp │ │ ├── uvector.h │ │ ├── uvectr32.cpp │ │ ├── uvectr32.h │ │ ├── uvectr64.cpp │ │ ├── uvectr64.h │ │ ├── wintz.cpp │ │ └── wintz.h │ │ ├── config.guess │ │ ├── config.sub │ │ ├── config │ │ ├── Makefile.inc.in │ │ ├── dist-data.sh │ │ ├── dist.mk │ │ ├── gmakever.mk │ │ ├── icu-config-bottom │ │ ├── icu-config-top │ │ ├── icu-config.1.in │ │ ├── icu.pc.in │ │ ├── m4 │ │ │ └── icu-conditional.m4 │ │ ├── make2sh.sed │ │ ├── mh-aix-gcc │ │ ├── mh-aix-va │ │ ├── mh-alpha-linux-cc │ │ ├── mh-alpha-linux-gcc │ │ ├── mh-alpha-osf │ │ ├── mh-beos │ │ ├── mh-bsd-gcc │ │ ├── mh-cygwin │ │ ├── mh-cygwin-msvc │ │ ├── mh-cygwin64 │ │ ├── mh-darwin │ │ ├── mh-haiku │ │ ├── mh-hpux-acc │ │ ├── mh-hpux-gcc │ │ ├── mh-irix │ │ ├── mh-linux │ │ ├── mh-linux-va │ │ ├── mh-mingw │ │ ├── mh-mingw64 │ │ ├── mh-mpras │ │ ├── mh-msys-msvc │ │ ├── mh-os390 │ │ ├── mh-os400 │ │ ├── mh-qnx │ │ ├── mh-solaris │ │ ├── mh-solaris-gcc │ │ ├── mh-unknown │ │ ├── pkgdataMakefile.in │ │ ├── test-icu-config.sh │ │ └── windows-update.sed.in │ │ ├── configure │ │ ├── configure.ac │ │ ├── data │ │ ├── BUILDRULES.py │ │ ├── Makefile.in │ │ ├── build.xml │ │ ├── cldr-icu-readme.txt │ │ ├── dtd │ │ │ └── cldr-35.1 │ │ │ │ └── common │ │ │ │ └── dtd │ │ │ │ ├── ldml.dtd │ │ │ │ └── ldmlICU.dtd │ │ ├── icu4j-readme.txt │ │ ├── icupkg.inc.in │ │ ├── in │ │ │ ├── coll │ │ │ │ ├── ucadata-implicithan.icu │ │ │ │ └── ucadata-unihan.icu │ │ │ ├── icudt68l.dat │ │ │ ├── nfc.nrm │ │ │ ├── nfkc.nrm │ │ │ ├── nfkc_cf.nrm │ │ │ ├── pnames.icu │ │ │ ├── ubidi.icu │ │ │ ├── ucase.icu │ │ │ ├── ulayout.icu │ │ │ ├── unames.icu │ │ │ ├── uprops.icu │ │ │ └── uts46.nrm │ │ ├── makedata.mak │ │ ├── makedata.vcxproj │ │ ├── makedata.vcxproj.filters │ │ ├── makedata_uwp.vcxproj │ │ ├── misc │ │ │ └── icudata.rc │ │ ├── pkgdataMakefile.in │ │ ├── sprep │ │ │ ├── rfc3491.txt │ │ │ ├── rfc3530cs.txt │ │ │ ├── rfc3530csci.txt │ │ │ ├── rfc3530mixp.txt │ │ │ ├── rfc3722.txt │ │ │ ├── rfc3920node.txt │ │ │ ├── rfc3920res.txt │ │ │ ├── rfc4011.txt │ │ │ ├── rfc4013.txt │ │ │ ├── rfc4505.txt │ │ │ ├── rfc4518.txt │ │ │ ├── rfc4518ci.txt │ │ │ └── sprepfiles.mk │ │ └── unidata │ │ │ ├── CaseFolding.txt │ │ │ ├── DerivedCoreProperties.txt │ │ │ ├── DerivedNormalizationProps.txt │ │ │ ├── FractionalUCA.txt │ │ │ ├── NormalizationCorrections.txt │ │ │ ├── NormalizationTest.txt │ │ │ ├── SpecialCasing.txt │ │ │ ├── UCARules.txt │ │ │ ├── UnicodeData.txt │ │ │ ├── changes.txt │ │ │ ├── confusables.txt │ │ │ ├── confusablesWholeScript.txt │ │ │ ├── norm2 │ │ │ ├── nfc.txt │ │ │ ├── nfkc.txt │ │ │ ├── nfkc_cf.txt │ │ │ └── uts46.txt │ │ │ ├── ppucd.txt │ │ │ └── ucdterms.txt │ │ ├── extra │ │ ├── Makefile.in │ │ ├── scrptrun │ │ │ ├── Makefile.in │ │ │ ├── readme.html │ │ │ ├── scrptrun.cpp │ │ │ ├── scrptrun.h │ │ │ ├── sources.txt │ │ │ ├── srtest.cpp │ │ │ ├── srtest.dsp │ │ │ └── srtest.dsw │ │ └── uconv │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── makedata.mak │ │ │ ├── pkgdata.inc.in │ │ │ ├── pkgdataMakefile.in │ │ │ ├── resfiles.mk │ │ │ ├── resources │ │ │ ├── fr.txt │ │ │ └── root.txt │ │ │ ├── samples │ │ │ ├── ISO-8859-2.txt │ │ │ ├── ISO-8859-3.txt │ │ │ ├── danish-ISO-8859-1.txt │ │ │ ├── eucJP.txt │ │ │ ├── hangul-eucKR.txt │ │ │ ├── hania-eucKR.txt │ │ │ ├── ibm-37-test.txt │ │ │ ├── iso8859-1.txt │ │ │ ├── koi8r.txt │ │ │ └── utf8 │ │ │ │ ├── armenian.txt │ │ │ │ ├── banviet.txt │ │ │ │ ├── chinese-ulysses.txt │ │ │ │ ├── croat.txt │ │ │ │ ├── danish.txt │ │ │ │ ├── greek.txt │ │ │ │ ├── hangul.txt │ │ │ │ ├── hania.txt │ │ │ │ ├── jap.txt │ │ │ │ ├── korean.txt │ │ │ │ ├── linji.txt │ │ │ │ ├── many.txt │ │ │ │ ├── maopoem.txt │ │ │ │ ├── russian.txt │ │ │ │ ├── simplechinese.txt │ │ │ │ ├── turkish.txt │ │ │ │ └── utf-8-demo.txt │ │ │ ├── sources.txt │ │ │ ├── uconv.1.in │ │ │ ├── uconv.cpp │ │ │ ├── uconv.vcxproj │ │ │ ├── uconv.vcxproj.filters │ │ │ ├── unicode │ │ │ └── uwmsg.h │ │ │ └── uwmsg.c │ │ ├── i18n │ │ ├── Makefile.in │ │ ├── alphaindex.cpp │ │ ├── anytrans.cpp │ │ ├── anytrans.h │ │ ├── astro.cpp │ │ ├── astro.h │ │ ├── basictz.cpp │ │ ├── bocsu.cpp │ │ ├── bocsu.h │ │ ├── brktrans.cpp │ │ ├── brktrans.h │ │ ├── buddhcal.cpp │ │ ├── buddhcal.h │ │ ├── calendar.cpp │ │ ├── casetrn.cpp │ │ ├── casetrn.h │ │ ├── cecal.cpp │ │ ├── cecal.h │ │ ├── chnsecal.cpp │ │ ├── chnsecal.h │ │ ├── choicfmt.cpp │ │ ├── coleitr.cpp │ │ ├── coll.cpp │ │ ├── collation.cpp │ │ ├── collation.h │ │ ├── collationbuilder.cpp │ │ ├── collationbuilder.h │ │ ├── collationcompare.cpp │ │ ├── collationcompare.h │ │ ├── collationdata.cpp │ │ ├── collationdata.h │ │ ├── collationdatabuilder.cpp │ │ ├── collationdatabuilder.h │ │ ├── collationdatareader.cpp │ │ ├── collationdatareader.h │ │ ├── collationdatawriter.cpp │ │ ├── collationdatawriter.h │ │ ├── collationfastlatin.cpp │ │ ├── collationfastlatin.h │ │ ├── collationfastlatinbuilder.cpp │ │ ├── collationfastlatinbuilder.h │ │ ├── collationfcd.cpp │ │ ├── collationfcd.h │ │ ├── collationiterator.cpp │ │ ├── collationiterator.h │ │ ├── collationkeys.cpp │ │ ├── collationkeys.h │ │ ├── collationroot.cpp │ │ ├── collationroot.h │ │ ├── collationrootelements.cpp │ │ ├── collationrootelements.h │ │ ├── collationruleparser.cpp │ │ ├── collationruleparser.h │ │ ├── collationsets.cpp │ │ ├── collationsets.h │ │ ├── collationsettings.cpp │ │ ├── collationsettings.h │ │ ├── collationtailoring.cpp │ │ ├── collationtailoring.h │ │ ├── collationweights.cpp │ │ ├── collationweights.h │ │ ├── collunsafe.h │ │ ├── compactdecimalformat.cpp │ │ ├── coptccal.cpp │ │ ├── coptccal.h │ │ ├── cpdtrans.cpp │ │ ├── cpdtrans.h │ │ ├── csdetect.cpp │ │ ├── csdetect.h │ │ ├── csmatch.cpp │ │ ├── csmatch.h │ │ ├── csr2022.cpp │ │ ├── csr2022.h │ │ ├── csrecog.cpp │ │ ├── csrecog.h │ │ ├── csrmbcs.cpp │ │ ├── csrmbcs.h │ │ ├── csrsbcs.cpp │ │ ├── csrsbcs.h │ │ ├── csrucode.cpp │ │ ├── csrucode.h │ │ ├── csrutf8.cpp │ │ ├── csrutf8.h │ │ ├── curramt.cpp │ │ ├── currfmt.cpp │ │ ├── currfmt.h │ │ ├── currpinf.cpp │ │ ├── currunit.cpp │ │ ├── dangical.cpp │ │ ├── dangical.h │ │ ├── datefmt.cpp │ │ ├── dayperiodrules.cpp │ │ ├── dayperiodrules.h │ │ ├── dcfmtsym.cpp │ │ ├── decContext.cpp │ │ ├── decContext.h │ │ ├── decNumber.cpp │ │ ├── decNumber.h │ │ ├── decNumberLocal.h │ │ ├── decimfmt.cpp │ │ ├── double-conversion-bignum-dtoa.cpp │ │ ├── double-conversion-bignum-dtoa.h │ │ ├── double-conversion-bignum.cpp │ │ ├── double-conversion-bignum.h │ │ ├── double-conversion-cached-powers.cpp │ │ ├── double-conversion-cached-powers.h │ │ ├── double-conversion-diy-fp.h │ │ ├── double-conversion-double-to-string.cpp │ │ ├── double-conversion-double-to-string.h │ │ ├── double-conversion-fast-dtoa.cpp │ │ ├── double-conversion-fast-dtoa.h │ │ ├── double-conversion-ieee.h │ │ ├── double-conversion-string-to-double.cpp │ │ ├── double-conversion-string-to-double.h │ │ ├── double-conversion-strtod.cpp │ │ ├── double-conversion-strtod.h │ │ ├── double-conversion-utils.h │ │ ├── double-conversion.h │ │ ├── dt_impl.h │ │ ├── dtfmtsym.cpp │ │ ├── dtitv_impl.h │ │ ├── dtitvfmt.cpp │ │ ├── dtitvinf.cpp │ │ ├── dtptngen.cpp │ │ ├── dtptngen_impl.h │ │ ├── dtrule.cpp │ │ ├── erarules.cpp │ │ ├── erarules.h │ │ ├── esctrn.cpp │ │ ├── esctrn.h │ │ ├── ethpccal.cpp │ │ ├── ethpccal.h │ │ ├── fmtable.cpp │ │ ├── fmtable_cnv.cpp │ │ ├── fmtableimp.h │ │ ├── format.cpp │ │ ├── formatted_string_builder.cpp │ │ ├── formatted_string_builder.h │ │ ├── formattedval_impl.h │ │ ├── formattedval_iterimpl.cpp │ │ ├── formattedval_sbimpl.cpp │ │ ├── formattedvalue.cpp │ │ ├── fphdlimp.cpp │ │ ├── fphdlimp.h │ │ ├── fpositer.cpp │ │ ├── funcrepl.cpp │ │ ├── funcrepl.h │ │ ├── gender.cpp │ │ ├── gregocal.cpp │ │ ├── gregoimp.cpp │ │ ├── gregoimp.h │ │ ├── hebrwcal.cpp │ │ ├── hebrwcal.h │ │ ├── i18n.rc │ │ ├── i18n.vcxproj │ │ ├── i18n.vcxproj.filters │ │ ├── i18n_uwp.vcxproj │ │ ├── indiancal.cpp │ │ ├── indiancal.h │ │ ├── inputext.cpp │ │ ├── inputext.h │ │ ├── islamcal.cpp │ │ ├── islamcal.h │ │ ├── japancal.cpp │ │ ├── japancal.h │ │ ├── listformatter.cpp │ │ ├── measfmt.cpp │ │ ├── measunit.cpp │ │ ├── measunit_extra.cpp │ │ ├── measunit_impl.h │ │ ├── measure.cpp │ │ ├── msgfmt.cpp │ │ ├── msgfmt_impl.h │ │ ├── name2uni.cpp │ │ ├── name2uni.h │ │ ├── nfrlist.h │ │ ├── nfrs.cpp │ │ ├── nfrs.h │ │ ├── nfrule.cpp │ │ ├── nfrule.h │ │ ├── nfsubs.cpp │ │ ├── nfsubs.h │ │ ├── nortrans.cpp │ │ ├── nortrans.h │ │ ├── nultrans.cpp │ │ ├── nultrans.h │ │ ├── number_affixutils.cpp │ │ ├── number_affixutils.h │ │ ├── number_asformat.cpp │ │ ├── number_asformat.h │ │ ├── number_capi.cpp │ │ ├── number_compact.cpp │ │ ├── number_compact.h │ │ ├── number_currencysymbols.cpp │ │ ├── number_currencysymbols.h │ │ ├── number_decimalquantity.cpp │ │ ├── number_decimalquantity.h │ │ ├── number_decimfmtprops.cpp │ │ ├── number_decimfmtprops.h │ │ ├── number_decnum.h │ │ ├── number_fluent.cpp │ │ ├── number_formatimpl.cpp │ │ ├── number_formatimpl.h │ │ ├── number_grouping.cpp │ │ ├── number_integerwidth.cpp │ │ ├── number_longnames.cpp │ │ ├── number_longnames.h │ │ ├── number_mapper.cpp │ │ ├── number_mapper.h │ │ ├── number_microprops.h │ │ ├── number_modifiers.cpp │ │ ├── number_modifiers.h │ │ ├── number_multiplier.cpp │ │ ├── number_multiplier.h │ │ ├── number_notation.cpp │ │ ├── number_output.cpp │ │ ├── number_padding.cpp │ │ ├── number_patternmodifier.cpp │ │ ├── number_patternmodifier.h │ │ ├── number_patternstring.cpp │ │ ├── number_patternstring.h │ │ ├── number_rounding.cpp │ │ ├── number_roundingutils.h │ │ ├── number_scientific.cpp │ │ ├── number_scientific.h │ │ ├── number_skeletons.cpp │ │ ├── number_skeletons.h │ │ ├── number_symbolswrapper.cpp │ │ ├── number_types.h │ │ ├── number_usageprefs.cpp │ │ ├── number_usageprefs.h │ │ ├── number_utils.cpp │ │ ├── number_utils.h │ │ ├── number_utypes.h │ │ ├── numfmt.cpp │ │ ├── numparse_affixes.cpp │ │ ├── numparse_affixes.h │ │ ├── numparse_compositions.cpp │ │ ├── numparse_compositions.h │ │ ├── numparse_currency.cpp │ │ ├── numparse_currency.h │ │ ├── numparse_decimal.cpp │ │ ├── numparse_decimal.h │ │ ├── numparse_impl.cpp │ │ ├── numparse_impl.h │ │ ├── numparse_parsednumber.cpp │ │ ├── numparse_scientific.cpp │ │ ├── numparse_scientific.h │ │ ├── numparse_symbols.cpp │ │ ├── numparse_symbols.h │ │ ├── numparse_types.h │ │ ├── numparse_utils.h │ │ ├── numparse_validators.cpp │ │ ├── numparse_validators.h │ │ ├── numrange_capi.cpp │ │ ├── numrange_fluent.cpp │ │ ├── numrange_impl.cpp │ │ ├── numrange_impl.h │ │ ├── numsys.cpp │ │ ├── numsys_impl.h │ │ ├── olsontz.cpp │ │ ├── olsontz.h │ │ ├── persncal.cpp │ │ ├── persncal.h │ │ ├── pluralranges.cpp │ │ ├── pluralranges.h │ │ ├── plurfmt.cpp │ │ ├── plurrule.cpp │ │ ├── plurrule_impl.h │ │ ├── quant.cpp │ │ ├── quant.h │ │ ├── quantityformatter.cpp │ │ ├── quantityformatter.h │ │ ├── rbnf.cpp │ │ ├── rbt.cpp │ │ ├── rbt.h │ │ ├── rbt_data.cpp │ │ ├── rbt_data.h │ │ ├── rbt_pars.cpp │ │ ├── rbt_pars.h │ │ ├── rbt_rule.cpp │ │ ├── rbt_rule.h │ │ ├── rbt_set.cpp │ │ ├── rbt_set.h │ │ ├── rbtz.cpp │ │ ├── regexcmp.cpp │ │ ├── regexcmp.h │ │ ├── regexcst.h │ │ ├── regexcst.pl │ │ ├── regexcst.txt │ │ ├── regeximp.cpp │ │ ├── regeximp.h │ │ ├── regexst.cpp │ │ ├── regexst.h │ │ ├── regextxt.cpp │ │ ├── regextxt.h │ │ ├── region.cpp │ │ ├── region_impl.h │ │ ├── reldatefmt.cpp │ │ ├── reldtfmt.cpp │ │ ├── reldtfmt.h │ │ ├── rematch.cpp │ │ ├── remtrans.cpp │ │ ├── remtrans.h │ │ ├── repattrn.cpp │ │ ├── rulebasedcollator.cpp │ │ ├── scientificnumberformatter.cpp │ │ ├── scriptset.cpp │ │ ├── scriptset.h │ │ ├── search.cpp │ │ ├── selfmt.cpp │ │ ├── selfmtimpl.h │ │ ├── sharedbreakiterator.cpp │ │ ├── sharedbreakiterator.h │ │ ├── sharedcalendar.h │ │ ├── shareddateformatsymbols.h │ │ ├── sharednumberformat.h │ │ ├── sharedpluralrules.h │ │ ├── simpletz.cpp │ │ ├── smpdtfmt.cpp │ │ ├── smpdtfst.cpp │ │ ├── smpdtfst.h │ │ ├── sortkey.cpp │ │ ├── sources.txt │ │ ├── standardplural.cpp │ │ ├── standardplural.h │ │ ├── string_segment.cpp │ │ ├── string_segment.h │ │ ├── strmatch.cpp │ │ ├── strmatch.h │ │ ├── strrepl.cpp │ │ ├── strrepl.h │ │ ├── stsearch.cpp │ │ ├── taiwncal.cpp │ │ ├── taiwncal.h │ │ ├── timezone.cpp │ │ ├── titletrn.cpp │ │ ├── titletrn.h │ │ ├── tmunit.cpp │ │ ├── tmutamt.cpp │ │ ├── tmutfmt.cpp │ │ ├── tolowtrn.cpp │ │ ├── tolowtrn.h │ │ ├── toupptrn.cpp │ │ ├── toupptrn.h │ │ ├── translit.cpp │ │ ├── transreg.cpp │ │ ├── transreg.h │ │ ├── tridpars.cpp │ │ ├── tridpars.h │ │ ├── tzfmt.cpp │ │ ├── tzgnames.cpp │ │ ├── tzgnames.h │ │ ├── tznames.cpp │ │ ├── tznames_impl.cpp │ │ ├── tznames_impl.h │ │ ├── tzrule.cpp │ │ ├── tztrans.cpp │ │ ├── ucal.cpp │ │ ├── ucln_in.cpp │ │ ├── ucln_in.h │ │ ├── ucol.cpp │ │ ├── ucol_imp.h │ │ ├── ucol_res.cpp │ │ ├── ucol_sit.cpp │ │ ├── ucoleitr.cpp │ │ ├── ucsdet.cpp │ │ ├── udat.cpp │ │ ├── udateintervalformat.cpp │ │ ├── udatpg.cpp │ │ ├── ufieldpositer.cpp │ │ ├── uitercollationiterator.cpp │ │ ├── uitercollationiterator.h │ │ ├── ulistformatter.cpp │ │ ├── ulocdata.cpp │ │ ├── umsg.cpp │ │ ├── umsg_imp.h │ │ ├── unesctrn.cpp │ │ ├── unesctrn.h │ │ ├── uni2name.cpp │ │ ├── uni2name.h │ │ ├── unicode │ │ │ ├── alphaindex.h │ │ │ ├── basictz.h │ │ │ ├── calendar.h │ │ │ ├── choicfmt.h │ │ │ ├── coleitr.h │ │ │ ├── coll.h │ │ │ ├── compactdecimalformat.h │ │ │ ├── curramt.h │ │ │ ├── currpinf.h │ │ │ ├── currunit.h │ │ │ ├── datefmt.h │ │ │ ├── dcfmtsym.h │ │ │ ├── decimfmt.h │ │ │ ├── dtfmtsym.h │ │ │ ├── dtitvfmt.h │ │ │ ├── dtitvinf.h │ │ │ ├── dtptngen.h │ │ │ ├── dtrule.h │ │ │ ├── fieldpos.h │ │ │ ├── fmtable.h │ │ │ ├── format.h │ │ │ ├── formattedvalue.h │ │ │ ├── fpositer.h │ │ │ ├── gender.h │ │ │ ├── gregocal.h │ │ │ ├── listformatter.h │ │ │ ├── measfmt.h │ │ │ ├── measunit.h │ │ │ ├── measure.h │ │ │ ├── msgfmt.h │ │ │ ├── nounit.h │ │ │ ├── numberformatter.h │ │ │ ├── numberrangeformatter.h │ │ │ ├── numfmt.h │ │ │ ├── numsys.h │ │ │ ├── plurfmt.h │ │ │ ├── plurrule.h │ │ │ ├── rbnf.h │ │ │ ├── rbtz.h │ │ │ ├── regex.h │ │ │ ├── region.h │ │ │ ├── reldatefmt.h │ │ │ ├── scientificnumberformatter.h │ │ │ ├── search.h │ │ │ ├── selfmt.h │ │ │ ├── simpletz.h │ │ │ ├── smpdtfmt.h │ │ │ ├── sortkey.h │ │ │ ├── stsearch.h │ │ │ ├── tblcoll.h │ │ │ ├── timezone.h │ │ │ ├── tmunit.h │ │ │ ├── tmutamt.h │ │ │ ├── tmutfmt.h │ │ │ ├── translit.h │ │ │ ├── tzfmt.h │ │ │ ├── tznames.h │ │ │ ├── tzrule.h │ │ │ ├── tztrans.h │ │ │ ├── ucal.h │ │ │ ├── ucol.h │ │ │ ├── ucoleitr.h │ │ │ ├── ucsdet.h │ │ │ ├── udat.h │ │ │ ├── udateintervalformat.h │ │ │ ├── udatpg.h │ │ │ ├── ufieldpositer.h │ │ │ ├── uformattable.h │ │ │ ├── uformattedvalue.h │ │ │ ├── ugender.h │ │ │ ├── ulistformatter.h │ │ │ ├── ulocdata.h │ │ │ ├── umsg.h │ │ │ ├── unirepl.h │ │ │ ├── unum.h │ │ │ ├── unumberformatter.h │ │ │ ├── unumberrangeformatter.h │ │ │ ├── unumsys.h │ │ │ ├── upluralrules.h │ │ │ ├── uregex.h │ │ │ ├── uregion.h │ │ │ ├── ureldatefmt.h │ │ │ ├── usearch.h │ │ │ ├── uspoof.h │ │ │ ├── utmscale.h │ │ │ ├── utrans.h │ │ │ └── vtzone.h │ │ ├── units_complexconverter.cpp │ │ ├── units_complexconverter.h │ │ ├── units_converter.cpp │ │ ├── units_converter.h │ │ ├── units_data.cpp │ │ ├── units_data.h │ │ ├── units_router.cpp │ │ ├── units_router.h │ │ ├── unum.cpp │ │ ├── unumsys.cpp │ │ ├── upluralrules.cpp │ │ ├── uregex.cpp │ │ ├── uregexc.cpp │ │ ├── uregion.cpp │ │ ├── usearch.cpp │ │ ├── uspoof.cpp │ │ ├── uspoof_build.cpp │ │ ├── uspoof_conf.cpp │ │ ├── uspoof_conf.h │ │ ├── uspoof_impl.cpp │ │ ├── uspoof_impl.h │ │ ├── usrchimp.h │ │ ├── utf16collationiterator.cpp │ │ ├── utf16collationiterator.h │ │ ├── utf8collationiterator.cpp │ │ ├── utf8collationiterator.h │ │ ├── utmscale.cpp │ │ ├── utrans.cpp │ │ ├── vtzone.cpp │ │ ├── vzone.cpp │ │ ├── vzone.h │ │ ├── windtfmt.cpp │ │ ├── windtfmt.h │ │ ├── winnmfmt.cpp │ │ ├── winnmfmt.h │ │ ├── wintzimpl.cpp │ │ ├── wintzimpl.h │ │ ├── zonemeta.cpp │ │ ├── zonemeta.h │ │ ├── zrule.cpp │ │ ├── zrule.h │ │ ├── ztrans.cpp │ │ └── ztrans.h │ │ ├── icudefs.mk.in │ │ ├── install-sh │ │ ├── io │ │ ├── Makefile.in │ │ ├── io.rc │ │ ├── io.vcxproj │ │ ├── io.vcxproj.filters │ │ ├── locbund.cpp │ │ ├── locbund.h │ │ ├── sources.txt │ │ ├── sprintf.cpp │ │ ├── sscanf.cpp │ │ ├── ucln_io.cpp │ │ ├── ucln_io.h │ │ ├── ufile.cpp │ │ ├── ufile.h │ │ ├── ufmt_cmn.cpp │ │ ├── ufmt_cmn.h │ │ ├── unicode │ │ │ ├── ustdio.h │ │ │ └── ustream.h │ │ ├── uprintf.cpp │ │ ├── uprintf.h │ │ ├── uprntf_p.cpp │ │ ├── uscanf.cpp │ │ ├── uscanf.h │ │ ├── uscanf_p.cpp │ │ ├── ustdio.cpp │ │ └── ustream.cpp │ │ ├── layoutex │ │ ├── LXUtilities.cpp │ │ ├── LXUtilities.h │ │ ├── Makefile.in │ │ ├── ParagraphLayout.cpp │ │ ├── RunArrays.cpp │ │ ├── layout │ │ │ ├── ParagraphLayout.h │ │ │ ├── RunArrays.h │ │ │ ├── playout.h │ │ │ └── plruns.h │ │ ├── layoutex.rc │ │ ├── layoutex.vcxproj │ │ ├── layoutex.vcxproj.filters │ │ ├── playout.cpp │ │ ├── plruns.cpp │ │ └── sources.txt │ │ ├── mkinstalldirs │ │ ├── python │ │ └── icutools │ │ │ ├── __init__.py │ │ │ └── databuilder │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── comment_stripper.py │ │ │ ├── filtration.py │ │ │ ├── filtration_schema.json │ │ │ ├── renderers │ │ │ ├── __init__.py │ │ │ ├── common_exec.py │ │ │ └── makefile.py │ │ │ ├── request_types.py │ │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── filtration_test.py │ │ │ └── sample_data │ │ │ │ ├── brkitr │ │ │ │ └── LOCALE_DEPS.json │ │ │ │ ├── locales │ │ │ │ └── LOCALE_DEPS.json │ │ │ │ └── rbnf │ │ │ │ └── LOCALE_DEPS.json │ │ │ └── utils.py │ │ ├── runConfigureICU │ │ ├── samples │ │ ├── Makefile.in │ │ ├── all │ │ │ ├── all.sln │ │ │ └── samplecheck.bat │ │ ├── break │ │ │ ├── Makefile │ │ │ ├── break.cpp │ │ │ ├── break.sln │ │ │ ├── break.vcxproj │ │ │ ├── break.vcxproj.filters │ │ │ ├── readme.txt │ │ │ └── ubreak.c │ │ ├── cal │ │ │ ├── Makefile.in │ │ │ ├── cal.c │ │ │ ├── cal.sln │ │ │ ├── cal.vcxproj │ │ │ ├── cal.vcxproj.filters │ │ │ ├── readme.txt │ │ │ ├── uprint.c │ │ │ └── uprint.h │ │ ├── case │ │ │ ├── Makefile │ │ │ ├── case.cpp │ │ │ ├── case.sln │ │ │ ├── case.vcxproj │ │ │ ├── case.vcxproj.filters │ │ │ ├── readme.txt │ │ │ └── ucase.c │ │ ├── citer │ │ │ ├── Makefile │ │ │ ├── citer.cpp │ │ │ ├── citer.vcxproj │ │ │ ├── citer.vcxproj.filters │ │ │ └── readme.txt │ │ ├── coll │ │ │ ├── Makefile │ │ │ ├── coll.cpp │ │ │ ├── coll.sln │ │ │ ├── coll.vcxproj │ │ │ ├── coll.vcxproj.filters │ │ │ └── readme.txt │ │ ├── csdet │ │ │ ├── Makefile │ │ │ ├── csdet.c │ │ │ ├── csdet.vcxproj │ │ │ ├── csdet.vcxproj.filters │ │ │ └── readme.txt │ │ ├── date │ │ │ ├── Makefile.in │ │ │ ├── date.c │ │ │ ├── date.sln │ │ │ ├── date.vcxproj │ │ │ ├── date.vcxproj.filters │ │ │ ├── readme.txt │ │ │ ├── uprint.c │ │ │ └── uprint.h │ │ ├── datecal │ │ │ ├── Makefile │ │ │ ├── cal.cpp │ │ │ └── ccal.c │ │ ├── datefmt │ │ │ ├── Makefile │ │ │ ├── README.TXT │ │ │ ├── answers │ │ │ │ ├── main_0.cpp │ │ │ │ ├── main_1.cpp │ │ │ │ ├── main_2.cpp │ │ │ │ └── main_3.cpp │ │ │ ├── datefmt.sln │ │ │ ├── datefmt.vcxproj │ │ │ ├── datefmt.vcxproj.filters │ │ │ ├── main.cpp │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── defs.mk │ │ ├── dtitvfmtsample │ │ │ ├── dtitvfmtsample.cpp │ │ │ ├── dtitvfmtsample.vcxproj │ │ │ └── dtitvfmtsample.vcxproj.filters │ │ ├── dtptngsample │ │ │ ├── dtptngsample.cpp │ │ │ ├── dtptngsample.vcxproj │ │ │ └── dtptngsample.vcxproj.filters │ │ ├── layout │ │ │ ├── FontMap.GDI │ │ │ ├── FontMap.Gnome │ │ │ ├── FontMap.cpp │ │ │ ├── FontMap.h │ │ │ ├── FontTableCache.cpp │ │ │ ├── FontTableCache.h │ │ │ ├── GDIFontInstance.cpp │ │ │ ├── GDIFontInstance.h │ │ │ ├── GDIFontMap.cpp │ │ │ ├── GDIFontMap.h │ │ │ ├── GDIGUISupport.cpp │ │ │ ├── GDIGUISupport.h │ │ │ ├── GUISupport.h │ │ │ ├── GnomeFontInstance.cpp │ │ │ ├── GnomeFontInstance.h │ │ │ ├── GnomeFontMap.cpp │ │ │ ├── GnomeFontMap.h │ │ │ ├── GnomeGUISupport.cpp │ │ │ ├── GnomeGUISupport.h │ │ │ ├── LayoutSample.rc │ │ │ ├── Makefile.in │ │ │ ├── RenderingSurface.h │ │ │ ├── Sample.txt │ │ │ ├── ScriptCompositeFontInstance.cpp │ │ │ ├── ScriptCompositeFontInstance.h │ │ │ ├── Surface.cpp │ │ │ ├── Surface.h │ │ │ ├── UnicodeReader.cpp │ │ │ ├── UnicodeReader.h │ │ │ ├── arraymem.h │ │ │ ├── cgnomelayout.c │ │ │ ├── clayout.c │ │ │ ├── cmaps.cpp │ │ │ ├── cmaps.h │ │ │ ├── gdiglue.cpp │ │ │ ├── gdiglue.h │ │ │ ├── gnomeglue.cpp │ │ │ ├── gnomeglue.h │ │ │ ├── gnomelayout.cpp │ │ │ ├── gsupport.h │ │ │ ├── layout.cpp │ │ │ ├── layout.sln │ │ │ ├── layout.vcxproj │ │ │ ├── layout.vcxproj.filters │ │ │ ├── paragraph.cpp │ │ │ ├── paragraph.h │ │ │ ├── pflow.c │ │ │ ├── pflow.h │ │ │ ├── readme.html │ │ │ ├── resource.h │ │ │ ├── rsurface.cpp │ │ │ ├── rsurface.h │ │ │ ├── sfnt.h │ │ │ ├── ucreader.cpp │ │ │ └── ucreader.h │ │ ├── legacy │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── legacy.cpp │ │ │ ├── legacy.sln │ │ │ ├── legacy.vcxproj │ │ │ ├── legacy.vcxproj.filters │ │ │ ├── newcol.cpp │ │ │ └── oldcol.cpp │ │ ├── msgfmt │ │ │ ├── Makefile │ │ │ ├── README.TXT │ │ │ ├── answers │ │ │ │ ├── main_0.cpp │ │ │ │ ├── main_1.cpp │ │ │ │ ├── main_2.cpp │ │ │ │ └── main_3.cpp │ │ │ ├── main.cpp │ │ │ ├── msgfmt.sln │ │ │ ├── msgfmt.vcxproj │ │ │ ├── msgfmt.vcxproj.filters │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── numfmt │ │ │ ├── Makefile │ │ │ ├── capi.c │ │ │ ├── main.cpp │ │ │ ├── numfmt.sln │ │ │ ├── numfmt.vcxproj │ │ │ ├── numfmt.vcxproj.filters │ │ │ ├── readme.txt │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── plurfmtsample │ │ │ ├── plurfmtsample.cpp │ │ │ ├── plurfmtsample.vcxproj │ │ │ └── plurfmtsample.vcxproj.filters │ │ ├── props │ │ │ ├── Makefile │ │ │ ├── props.cpp │ │ │ ├── props.sln │ │ │ ├── props.vcxproj │ │ │ ├── props.vcxproj.filters │ │ │ └── readme.txt │ │ ├── readme.txt │ │ ├── rules.mk │ │ ├── strsrch │ │ │ ├── Makefile │ │ │ ├── readme.txt │ │ │ ├── strsrch.cpp │ │ │ ├── strsrch.sln │ │ │ ├── strsrch.vcxproj │ │ │ └── strsrch.vcxproj.filters │ │ ├── translit │ │ │ ├── Makefile │ │ │ ├── README.TXT │ │ │ ├── answers │ │ │ │ ├── main_1.cpp │ │ │ │ ├── main_2.cpp │ │ │ │ ├── main_3.cpp │ │ │ │ ├── main_4.cpp │ │ │ │ ├── unaccent.cpp │ │ │ │ └── unaccent.h │ │ │ ├── main.cpp │ │ │ ├── translit.sln │ │ │ ├── translit.vcxproj │ │ │ ├── translit.vcxproj.filters │ │ │ ├── unaccent.cpp │ │ │ ├── unaccent.h │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── uciter8 │ │ │ ├── Makefile │ │ │ ├── readme.txt │ │ │ ├── uciter8.c │ │ │ ├── uciter8.sln │ │ │ ├── uciter8.vcxproj │ │ │ ├── uciter8.vcxproj.filters │ │ │ ├── uit_len8.c │ │ │ └── uit_len8.h │ │ ├── ucnv │ │ │ ├── Makefile │ │ │ ├── convsamp.cpp │ │ │ ├── data01.txt │ │ │ ├── data02.bin │ │ │ ├── data06.txt │ │ │ ├── flagcb.c │ │ │ ├── flagcb.h │ │ │ ├── readme.txt │ │ │ ├── ucnv.sln │ │ │ ├── ucnv.vcxproj │ │ │ └── ucnv.vcxproj.filters │ │ ├── udata │ │ │ ├── Makefile │ │ │ ├── reader.c │ │ │ ├── reader.vcxproj │ │ │ ├── reader.vcxproj.filters │ │ │ ├── readme.txt │ │ │ ├── udata.sln │ │ │ ├── writer.c │ │ │ ├── writer.vcxproj │ │ │ └── writer.vcxproj.filters │ │ ├── ufortune │ │ │ ├── Makefile │ │ │ ├── fortunedefs.mk │ │ │ ├── readme.txt │ │ │ ├── resources │ │ │ │ ├── Makefile │ │ │ │ ├── es.txt │ │ │ │ ├── fortune_resources.mak │ │ │ │ ├── res-file-list.txt │ │ │ │ └── root.txt │ │ │ ├── ufortune.c │ │ │ ├── ufortune.sln │ │ │ ├── ufortune.vcxproj │ │ │ └── ufortune.vcxproj.filters │ │ ├── ugrep │ │ │ ├── Makefile │ │ │ ├── readme.txt │ │ │ ├── ugrep.cpp │ │ │ ├── ugrep.sln │ │ │ ├── ugrep.vcxproj │ │ │ └── ugrep.vcxproj.filters │ │ ├── uresb │ │ │ ├── Makefile │ │ │ ├── en.txt │ │ │ ├── readme.txt │ │ │ ├── resources.mak │ │ │ ├── resources.vcxproj │ │ │ ├── resources.vcxproj.filters │ │ │ ├── root.txt │ │ │ ├── sr.txt │ │ │ ├── uresb.c │ │ │ ├── uresb.sln │ │ │ ├── uresb.vcxproj │ │ │ └── uresb.vcxproj.filters │ │ └── ustring │ │ │ ├── Makefile │ │ │ ├── readme.txt │ │ │ ├── ustring.cpp │ │ │ ├── ustring.sln │ │ │ ├── ustring.vcxproj │ │ │ └── ustring.vcxproj.filters │ │ ├── stubdata │ │ ├── Makefile.in │ │ ├── sources.txt │ │ ├── stubdata.cpp │ │ ├── stubdata.vcxproj │ │ └── stubdata.vcxproj.filters │ │ ├── test │ │ ├── Makefile.in │ │ ├── cintltst │ │ │ ├── Makefile.in │ │ │ ├── bocu1tst.c │ │ │ ├── callcoll.c │ │ │ ├── callcoll.h │ │ │ ├── calldata.h │ │ │ ├── calltest.c │ │ │ ├── capitst.c │ │ │ ├── capitst.h │ │ │ ├── cbiapts.c │ │ │ ├── cbiapts.h │ │ │ ├── cbididat.c │ │ │ ├── cbiditransformtst.c │ │ │ ├── cbiditst.c │ │ │ ├── cbiditst.h │ │ │ ├── cbkittst.c │ │ │ ├── ccaltst.c │ │ │ ├── ccaltst.h │ │ │ ├── ccapitst.c │ │ │ ├── ccapitst.h │ │ │ ├── ccolltst.c │ │ │ ├── ccolltst.h │ │ │ ├── cconvtst.c │ │ │ ├── cctest.c │ │ │ ├── ccurrtst.c │ │ │ ├── ccurrtst.h │ │ │ ├── cdateintervalformattest.c │ │ │ ├── cdattst.c │ │ │ ├── cdattst.h │ │ │ ├── cdetst.c │ │ │ ├── cdetst.h │ │ │ ├── cdtdptst.c │ │ │ ├── cdtdptst.h │ │ │ ├── cdtrgtst.c │ │ │ ├── cdtrgtst.h │ │ │ ├── cestst.c │ │ │ ├── cestst.h │ │ │ ├── cfintst.c │ │ │ ├── cfintst.h │ │ │ ├── cformtst.c │ │ │ ├── cformtst.h │ │ │ ├── cfrtst.c │ │ │ ├── cfrtst.h │ │ │ ├── cg7coll.c │ │ │ ├── cg7coll.h │ │ │ ├── cgendtst.c │ │ │ ├── chashtst.c │ │ │ ├── cintltst.c │ │ │ ├── cintltst.h │ │ │ ├── cintltst.vcxproj │ │ │ ├── cintltst.vcxproj.filters │ │ │ ├── citertst.c │ │ │ ├── citertst.h │ │ │ ├── cjaptst.c │ │ │ ├── cjaptst.h │ │ │ ├── cldrtest.c │ │ │ ├── cloctst.c │ │ │ ├── cloctst.h │ │ │ ├── cmsccoll.c │ │ │ ├── cmsgtst.c │ │ │ ├── cmsgtst.h │ │ │ ├── cnmdptst.c │ │ │ ├── cnmdptst.h │ │ │ ├── cnormtst.c │ │ │ ├── cnormtst.h │ │ │ ├── cnumtst.c │ │ │ ├── cnumtst.h │ │ │ ├── cpluralrulestest.c │ │ │ ├── cposxtst.c │ │ │ ├── crelativedateformattest.c │ │ │ ├── crestst.c │ │ │ ├── crestst.h │ │ │ ├── creststn.c │ │ │ ├── creststn.h │ │ │ ├── cstrcase.c │ │ │ ├── cstrtest.c │ │ │ ├── cturtst.c │ │ │ ├── cturtst.h │ │ │ ├── cucdapi.c │ │ │ ├── cucdapi.h │ │ │ ├── cucdtst.c │ │ │ ├── currtest.c │ │ │ ├── custrtrn.c │ │ │ ├── custrtst.c │ │ │ ├── cutiltst.c │ │ │ ├── encoll.c │ │ │ ├── encoll.h │ │ │ ├── eurocreg.c │ │ │ ├── hpmufn.c │ │ │ ├── idnatest.c │ │ │ ├── nccbtst.c │ │ │ ├── nccbtst.h │ │ │ ├── ncnvfbts.c │ │ │ ├── ncnvfbts.h │ │ │ ├── ncnvtst.c │ │ │ ├── nfsprep.c │ │ │ ├── nfsprep.h │ │ │ ├── nucnvtst.c │ │ │ ├── nucnvtst.h │ │ │ ├── putiltst.c │ │ │ ├── reapits.c │ │ │ ├── sorttest.c │ │ │ ├── spooftest.c │ │ │ ├── spreptst.c │ │ │ ├── sprpdata.c │ │ │ ├── stdnmtst.c │ │ │ ├── tracetst.c │ │ │ ├── trie2test.c │ │ │ ├── trietest.c │ │ │ ├── ucnvseltst.c │ │ │ ├── ucnvseltst.h │ │ │ ├── ucptrietest.c │ │ │ ├── ucsdetst.c │ │ │ ├── udatatst.c │ │ │ ├── udatpg_test.c │ │ │ ├── uenumtst.c │ │ │ ├── uformattedvaluetst.c │ │ │ ├── ulistfmttest.c │ │ │ ├── unumberformattertst.c │ │ │ ├── unumberrangeformattertst.c │ │ │ ├── uregiontest.c │ │ │ ├── usettest.c │ │ │ ├── usrchdat.c │ │ │ ├── usrchtst.c │ │ │ ├── utexttst.c │ │ │ ├── utf16tst.c │ │ │ ├── utf8tst.c │ │ │ ├── utmstest.c │ │ │ └── utransts.c │ │ ├── compat │ │ │ ├── Makefile.in │ │ │ ├── readme.txt │ │ │ ├── tzdate.c │ │ │ └── tzone.pl │ │ ├── depstest │ │ │ ├── dependencies.py │ │ │ ├── dependencies.txt │ │ │ ├── depstest.py │ │ │ └── icu-dependencies-mode.el │ │ ├── fuzzer │ │ │ ├── Makefile.in │ │ │ ├── break_iterator_fuzzer.cpp │ │ │ ├── collator_compare_fuzzer.cpp │ │ │ ├── collator_rulebased_fuzzer.cpp │ │ │ ├── collator_rulebased_fuzzer_seed_corpus.txt │ │ │ ├── converter_fuzzer.cpp │ │ │ ├── fuzzer_driver.cpp │ │ │ ├── fuzzer_utils.h │ │ │ ├── locale_fuzzer.cpp │ │ │ ├── locale_util.cpp │ │ │ ├── locale_util.h │ │ │ ├── number_format_fuzzer.cpp │ │ │ ├── ucasemap_fuzzer.cpp │ │ │ ├── uloc_canonicalize_fuzzer.cpp │ │ │ ├── uloc_canonicalize_fuzzer_seed_corpus.txt │ │ │ ├── uloc_for_language_tag_fuzzer.cpp │ │ │ ├── uloc_for_language_tag_fuzzer_seed_corpus.txt │ │ │ ├── uloc_get_name_fuzzer.cpp │ │ │ ├── uloc_get_name_fuzzer_seed_corpus.txt │ │ │ ├── uloc_is_right_to_left_fuzzer.cpp │ │ │ ├── uloc_is_right_to_left_fuzzer_seed_corpus.txt │ │ │ ├── uloc_open_keywords_fuzzer.cpp │ │ │ ├── uloc_open_keywords_fuzzer_seed_corpus.txt │ │ │ ├── unicode_string_codepage_create_fuzzer.cpp │ │ │ ├── uregex_open_fuzzer.cpp │ │ │ └── uregex_open_fuzzer.dict │ │ ├── hdrtst │ │ │ ├── Makefile.in │ │ │ ├── dfiles.txt │ │ │ ├── testinternalheaders.sh │ │ │ └── testtagsguards.sh │ │ ├── intltest │ │ │ ├── Makefile.in │ │ │ ├── aliastst.cpp │ │ │ ├── aliastst.h │ │ │ ├── allcoll.cpp │ │ │ ├── allcoll.h │ │ │ ├── alphaindextst.cpp │ │ │ ├── alphaindextst.h │ │ │ ├── apicoll.cpp │ │ │ ├── apicoll.h │ │ │ ├── astrotst.cpp │ │ │ ├── astrotst.h │ │ │ ├── bidiconf.cpp │ │ │ ├── bytestrietest.cpp │ │ │ ├── calcasts.cpp │ │ │ ├── calcasts.h │ │ │ ├── callimts.cpp │ │ │ ├── callimts.h │ │ │ ├── calregts.cpp │ │ │ ├── calregts.h │ │ │ ├── caltest.cpp │ │ │ ├── caltest.h │ │ │ ├── caltestdata.h │ │ │ ├── caltztst.cpp │ │ │ ├── caltztst.h │ │ │ ├── canittst.cpp │ │ │ ├── canittst.h │ │ │ ├── citrtest.cpp │ │ │ ├── citrtest.h │ │ │ ├── collationtest.cpp │ │ │ ├── colldata.cpp │ │ │ ├── colldata.h │ │ │ ├── compactdecimalformattest.cpp │ │ │ ├── convtest.cpp │ │ │ ├── convtest.h │ │ │ ├── cpdtrtst.cpp │ │ │ ├── cpdtrtst.h │ │ │ ├── csdetest.cpp │ │ │ ├── csdetest.h │ │ │ ├── currcoll.cpp │ │ │ ├── currcoll.h │ │ │ ├── dadrcal.cpp │ │ │ ├── dadrcal.h │ │ │ ├── dadrfmt.cpp │ │ │ ├── dadrfmt.h │ │ │ ├── datadrivennumberformattestsuite.cpp │ │ │ ├── datadrivennumberformattestsuite.h │ │ │ ├── dcfmapts.cpp │ │ │ ├── dcfmapts.h │ │ │ ├── dcfmtest.cpp │ │ │ ├── dcfmtest.h │ │ │ ├── decoll.cpp │ │ │ ├── decoll.h │ │ │ ├── dtfmapts.cpp │ │ │ ├── dtfmapts.h │ │ │ ├── dtfmrgts.cpp │ │ │ ├── dtfmrgts.h │ │ │ ├── dtfmtrtts.cpp │ │ │ ├── dtfmtrtts.h │ │ │ ├── dtfmttst.cpp │ │ │ ├── dtfmttst.h │ │ │ ├── dtifmtts.cpp │ │ │ ├── dtifmtts.h │ │ │ ├── dtptngts.cpp │ │ │ ├── dtptngts.h │ │ │ ├── encoll.cpp │ │ │ ├── encoll.h │ │ │ ├── erarulestest.cpp │ │ │ ├── erarulestest.h │ │ │ ├── escoll.cpp │ │ │ ├── escoll.h │ │ │ ├── ficoll.cpp │ │ │ ├── ficoll.h │ │ │ ├── fldset.cpp │ │ │ ├── fldset.h │ │ │ ├── formatted_string_builder_test.cpp │ │ │ ├── formattedvaluetest.cpp │ │ │ ├── frcoll.cpp │ │ │ ├── frcoll.h │ │ │ ├── g7coll.cpp │ │ │ ├── g7coll.h │ │ │ ├── genderinfotest.cpp │ │ │ ├── icusvtst.cpp │ │ │ ├── icusvtst.h │ │ │ ├── idnaconf.cpp │ │ │ ├── idnaconf.h │ │ │ ├── idnaref.cpp │ │ │ ├── idnaref.h │ │ │ ├── incaltst.cpp │ │ │ ├── incaltst.h │ │ │ ├── intltest.cpp │ │ │ ├── intltest.h │ │ │ ├── intltest.vcxproj │ │ │ ├── intltest.vcxproj.filters │ │ │ ├── itercoll.cpp │ │ │ ├── itercoll.h │ │ │ ├── itformat.cpp │ │ │ ├── itformat.h │ │ │ ├── itmajor.cpp │ │ │ ├── itmajor.h │ │ │ ├── itrbbi.cpp │ │ │ ├── itrbbi.h │ │ │ ├── itrbnf.cpp │ │ │ ├── itrbnf.h │ │ │ ├── itrbnfp.cpp │ │ │ ├── itrbnfp.h │ │ │ ├── itrbnfrt.cpp │ │ │ ├── itrbnfrt.h │ │ │ ├── itspoof.cpp │ │ │ ├── itspoof.h │ │ │ ├── ittrans.cpp │ │ │ ├── ittrans.h │ │ │ ├── itutil.cpp │ │ │ ├── itutil.h │ │ │ ├── jacoll.cpp │ │ │ ├── jacoll.h │ │ │ ├── jamotest.cpp │ │ │ ├── jamotest.h │ │ │ ├── lcukocol.cpp │ │ │ ├── lcukocol.h │ │ │ ├── listformattertest.cpp │ │ │ ├── listformattertest.h │ │ │ ├── localebuildertest.cpp │ │ │ ├── localebuildertest.h │ │ │ ├── localematchertest.cpp │ │ │ ├── locnmtst.cpp │ │ │ ├── locnmtst.h │ │ │ ├── loctest.cpp │ │ │ ├── loctest.h │ │ │ ├── measfmttest.cpp │ │ │ ├── miscdtfm.cpp │ │ │ ├── miscdtfm.h │ │ │ ├── mnkytst.cpp │ │ │ ├── mnkytst.h │ │ │ ├── msfmrgts.cpp │ │ │ ├── msfmrgts.h │ │ │ ├── nmfmapts.cpp │ │ │ ├── nmfmapts.h │ │ │ ├── nmfmtrt.cpp │ │ │ ├── nmfmtrt.h │ │ │ ├── normconf.cpp │ │ │ ├── normconf.h │ │ │ ├── nptrans.cpp │ │ │ ├── nptrans.h │ │ │ ├── numberformattesttuple.cpp │ │ │ ├── numberformattesttuple.h │ │ │ ├── numbertest.h │ │ │ ├── numbertest_affixutils.cpp │ │ │ ├── numbertest_api.cpp │ │ │ ├── numbertest_decimalquantity.cpp │ │ │ ├── numbertest_doubleconversion.cpp │ │ │ ├── numbertest_modifiers.cpp │ │ │ ├── numbertest_parse.cpp │ │ │ ├── numbertest_patternmodifier.cpp │ │ │ ├── numbertest_patternstring.cpp │ │ │ ├── numbertest_permutation.cpp │ │ │ ├── numbertest_range.cpp │ │ │ ├── numbertest_skeletons.cpp │ │ │ ├── numfmtdatadriventest.cpp │ │ │ ├── numfmtspectest.cpp │ │ │ ├── numfmtst.cpp │ │ │ ├── numfmtst.h │ │ │ ├── numrgts.cpp │ │ │ ├── numrgts.h │ │ │ ├── pluralmaptest.cpp │ │ │ ├── plurfmts.cpp │ │ │ ├── plurfmts.h │ │ │ ├── plurults.cpp │ │ │ ├── plurults.h │ │ │ ├── pptest.cpp │ │ │ ├── pptest.h │ │ │ ├── punyref.cpp │ │ │ ├── punyref.h │ │ │ ├── quantityformattertest.cpp │ │ │ ├── rbbiapts.cpp │ │ │ ├── rbbiapts.h │ │ │ ├── rbbimonkeytest.cpp │ │ │ ├── rbbimonkeytest.h │ │ │ ├── rbbitst.cpp │ │ │ ├── rbbitst.h │ │ │ ├── regcoll.cpp │ │ │ ├── regcoll.h │ │ │ ├── regextst.cpp │ │ │ ├── regextst.h │ │ │ ├── regiontst.cpp │ │ │ ├── regiontst.h │ │ │ ├── reldatefmttest.cpp │ │ │ ├── reptest.cpp │ │ │ ├── reptest.h │ │ │ ├── restest.cpp │ │ │ ├── restest.h │ │ │ ├── restsnew.cpp │ │ │ ├── restsnew.h │ │ │ ├── scientificnumberformattertest.cpp │ │ │ ├── sdtfmtts.cpp │ │ │ ├── sdtfmtts.h │ │ │ ├── selfmts.cpp │ │ │ ├── selfmts.h │ │ │ ├── sfwdchit.cpp │ │ │ ├── sfwdchit.h │ │ │ ├── simpleformattertest.cpp │ │ │ ├── simplethread.cpp │ │ │ ├── simplethread.h │ │ │ ├── srchtest.cpp │ │ │ ├── srchtest.h │ │ │ ├── ssearch.cpp │ │ │ ├── ssearch.h │ │ │ ├── static_unisets_test.cpp │ │ │ ├── strcase.cpp │ │ │ ├── string_segment_test.cpp │ │ │ ├── strtest.cpp │ │ │ ├── strtest.h │ │ │ ├── svccoll.cpp │ │ │ ├── svccoll.h │ │ │ ├── tchcfmt.cpp │ │ │ ├── tchcfmt.h │ │ │ ├── testidn.cpp │ │ │ ├── testidna.cpp │ │ │ ├── testidna.h │ │ │ ├── testutil.cpp │ │ │ ├── testutil.h │ │ │ ├── textfile.cpp │ │ │ ├── textfile.h │ │ │ ├── tfsmalls.cpp │ │ │ ├── tfsmalls.h │ │ │ ├── thcoll.cpp │ │ │ ├── thcoll.h │ │ │ ├── tmsgfmt.cpp │ │ │ ├── tmsgfmt.h │ │ │ ├── tokiter.cpp │ │ │ ├── tokiter.h │ │ │ ├── transapi.cpp │ │ │ ├── transapi.h │ │ │ ├── transrt.cpp │ │ │ ├── transrt.h │ │ │ ├── transtst.cpp │ │ │ ├── transtst.h │ │ │ ├── trcoll.cpp │ │ │ ├── trcoll.h │ │ │ ├── trnserr.cpp │ │ │ ├── trnserr.h │ │ │ ├── tscoll.cpp │ │ │ ├── tscoll.h │ │ │ ├── tsdate.cpp │ │ │ ├── tsdate.h │ │ │ ├── tsdcfmsy.cpp │ │ │ ├── tsdcfmsy.h │ │ │ ├── tsdtfmsy.cpp │ │ │ ├── tsdtfmsy.h │ │ │ ├── tsmthred.cpp │ │ │ ├── tsmthred.h │ │ │ ├── tsnmfmt.cpp │ │ │ ├── tsnmfmt.h │ │ │ ├── tsputil.cpp │ │ │ ├── tsputil.h │ │ │ ├── tstnorm.cpp │ │ │ ├── tstnorm.h │ │ │ ├── tstnrapi.cpp │ │ │ ├── tufmtts.cpp │ │ │ ├── tzbdtest.cpp │ │ │ ├── tzbdtest.h │ │ │ ├── tzfmttst.cpp │ │ │ ├── tzfmttst.h │ │ │ ├── tzoffloc.cpp │ │ │ ├── tzoffloc.h │ │ │ ├── tzregts.cpp │ │ │ ├── tzregts.h │ │ │ ├── tzrulets.cpp │ │ │ ├── tzrulets.h │ │ │ ├── tztest.cpp │ │ │ ├── tztest.h │ │ │ ├── ucaconf.cpp │ │ │ ├── ucaconf.h │ │ │ ├── ucdtest.cpp │ │ │ ├── ucdtest.h │ │ │ ├── ucharstrietest.cpp │ │ │ ├── unifiedcachetest.cpp │ │ │ ├── units_data_test.cpp │ │ │ ├── units_router_test.cpp │ │ │ ├── units_test.cpp │ │ │ ├── uobjtest.cpp │ │ │ ├── uobjtest.h │ │ │ ├── usettest.cpp │ │ │ ├── usettest.h │ │ │ ├── ustrtest.cpp │ │ │ ├── ustrtest.h │ │ │ ├── uts46test.cpp │ │ │ ├── utxttest.cpp │ │ │ ├── utxttest.h │ │ │ ├── uvectest.cpp │ │ │ ├── uvectest.h │ │ │ ├── v32test.cpp │ │ │ ├── v32test.h │ │ │ ├── windttst.cpp │ │ │ ├── windttst.h │ │ │ ├── winnmtst.cpp │ │ │ ├── winnmtst.h │ │ │ ├── winutil.cpp │ │ │ └── winutil.h │ │ ├── iotest │ │ │ ├── Makefile.in │ │ │ ├── filetst.c │ │ │ ├── iotest.cpp │ │ │ ├── iotest.h │ │ │ ├── iotest.vcxproj │ │ │ ├── iotest.vcxproj.filters │ │ │ ├── stream.cpp │ │ │ ├── strtst.c │ │ │ └── trnstst.c │ │ ├── letest │ │ │ ├── FontObject.cpp │ │ │ ├── FontObject.h │ │ │ ├── FontTableCache.cpp │ │ │ ├── FontTableCache.h │ │ │ ├── Makefile.in │ │ │ ├── PortableFontInstance.cpp │ │ │ ├── PortableFontInstance.h │ │ │ ├── SimpleFontInstance.cpp │ │ │ ├── SimpleFontInstance.h │ │ │ ├── cfonts.cpp │ │ │ ├── cfonts.h │ │ │ ├── cletest.c │ │ │ ├── cletest.sln │ │ │ ├── cletest.vcxproj │ │ │ ├── cletest.vcxproj.filters │ │ │ ├── cmaps.cpp │ │ │ ├── cmaps.h │ │ │ ├── gendata.cpp │ │ │ ├── gendata.sln │ │ │ ├── gendata.vcxproj │ │ │ ├── gendata.vcxproj.filters │ │ │ ├── gendata.xml │ │ │ ├── letest.cpp │ │ │ ├── letest.h │ │ │ ├── letest.sln │ │ │ ├── letest.vcxproj │ │ │ ├── letest.vcxproj.filters │ │ │ ├── letsutil.cpp │ │ │ ├── letsutil.h │ │ │ ├── readme.html │ │ │ ├── sfnt.h │ │ │ ├── testdata.cpp │ │ │ ├── xmlreader.cpp │ │ │ └── xmlreader.h │ │ ├── perf │ │ │ ├── DateFmtPerf │ │ │ │ ├── DateFmtPerf.cpp │ │ │ │ ├── DateFmtPerf.h │ │ │ │ ├── DateFmtPerf.vcxproj │ │ │ │ ├── DateFmtPerf.vcxproj.filters │ │ │ │ ├── Makefile.in │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── breakdata.h │ │ │ │ ├── collationdata.h │ │ │ │ └── datedata.h │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── charperf │ │ │ │ ├── CharPerf.pl │ │ │ │ ├── CharPerf_r.pl │ │ │ │ ├── Makefile.in │ │ │ │ ├── charperf.cpp │ │ │ │ ├── charperf.h │ │ │ │ ├── charperf.vcxproj │ │ │ │ └── charperf.vcxproj.filters │ │ │ ├── collationperf │ │ │ │ ├── CollPerf.pl │ │ │ │ ├── Makefile.in │ │ │ │ ├── collperf.cpp │ │ │ │ └── readme.html │ │ │ ├── collperf │ │ │ │ ├── CollPerf.pl │ │ │ │ ├── CollPerf_r.pl │ │ │ │ ├── Makefile.in │ │ │ │ ├── collperf.cpp │ │ │ │ ├── collperf.vcxproj │ │ │ │ └── collperf.vcxproj.filters │ │ │ ├── collperf2 │ │ │ │ ├── CollPerf2_r.pl │ │ │ │ ├── Makefile.in │ │ │ │ ├── collperf2.cpp │ │ │ │ ├── collperf2.vcxproj │ │ │ │ └── collperf2.vcxproj.filters │ │ │ ├── convperf │ │ │ │ ├── ConvPerf_r.pl │ │ │ │ ├── Makefile.in │ │ │ │ ├── convperf.cpp │ │ │ │ ├── convperf.h │ │ │ │ ├── convperf.vcxproj │ │ │ │ ├── convperf.vcxproj.filters │ │ │ │ ├── convperf_ansi.pl │ │ │ │ ├── convperf_iml.pl │ │ │ │ └── data.h │ │ │ ├── dicttrieperf │ │ │ │ ├── Makefile.in │ │ │ │ └── dicttrieperf.cpp │ │ │ ├── howExpensiveIs │ │ │ │ ├── Makefile.in │ │ │ │ ├── howExpensiveIs.cpp │ │ │ │ ├── readme.txt │ │ │ │ ├── sieve.cpp │ │ │ │ └── sieve.h │ │ │ ├── icuperf2report.xsl │ │ │ ├── leperf │ │ │ │ ├── FontObject.cpp │ │ │ │ ├── FontObject.h │ │ │ │ ├── FontTableCache.cpp │ │ │ │ ├── FontTableCache.h │ │ │ │ ├── Makefile.in │ │ │ │ ├── PortableFontInstance.cpp │ │ │ │ ├── PortableFontInstance.h │ │ │ │ ├── SimpleFontInstance.cpp │ │ │ │ ├── SimpleFontInstance.h │ │ │ │ ├── cfonts.cpp │ │ │ │ ├── cfonts.h │ │ │ │ ├── cmaps.cpp │ │ │ │ ├── cmaps.h │ │ │ │ ├── leperf.cpp │ │ │ │ ├── letrperf.cpp │ │ │ │ ├── sfnt.h │ │ │ │ ├── xmlreader.cpp │ │ │ │ └── xmlreader.h │ │ │ ├── localecanperf │ │ │ │ ├── Makefile.in │ │ │ │ ├── localecanperf.cpp │ │ │ │ └── runTest.sh │ │ │ ├── normperf │ │ │ │ ├── Makefile.in │ │ │ │ ├── NormPerf.pl │ │ │ │ ├── NormPerf_r.pl │ │ │ │ ├── dtfmtrtperf.cpp │ │ │ │ ├── dtfmtrtperf.h │ │ │ │ ├── dtfmtrtperf.vcxproj │ │ │ │ ├── dtfmtrtperf.vcxproj.filters │ │ │ │ ├── normperf.cpp │ │ │ │ ├── normperf.h │ │ │ │ ├── normperf.vcxproj │ │ │ │ ├── normperf.vcxproj.filters │ │ │ │ └── simplenormperf.cpp │ │ │ ├── perf.sln │ │ │ ├── perldriver │ │ │ │ ├── Common.pl.template │ │ │ │ ├── Dataset.pm │ │ │ │ ├── Format.pm │ │ │ │ ├── Output.pm │ │ │ │ └── PerfFramework.pm │ │ │ ├── strsrchperf │ │ │ │ ├── Makefile.in │ │ │ │ ├── StrSrchPerf_r.pl │ │ │ │ ├── strsrchperf.cpp │ │ │ │ ├── strsrchperf.h │ │ │ │ ├── strsrchperf.vcxproj │ │ │ │ └── strsrchperf.vcxproj.filters │ │ │ ├── ubrkperf │ │ │ │ ├── Makefile.in │ │ │ │ ├── UBrkPerf_r.pl │ │ │ │ ├── ubrkperf.cpp │ │ │ │ ├── ubrkperf.dsp │ │ │ │ ├── ubrkperf.h │ │ │ │ ├── ubrkperf.vcxproj │ │ │ │ ├── ubrkperf.vcxproj.filters │ │ │ │ ├── ubrkperf20.dsp │ │ │ │ ├── ubrkperfold.cpp │ │ │ │ └── ubrkperfold.dsp │ │ │ ├── ucnvavailperf │ │ │ │ ├── ucnvavailperf.cpp │ │ │ │ └── ucnvavailperf.vcxproj │ │ │ ├── unisetperf │ │ │ │ ├── Makefile.in │ │ │ │ ├── draft │ │ │ │ │ ├── bitset.cpp │ │ │ │ │ ├── contperf.bat │ │ │ │ │ ├── contperf.sh │ │ │ │ │ ├── span16perf.bat │ │ │ │ │ ├── span16perf.sh │ │ │ │ │ ├── span8perf.bat │ │ │ │ │ ├── span8perf.sh │ │ │ │ │ ├── trieset.cpp │ │ │ │ │ └── unicont.h │ │ │ │ ├── unisetperf.cpp │ │ │ │ ├── unisetperf.pl │ │ │ │ └── unisetperf.vcxproj │ │ │ ├── usetperf │ │ │ │ ├── Makefile.in │ │ │ │ ├── UsetPerf.pl │ │ │ │ ├── bitset.cpp │ │ │ │ ├── bitset.h │ │ │ │ ├── usetperf.cpp │ │ │ │ ├── usetperf.vcxproj │ │ │ │ └── usetperf.vcxproj.filters │ │ │ ├── ustrperf │ │ │ │ ├── Makefile.in │ │ │ │ ├── StringPerf.pl │ │ │ │ ├── StringPerf_r.pl │ │ │ │ ├── stringperf.cpp │ │ │ │ ├── stringperf.h │ │ │ │ ├── stringperf.vcxproj │ │ │ │ └── stringperf.vcxproj.filters │ │ │ ├── utfperf │ │ │ │ ├── Makefile.in │ │ │ │ ├── UtfPerf.pl │ │ │ │ ├── utfperf.cpp │ │ │ │ ├── utfperf.vcxproj │ │ │ │ └── utfperf.vcxproj.filters │ │ │ └── utrie2perf │ │ │ │ ├── Makefile.in │ │ │ │ ├── utrie2perf.bat │ │ │ │ ├── utrie2perf.cpp │ │ │ │ ├── utrie2perf.sh │ │ │ │ └── utrie2perf.vcxproj │ │ ├── testdata │ │ │ ├── BUILDRULES.py │ │ │ ├── BidiCharacterTest.txt │ │ │ ├── BidiTest.txt │ │ │ ├── CollationTest_NON_IGNORABLE_SHORT.txt │ │ │ ├── CollationTest_SHIFTED_SHORT.txt │ │ │ ├── ConverterSelectorTestUTF8.txt │ │ │ ├── GraphemeBreakTest.txt │ │ │ ├── IdnaTestV2.txt │ │ │ ├── LineBreakTest.txt │ │ │ ├── Makefile.in │ │ │ ├── NormalizationTest-3.2.0.txt │ │ │ ├── NumberFormatTestCases.txt │ │ │ ├── SentenceBreakTest.txt │ │ │ ├── TestFont1.otf │ │ │ ├── WordBreakTest.txt │ │ │ ├── break_rules │ │ │ │ ├── README.md │ │ │ │ ├── grapheme.txt │ │ │ │ ├── line.txt │ │ │ │ ├── line_cj.txt │ │ │ │ ├── line_loose.txt │ │ │ │ ├── line_loose_cj.txt │ │ │ │ ├── line_normal.txt │ │ │ │ ├── line_normal_cj.txt │ │ │ │ ├── sentence.txt │ │ │ │ ├── word.txt │ │ │ │ └── word_POSIX.txt │ │ │ ├── calendar.txt │ │ │ ├── casing.txt │ │ │ ├── cldr │ │ │ │ └── units │ │ │ │ │ ├── _readme.txt │ │ │ │ │ ├── unitPreferencesTest.txt │ │ │ │ │ └── unitsTest.txt │ │ │ ├── collationtest.txt │ │ │ ├── conversion.txt │ │ │ ├── csdetest.xml │ │ │ ├── dcfmtest.txt │ │ │ ├── default.txt │ │ │ ├── emoji-test.txt │ │ │ ├── encoded.utf16be │ │ │ ├── filters │ │ │ │ └── filtertest.txt │ │ │ ├── filtertest.txt │ │ │ ├── format.txt │ │ │ ├── ibm9027.ucm │ │ │ ├── icuio.txt │ │ │ ├── idna_conf.txt │ │ │ ├── idna_rules.txt │ │ │ ├── importtest.bin │ │ │ ├── letest.xml │ │ │ ├── localeCanonicalization.txt │ │ │ ├── localeMatcherTest.txt │ │ │ ├── mc.txt │ │ │ ├── metaZones.txt │ │ │ ├── nfs4_cis_prep.txt │ │ │ ├── nfs4_cs_prep_ci.txt │ │ │ ├── nfs4_cs_prep_cs.txt │ │ │ ├── nfs4_mixed_prep_p.txt │ │ │ ├── nfs4_mixed_prep_s.txt │ │ │ ├── numberformattestspecification.txt │ │ │ ├── numberpermutationtest.txt │ │ │ ├── old_e_testtypes.res │ │ │ ├── old_l_testtypes.res │ │ │ ├── pkgdata.inc.in │ │ │ ├── pkgdataMakefile.in │ │ │ ├── ra.txt │ │ │ ├── ra.xlf │ │ │ ├── rbbitst.txt │ │ │ ├── re_tests.txt │ │ │ ├── readme.txt │ │ │ ├── regextst.txt │ │ │ ├── riwords.txt │ │ │ ├── root.txt │ │ │ ├── sh.txt │ │ │ ├── sh_YU.txt │ │ │ ├── ssearch.xml │ │ │ ├── structLocale.txt │ │ │ ├── te.txt │ │ │ ├── te_IN.txt │ │ │ ├── te_IN_REVISED.txt │ │ │ ├── test1.ucm │ │ │ ├── test1bmp.ucm │ │ │ ├── test2.ucm │ │ │ ├── test3.ucm │ │ │ ├── test4.ucm │ │ │ ├── test4x.ucm │ │ │ ├── test5.ucm │ │ │ ├── testaliases.txt │ │ │ ├── testdata.mak │ │ │ ├── testempty.txt │ │ │ ├── testnorm.txt │ │ │ ├── testtypes.txt │ │ │ ├── timezoneTypes.txt │ │ │ ├── translit_rules.txt │ │ │ ├── uni-text.bin │ │ │ ├── windowsZones.txt │ │ │ └── zoneinfo64.txt │ │ ├── testmap │ │ │ ├── Makefile.in │ │ │ ├── readme.txt │ │ │ ├── testmap.c │ │ │ └── testmap.dsp │ │ └── thaitest │ │ │ ├── Makefile.in │ │ │ ├── space.txt │ │ │ ├── thaitest.cpp │ │ │ └── thaitest.dsp │ │ └── tools │ │ ├── Makefile.in │ │ ├── ctestfw │ │ ├── Makefile.in │ │ ├── ctest.c │ │ ├── ctestfw.vcxproj │ │ ├── ctestfw.vcxproj.filters │ │ ├── datamap.cpp │ │ ├── sources.txt │ │ ├── testdata.cpp │ │ ├── tstdtmod.cpp │ │ ├── ucln_ct.c │ │ ├── unicode │ │ │ ├── ctest.h │ │ │ ├── datamap.h │ │ │ ├── testdata.h │ │ │ ├── testlog.h │ │ │ ├── testtype.h │ │ │ ├── tstdtmod.h │ │ │ ├── uperf.h │ │ │ └── utimer.h │ │ └── uperf.cpp │ │ ├── escapesrc │ │ ├── Makefile.in │ │ ├── cptbl.h │ │ ├── escapesrc.cpp │ │ ├── expect-simple.cpp │ │ ├── tblgen.cpp │ │ ├── test-nochange.cpp │ │ └── test-simple.cpp │ │ ├── genbrk │ │ ├── Makefile.in │ │ ├── genbrk.1.in │ │ ├── genbrk.cpp │ │ ├── genbrk.vcxproj │ │ ├── genbrk.vcxproj.filters │ │ └── sources.txt │ │ ├── genccode │ │ ├── Makefile.in │ │ ├── genccode.8.in │ │ ├── genccode.c │ │ ├── genccode.vcxproj │ │ ├── genccode.vcxproj.filters │ │ └── sources.txt │ │ ├── gencfu │ │ ├── Makefile.in │ │ ├── gencfu.1.in │ │ ├── gencfu.cpp │ │ ├── gencfu.vcxproj │ │ ├── gencfu.vcxproj.filters │ │ └── sources.txt │ │ ├── gencmn │ │ ├── Makefile.in │ │ ├── gencmn.8.in │ │ ├── gencmn.c │ │ ├── gencmn.vcxproj │ │ ├── gencmn.vcxproj.filters │ │ └── sources.txt │ │ ├── gencnval │ │ ├── Makefile.in │ │ ├── gencnval.1.in │ │ ├── gencnval.c │ │ ├── gencnval.vcxproj │ │ ├── gencnval.vcxproj.filters │ │ └── sources.txt │ │ ├── gencolusb │ │ ├── Makefile │ │ ├── README.md │ │ ├── extract_unsafe_backwards.cpp │ │ └── verify_uset.cpp │ │ ├── gendict │ │ ├── Makefile.in │ │ ├── gendict.1.in │ │ ├── gendict.cpp │ │ ├── gendict.vcxproj │ │ ├── gendict.vcxproj.filters │ │ └── sources.txt │ │ ├── gennorm2 │ │ ├── Makefile.in │ │ ├── extradata.cpp │ │ ├── extradata.h │ │ ├── gennorm2.cpp │ │ ├── gennorm2.vcxproj │ │ ├── n2builder.cpp │ │ ├── n2builder.h │ │ ├── norms.cpp │ │ ├── norms.h │ │ └── sources.txt │ │ ├── genrb │ │ ├── Makefile.in │ │ ├── derb.1.in │ │ ├── derb.cpp │ │ ├── derb.vcxproj │ │ ├── derb.vcxproj.filters │ │ ├── errmsg.c │ │ ├── errmsg.h │ │ ├── filterrb.cpp │ │ ├── filterrb.h │ │ ├── genrb.1.in │ │ ├── genrb.cpp │ │ ├── genrb.h │ │ ├── genrb.vcxproj │ │ ├── genrb.vcxproj.filters │ │ ├── parse.cpp │ │ ├── parse.h │ │ ├── prscmnts.cpp │ │ ├── prscmnts.h │ │ ├── rbutil.c │ │ ├── rbutil.h │ │ ├── read.c │ │ ├── read.h │ │ ├── reslist.cpp │ │ ├── reslist.h │ │ ├── rle.c │ │ ├── rle.h │ │ ├── sources.txt │ │ ├── ustr.c │ │ ├── ustr.h │ │ ├── wrtjava.cpp │ │ └── wrtxml.cpp │ │ ├── genren │ │ ├── Makefile │ │ ├── README │ │ └── genren.pl │ │ ├── gensprep │ │ ├── Makefile.in │ │ ├── filterRFC3454.pl │ │ ├── gensprep.8.in │ │ ├── gensprep.c │ │ ├── gensprep.h │ │ ├── gensprep.vcxproj │ │ ├── gensprep.vcxproj.filters │ │ ├── sources.txt │ │ └── store.c │ │ ├── gentest │ │ ├── Makefile.in │ │ ├── genres32.c │ │ ├── gentest.c │ │ ├── gentest.h │ │ ├── gentest.vcxproj │ │ ├── gentest.vcxproj.filters │ │ └── sources.txt │ │ ├── icuinfo │ │ ├── Makefile.in │ │ ├── icuinfo.cpp │ │ ├── icuinfo.vcxproj │ │ ├── icuplugins_windows_sample.txt │ │ ├── plugin_sources.txt │ │ ├── sources.txt │ │ ├── testplug.c │ │ ├── testplug.vcxproj │ │ └── testplug.vcxproj.filters │ │ ├── icupkg │ │ ├── Makefile.in │ │ ├── icupkg.8.in │ │ ├── icupkg.cpp │ │ ├── icupkg.vcxproj │ │ └── sources.txt │ │ ├── icuswap │ │ ├── Makefile.in │ │ ├── icuswap.cpp │ │ ├── icuswap.vcxproj │ │ └── sources.txt │ │ ├── makeconv │ │ ├── Makefile.in │ │ ├── gencnvex.c │ │ ├── genmbcs.cpp │ │ ├── genmbcs.h │ │ ├── makeconv.1.in │ │ ├── makeconv.cpp │ │ ├── makeconv.h │ │ ├── makeconv.vcxproj │ │ ├── makeconv.vcxproj.filters │ │ ├── sources.txt │ │ └── ucnvstat.c │ │ ├── memcheck │ │ └── ICUMemCheck.pl │ │ ├── pkgdata │ │ ├── Makefile.in │ │ ├── pkgdata.1.in │ │ ├── pkgdata.cpp │ │ ├── pkgdata.vcxproj │ │ ├── pkgdata.vcxproj.filters │ │ ├── pkgtypes.c │ │ ├── pkgtypes.h │ │ └── sources.txt │ │ ├── toolutil │ │ ├── Makefile.in │ │ ├── collationinfo.cpp │ │ ├── collationinfo.h │ │ ├── dbgutil.cpp │ │ ├── dbgutil.h │ │ ├── denseranges.cpp │ │ ├── denseranges.h │ │ ├── filestrm.cpp │ │ ├── filestrm.h │ │ ├── filetools.cpp │ │ ├── filetools.h │ │ ├── flagparser.cpp │ │ ├── flagparser.h │ │ ├── package.cpp │ │ ├── package.h │ │ ├── pkg_genc.cpp │ │ ├── pkg_genc.h │ │ ├── pkg_gencmn.cpp │ │ ├── pkg_gencmn.h │ │ ├── pkg_icu.cpp │ │ ├── pkg_icu.h │ │ ├── pkg_imp.h │ │ ├── pkgitems.cpp │ │ ├── ppucd.cpp │ │ ├── ppucd.h │ │ ├── sources.txt │ │ ├── swapimpl.cpp │ │ ├── swapimpl.h │ │ ├── toolutil.cpp │ │ ├── toolutil.h │ │ ├── toolutil.vcxproj │ │ ├── ucbuf.cpp │ │ ├── ucbuf.h │ │ ├── ucln_tu.cpp │ │ ├── ucm.cpp │ │ ├── ucm.h │ │ ├── ucmstate.cpp │ │ ├── udbgutil.cpp │ │ ├── udbgutil.h │ │ ├── unewdata.cpp │ │ ├── unewdata.h │ │ ├── uoptions.cpp │ │ ├── uoptions.h │ │ ├── uparse.cpp │ │ ├── uparse.h │ │ ├── writesrc.cpp │ │ ├── writesrc.h │ │ ├── xmlparser.cpp │ │ └── xmlparser.h │ │ └── tzcode │ │ ├── Makefile.in │ │ ├── asctime.c │ │ ├── ialloc.c │ │ ├── icuregions │ │ ├── icuzdump.cpp │ │ ├── icuzdump.vcxproj │ │ ├── icuzdump.vcxproj.filters │ │ ├── icuzones │ │ ├── localtime.c │ │ ├── private.h │ │ ├── readme.txt │ │ ├── scheck.c │ │ ├── tz2icu.cpp │ │ ├── tz2icu.h │ │ ├── tzfile.h │ │ ├── tzselect.ksh │ │ ├── zdump.c │ │ └── zic.c ├── libogg │ ├── .gitignore │ ├── AUTHORS │ ├── CHANGES │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.in │ ├── configure.js │ ├── depcomp │ ├── doc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── fish_xiph_org.png │ │ ├── framing.html │ │ ├── index.html │ │ ├── libogg │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bitpacking.html │ │ │ ├── datastructures.html │ │ │ ├── decoding.html │ │ │ ├── encoding.html │ │ │ ├── general.html │ │ │ ├── index.html │ │ │ ├── ogg_iovec_t.html │ │ │ ├── ogg_packet.html │ │ │ ├── ogg_packet_clear.html │ │ │ ├── ogg_page.html │ │ │ ├── ogg_page_bos.html │ │ │ ├── ogg_page_checksum_set.html │ │ │ ├── ogg_page_continued.html │ │ │ ├── ogg_page_eos.html │ │ │ ├── ogg_page_granulepos.html │ │ │ ├── ogg_page_packets.html │ │ │ ├── ogg_page_pageno.html │ │ │ ├── ogg_page_serialno.html │ │ │ ├── ogg_page_version.html │ │ │ ├── ogg_stream_check.html │ │ │ ├── ogg_stream_clear.html │ │ │ ├── ogg_stream_destroy.html │ │ │ ├── ogg_stream_eos.html │ │ │ ├── ogg_stream_flush.html │ │ │ ├── ogg_stream_flush_fill.html │ │ │ ├── ogg_stream_init.html │ │ │ ├── ogg_stream_iovecin.html │ │ │ ├── ogg_stream_packetin.html │ │ │ ├── ogg_stream_packetout.html │ │ │ ├── ogg_stream_packetpeek.html │ │ │ ├── ogg_stream_pagein.html │ │ │ ├── ogg_stream_pageout.html │ │ │ ├── ogg_stream_pageout_fill.html │ │ │ ├── ogg_stream_reset.html │ │ │ ├── ogg_stream_reset_serialno.html │ │ │ ├── ogg_stream_state.html │ │ │ ├── ogg_sync_buffer.html │ │ │ ├── ogg_sync_check.html │ │ │ ├── ogg_sync_clear.html │ │ │ ├── ogg_sync_destroy.html │ │ │ ├── ogg_sync_init.html │ │ │ ├── ogg_sync_pageout.html │ │ │ ├── ogg_sync_pageseek.html │ │ │ ├── ogg_sync_reset.html │ │ │ ├── ogg_sync_state.html │ │ │ ├── ogg_sync_wrote.html │ │ │ ├── oggpack_adv.html │ │ │ ├── oggpack_adv1.html │ │ │ ├── oggpack_bits.html │ │ │ ├── oggpack_buffer.html │ │ │ ├── oggpack_bytes.html │ │ │ ├── oggpack_get_buffer.html │ │ │ ├── oggpack_look.html │ │ │ ├── oggpack_look1.html │ │ │ ├── oggpack_read.html │ │ │ ├── oggpack_read1.html │ │ │ ├── oggpack_readinit.html │ │ │ ├── oggpack_reset.html │ │ │ ├── oggpack_write.html │ │ │ ├── oggpack_writealign.html │ │ │ ├── oggpack_writecheck.html │ │ │ ├── oggpack_writeclear.html │ │ │ ├── oggpack_writecopy.html │ │ │ ├── oggpack_writeinit.html │ │ │ ├── oggpack_writetrunc.html │ │ │ ├── overview.html │ │ │ ├── reference.html │ │ │ └── style.css │ │ ├── multiplex1.png │ │ ├── ogg-multiplex.html │ │ ├── oggstream.html │ │ ├── packets.png │ │ ├── pages.png │ │ ├── rfc3533.txt │ │ ├── rfc5334.txt │ │ ├── skeleton.html │ │ ├── stream.png │ │ ├── vorbisword2.png │ │ ├── white-ogg.png │ │ └── white-xifish.png │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── ogg │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── config_types.h.in │ │ │ ├── ogg.h │ │ │ └── os_types.h │ ├── install-sh │ ├── libogg.spec │ ├── libogg.spec.in │ ├── ltmain.sh │ ├── macosx │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── Ogg.xcodeproj │ │ │ └── project.pbxproj │ │ └── Ogg_Prefix.pch │ ├── missing │ ├── ogg-uninstalled.pc.in │ ├── ogg.m4 │ ├── ogg.pc.in │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bitwise.c │ │ └── framing.c │ └── win32 │ │ ├── VS2003 │ │ ├── libogg │ │ │ └── libogg.vcproj │ │ └── ogg.sln │ │ ├── VS2005 │ │ ├── libogg_dynamic.sln │ │ ├── libogg_dynamic.vcproj │ │ ├── libogg_static.sln │ │ └── libogg_static.vcproj │ │ ├── VS2008 │ │ ├── libogg_dynamic.sln │ │ ├── libogg_dynamic.vcproj │ │ ├── libogg_static.sln │ │ └── libogg_static.vcproj │ │ ├── VS2010 │ │ ├── libogg_dynamic.sln │ │ ├── libogg_dynamic.vcxproj │ │ ├── libogg_static.sln │ │ └── libogg_static.vcxproj │ │ ├── VS6 │ │ ├── build_ogg_dynamic.bat │ │ ├── build_ogg_dynamic_debug.bat │ │ ├── build_ogg_static.bat │ │ ├── build_ogg_static_debug.bat │ │ ├── ogg.dsw │ │ ├── ogg_dynamic.dsp │ │ └── ogg_static.dsp │ │ └── ogg.def ├── libpng │ ├── .gitignore │ ├── ANNOUNCE │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── arm │ │ ├── arm_init.c │ │ ├── filter_neon.S │ │ └── filter_neon_intrinsics.c │ ├── autogen.sh │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── configure.js │ ├── contrib │ │ ├── README.txt │ │ ├── arm-neon │ │ │ ├── README │ │ │ ├── android-ndk.c │ │ │ ├── linux-auxv.c │ │ │ └── linux.c │ │ ├── conftest │ │ │ ├── README │ │ │ ├── pngcp.dfa │ │ │ ├── read.dfa │ │ │ ├── s_read.dfa │ │ │ ├── s_write.dfa │ │ │ ├── simple.dfa │ │ │ └── write.dfa │ │ ├── examples │ │ │ ├── README.txt │ │ │ ├── iccfrompng.c │ │ │ ├── pngpixel.c │ │ │ ├── pngtopng.c │ │ │ └── simpleover.c │ │ ├── gregbook │ │ │ ├── COPYING │ │ │ ├── LICENSE │ │ │ ├── Makefile.mingw32 │ │ │ ├── Makefile.sgi │ │ │ ├── Makefile.unx │ │ │ ├── Makefile.w32 │ │ │ ├── README │ │ │ ├── makevms.com │ │ │ ├── readpng.c │ │ │ ├── readpng.h │ │ │ ├── readpng2.c │ │ │ ├── readpng2.h │ │ │ ├── readppm.c │ │ │ ├── rpng-win.c │ │ │ ├── rpng-x.c │ │ │ ├── rpng2-win.c │ │ │ ├── rpng2-x.c │ │ │ ├── toucan.png │ │ │ ├── wpng.c │ │ │ ├── writepng.c │ │ │ └── writepng.h │ │ ├── intel │ │ │ ├── INSTALL │ │ │ ├── filter_sse2_intrinsics.c │ │ │ ├── intel_init.c │ │ │ └── intel_sse.patch │ │ ├── libtests │ │ │ ├── fakepng.c │ │ │ ├── gentests.sh │ │ │ ├── makepng.c │ │ │ ├── pngimage.c │ │ │ ├── pngstest-errors.h │ │ │ ├── pngstest.c │ │ │ ├── pngunknown.c │ │ │ ├── pngvalid.c │ │ │ ├── readpng.c │ │ │ ├── tarith.c │ │ │ └── timepng.c │ │ ├── mips-msa │ │ │ ├── README │ │ │ └── linux.c │ │ ├── pngminim │ │ │ ├── README │ │ │ ├── decoder │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ │ ├── encoder │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ │ └── preader │ │ │ │ ├── README │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ ├── pngminus │ │ │ ├── README │ │ │ ├── makefile.std │ │ │ ├── makefile.tc3 │ │ │ ├── makevms.com │ │ │ ├── png2pnm.bat │ │ │ ├── png2pnm.c │ │ │ ├── png2pnm.sh │ │ │ ├── pngminus.bat │ │ │ ├── pngminus.sh │ │ │ ├── pnm2png.bat │ │ │ ├── pnm2png.c │ │ │ └── pnm2png.sh │ │ ├── pngsuite │ │ │ ├── README │ │ │ ├── basn0g01.png │ │ │ ├── basn0g02.png │ │ │ ├── basn0g04.png │ │ │ ├── basn0g08.png │ │ │ ├── basn0g16.png │ │ │ ├── basn2c08.png │ │ │ ├── basn2c16.png │ │ │ ├── basn3p01.png │ │ │ ├── basn3p02.png │ │ │ ├── basn3p04.png │ │ │ ├── basn3p08.png │ │ │ ├── basn4a08.png │ │ │ ├── basn4a16.png │ │ │ ├── basn6a08.png │ │ │ ├── basn6a16.png │ │ │ ├── ftbbn0g01.png │ │ │ ├── ftbbn0g02.png │ │ │ ├── ftbbn0g04.png │ │ │ ├── ftbbn2c16.png │ │ │ ├── ftbbn3p08.png │ │ │ ├── ftbgn2c16.png │ │ │ ├── ftbgn3p08.png │ │ │ ├── ftbrn2c08.png │ │ │ ├── ftbwn0g16.png │ │ │ ├── ftbwn3p08.png │ │ │ ├── ftbyn3p08.png │ │ │ ├── ftp0n0g08.png │ │ │ ├── ftp0n2c08.png │ │ │ ├── ftp0n3p08.png │ │ │ └── ftp1n3p08.png │ │ ├── testpngs │ │ │ ├── gray-1-1.8-tRNS.png │ │ │ ├── gray-1-1.8.png │ │ │ ├── gray-1-linear-tRNS.png │ │ │ ├── gray-1-linear.png │ │ │ ├── gray-1-sRGB-tRNS.png │ │ │ ├── gray-1-sRGB.png │ │ │ ├── gray-1-tRNS.png │ │ │ ├── gray-1.png │ │ │ ├── gray-16-1.8-tRNS.png │ │ │ ├── gray-16-1.8.png │ │ │ ├── gray-16-linear-tRNS.png │ │ │ ├── gray-16-linear.png │ │ │ ├── gray-16-sRGB-tRNS.png │ │ │ ├── gray-16-sRGB.png │ │ │ ├── gray-16-tRNS.png │ │ │ ├── gray-16.png │ │ │ ├── gray-2-1.8-tRNS.png │ │ │ ├── gray-2-1.8.png │ │ │ ├── gray-2-linear-tRNS.png │ │ │ ├── gray-2-linear.png │ │ │ ├── gray-2-sRGB-tRNS.png │ │ │ ├── gray-2-sRGB.png │ │ │ ├── gray-2-tRNS.png │ │ │ ├── gray-2.png │ │ │ ├── gray-4-1.8-tRNS.png │ │ │ ├── gray-4-1.8.png │ │ │ ├── gray-4-linear-tRNS.png │ │ │ ├── gray-4-linear.png │ │ │ ├── gray-4-sRGB-tRNS.png │ │ │ ├── gray-4-sRGB.png │ │ │ ├── gray-4-tRNS.png │ │ │ ├── gray-4.png │ │ │ ├── gray-8-1.8-tRNS.png │ │ │ ├── gray-8-1.8.png │ │ │ ├── gray-8-linear-tRNS.png │ │ │ ├── gray-8-linear.png │ │ │ ├── gray-8-sRGB-tRNS.png │ │ │ ├── gray-8-sRGB.png │ │ │ ├── gray-8-tRNS.png │ │ │ ├── gray-8.png │ │ │ ├── gray-alpha-16-1.8.png │ │ │ ├── gray-alpha-16-linear.png │ │ │ ├── gray-alpha-16-sRGB.png │ │ │ ├── gray-alpha-16.png │ │ │ ├── gray-alpha-8-1.8.png │ │ │ ├── gray-alpha-8-linear.png │ │ │ ├── gray-alpha-8-sRGB.png │ │ │ ├── gray-alpha-8.png │ │ │ ├── makepngs.sh │ │ │ ├── palette-1-1.8-tRNS.png │ │ │ ├── palette-1-1.8.png │ │ │ ├── palette-1-linear-tRNS.png │ │ │ ├── palette-1-linear.png │ │ │ ├── palette-1-sRGB-tRNS.png │ │ │ ├── palette-1-sRGB.png │ │ │ ├── palette-1-tRNS.png │ │ │ ├── palette-1.png │ │ │ ├── palette-2-1.8-tRNS.png │ │ │ ├── palette-2-1.8.png │ │ │ ├── palette-2-linear-tRNS.png │ │ │ ├── palette-2-linear.png │ │ │ ├── palette-2-sRGB-tRNS.png │ │ │ ├── palette-2-sRGB.png │ │ │ ├── palette-2-tRNS.png │ │ │ ├── palette-2.png │ │ │ ├── palette-4-1.8-tRNS.png │ │ │ ├── palette-4-1.8.png │ │ │ ├── palette-4-linear-tRNS.png │ │ │ ├── palette-4-linear.png │ │ │ ├── palette-4-sRGB-tRNS.png │ │ │ ├── palette-4-sRGB.png │ │ │ ├── palette-4-tRNS.png │ │ │ ├── palette-4.png │ │ │ ├── palette-8-1.8-tRNS.png │ │ │ ├── palette-8-1.8.png │ │ │ ├── palette-8-linear-tRNS.png │ │ │ ├── palette-8-linear.png │ │ │ ├── palette-8-sRGB-tRNS.png │ │ │ ├── palette-8-sRGB.png │ │ │ ├── palette-8-tRNS.png │ │ │ ├── palette-8.png │ │ │ ├── rgb-16-1.8-tRNS.png │ │ │ ├── rgb-16-1.8.png │ │ │ ├── rgb-16-linear-tRNS.png │ │ │ ├── rgb-16-linear.png │ │ │ ├── rgb-16-sRGB-tRNS.png │ │ │ ├── rgb-16-sRGB.png │ │ │ ├── rgb-16-tRNS.png │ │ │ ├── rgb-16.png │ │ │ ├── rgb-8-1.8-tRNS.png │ │ │ ├── rgb-8-1.8.png │ │ │ ├── rgb-8-linear-tRNS.png │ │ │ ├── rgb-8-linear.png │ │ │ ├── rgb-8-sRGB-tRNS.png │ │ │ ├── rgb-8-sRGB.png │ │ │ ├── rgb-8-tRNS.png │ │ │ ├── rgb-8.png │ │ │ ├── rgb-alpha-16-1.8.png │ │ │ ├── rgb-alpha-16-linear.png │ │ │ ├── rgb-alpha-16-sRGB.png │ │ │ ├── rgb-alpha-16.png │ │ │ ├── rgb-alpha-8-1.8.png │ │ │ ├── rgb-alpha-8-linear.png │ │ │ ├── rgb-alpha-8-sRGB.png │ │ │ └── rgb-alpha-8.png │ │ ├── tools │ │ │ ├── README.txt │ │ │ ├── checksum-icc.c │ │ │ ├── chkfmt │ │ │ ├── cvtcolor.c │ │ │ ├── genpng.c │ │ │ ├── intgamma.sh │ │ │ ├── makesRGB.c │ │ │ ├── png-fix-itxt.c │ │ │ ├── pngcp.c │ │ │ ├── pngfix.c │ │ │ ├── reindent │ │ │ └── sRGB.h │ │ └── visupng │ │ │ ├── PngFile.c │ │ │ ├── PngFile.h │ │ │ ├── README.txt │ │ │ ├── VisualPng.c │ │ │ ├── VisualPng.dsp │ │ │ ├── VisualPng.dsw │ │ │ ├── VisualPng.ico │ │ │ ├── VisualPng.png │ │ │ ├── VisualPng.rc │ │ │ ├── cexcept.h │ │ │ └── resource.h │ ├── depcomp │ ├── example.c │ ├── install-sh │ ├── libpng-config.in │ ├── libpng-manual.txt │ ├── libpng.3 │ ├── libpng.pc.in │ ├── libpngpf.3 │ ├── ltmain.sh │ ├── mips │ │ ├── filter_msa_intrinsics.c │ │ └── mips_init.c │ ├── missing │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── pngbar.jpg │ ├── pngbar.png │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngnow.png │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtest.c │ ├── pngtest.png │ ├── pngtrans.c │ ├── pngusr.dfa │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ ├── projects │ │ ├── owatcom │ │ │ ├── libpng.tgt │ │ │ ├── libpng.wpj │ │ │ ├── pngconfig.mak │ │ │ ├── pngstest.tgt │ │ │ ├── pngtest.tgt │ │ │ └── pngvalid.tgt │ │ ├── visualc71 │ │ │ ├── PRJ0041.mak │ │ │ ├── README.txt │ │ │ ├── README_zlib.txt │ │ │ ├── libpng.sln │ │ │ ├── libpng.vcproj │ │ │ ├── pngtest.vcproj │ │ │ └── zlib.vcproj │ │ └── vstudio │ │ │ ├── README.txt │ │ │ ├── libpng │ │ │ └── libpng.vcxproj │ │ │ ├── pnglibconf │ │ │ └── pnglibconf.vcxproj │ │ │ ├── pngstest │ │ │ └── pngstest.vcxproj │ │ │ ├── pngtest │ │ │ └── pngtest.vcxproj │ │ │ ├── pngunknown │ │ │ └── pngunknown.vcxproj │ │ │ ├── pngvalid │ │ │ └── pngvalid.vcxproj │ │ │ ├── vstudio.sln │ │ │ ├── zlib.props │ │ │ └── zlib │ │ │ └── zlib.vcxproj │ ├── scripts │ │ ├── README.txt │ │ ├── SCOPTIONS.ppc │ │ ├── checksym.awk │ │ ├── def.c │ │ ├── descrip.mms │ │ ├── dfn.awk │ │ ├── genchk.cmake.in │ │ ├── genout.cmake.in │ │ ├── gensrc.cmake.in │ │ ├── intprefix.c │ │ ├── libpng-config-body.in │ │ ├── libpng-config-head.in │ │ ├── libpng.pc.in │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── macro.lst │ │ ├── makefile.32sunu │ │ ├── makefile.64sunu │ │ ├── makefile.acorn │ │ ├── makefile.aix │ │ ├── makefile.amiga │ │ ├── makefile.atari │ │ ├── makefile.bc32 │ │ ├── makefile.beos │ │ ├── makefile.bor │ │ ├── makefile.cegcc │ │ ├── makefile.darwin │ │ ├── makefile.dec │ │ ├── makefile.dj2 │ │ ├── makefile.freebsd │ │ ├── makefile.gcc │ │ ├── makefile.hp64 │ │ ├── makefile.hpgcc │ │ ├── makefile.hpux │ │ ├── makefile.ibmc │ │ ├── makefile.intel │ │ ├── makefile.knr │ │ ├── makefile.linux │ │ ├── makefile.mips │ │ ├── makefile.msc │ │ ├── makefile.msys │ │ ├── makefile.ne12bsd │ │ ├── makefile.netbsd │ │ ├── makefile.openbsd │ │ ├── makefile.sco │ │ ├── makefile.sggcc │ │ ├── makefile.sgi │ │ ├── makefile.so9 │ │ ├── makefile.solaris │ │ ├── makefile.solaris-x86 │ │ ├── makefile.std │ │ ├── makefile.sunos │ │ ├── makefile.tc3 │ │ ├── makefile.vcwin32 │ │ ├── makevms.com │ │ ├── options.awk │ │ ├── pnglibconf.dfa │ │ ├── pnglibconf.h.prebuilt │ │ ├── pnglibconf.mak │ │ ├── pngwin.rc │ │ ├── prefix.c │ │ ├── smakefile.ppc │ │ ├── sym.c │ │ ├── symbols.c │ │ ├── symbols.def │ │ ├── test.cmake.in │ │ └── vers.c │ ├── test-driver │ └── tests │ │ ├── pngimage-full │ │ ├── pngimage-quick │ │ ├── pngstest │ │ ├── pngstest-1.8 │ │ ├── pngstest-1.8-alpha │ │ ├── pngstest-linear │ │ ├── pngstest-linear-alpha │ │ ├── pngstest-none │ │ ├── pngstest-none-alpha │ │ ├── pngstest-sRGB │ │ ├── pngstest-sRGB-alpha │ │ ├── pngtest │ │ ├── pngunknown-IDAT │ │ ├── pngunknown-discard │ │ ├── pngunknown-if-safe │ │ ├── pngunknown-sAPI │ │ ├── pngunknown-sTER │ │ ├── pngunknown-save │ │ ├── pngunknown-vpAg │ │ ├── pngvalid-gamma-16-to-8 │ │ ├── pngvalid-gamma-alpha-mode │ │ ├── pngvalid-gamma-background │ │ ├── pngvalid-gamma-expand16-alpha-mode │ │ ├── pngvalid-gamma-expand16-background │ │ ├── pngvalid-gamma-expand16-transform │ │ ├── pngvalid-gamma-sbit │ │ ├── pngvalid-gamma-threshold │ │ ├── pngvalid-gamma-transform │ │ ├── pngvalid-progressive-interlace-standard │ │ ├── pngvalid-progressive-size │ │ ├── pngvalid-progressive-standard │ │ ├── pngvalid-standard │ │ └── pngvalid-transform ├── libsquish │ ├── .gitignore │ ├── ChangeLog │ ├── README │ ├── alpha.cpp │ ├── alpha.h │ ├── clusterfit.cpp │ ├── clusterfit.h │ ├── colourblock.cpp │ ├── colourblock.h │ ├── colourfit.cpp │ ├── colourfit.h │ ├── colourset.cpp │ ├── colourset.h │ ├── config.h │ ├── configure.js │ ├── maths.cpp │ ├── maths.h │ ├── rangefit.cpp │ ├── rangefit.h │ ├── simd.h │ ├── simd_float.h │ ├── simd_sse.h │ ├── simd_ve.h │ ├── singlecolourfit.cpp │ ├── singlecolourfit.h │ ├── singlecolourlookup.inl │ ├── squish.cpp │ └── squish.h ├── libvorbis │ ├── .gitignore │ ├── AUTHORS │ ├── CHANGES │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── autogen.sh │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── configure.js │ ├── depcomp │ ├── doc │ │ ├── 01-introduction.tex │ │ ├── 02-bitpacking.tex │ │ ├── 03-codebook.tex │ │ ├── 04-codec.tex │ │ ├── 05-comment.tex │ │ ├── 06-floor0.tex │ │ ├── 07-floor1.tex │ │ ├── 08-residue.tex │ │ ├── 09-helper.tex │ │ ├── 10-tables.tex │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Vorbis_I_spec.cfg │ │ ├── Vorbis_I_spec.css │ │ ├── Vorbis_I_spec.html │ │ ├── Vorbis_I_spec.pdf │ │ ├── Vorbis_I_spec.tex │ │ ├── a1-encapsulation-ogg.tex │ │ ├── a2-encapsulation-rtp.tex │ │ ├── components.png │ │ ├── eightphase.png │ │ ├── evenlsp.png │ │ ├── fish_xiph_org.png │ │ ├── floor1-1.png │ │ ├── floor1-2.png │ │ ├── floor1-3.png │ │ ├── floor1-4.png │ │ ├── floor1_inverse_dB_table.html │ │ ├── floorval.png │ │ ├── footer.tex │ │ ├── fourphase.png │ │ ├── framing.html │ │ ├── helper.html │ │ ├── hufftree-under.png │ │ ├── hufftree.png │ │ ├── index.html │ │ ├── libvorbis │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── index.html │ │ │ ├── overview.html │ │ │ ├── reference.html │ │ │ ├── return.html │ │ │ ├── style.css │ │ │ ├── vorbis_analysis.html │ │ │ ├── vorbis_analysis_blockout.html │ │ │ ├── vorbis_analysis_buffer.html │ │ │ ├── vorbis_analysis_headerout.html │ │ │ ├── vorbis_analysis_init.html │ │ │ ├── vorbis_analysis_wrote.html │ │ │ ├── vorbis_bitrate_addblock.html │ │ │ ├── vorbis_bitrate_flushpacket.html │ │ │ ├── vorbis_block.html │ │ │ ├── vorbis_block_clear.html │ │ │ ├── vorbis_block_init.html │ │ │ ├── vorbis_comment.html │ │ │ ├── vorbis_comment_add.html │ │ │ ├── vorbis_comment_add_tag.html │ │ │ ├── vorbis_comment_clear.html │ │ │ ├── vorbis_comment_init.html │ │ │ ├── vorbis_comment_query.html │ │ │ ├── vorbis_comment_query_count.html │ │ │ ├── vorbis_commentheader_out.html │ │ │ ├── vorbis_dsp_clear.html │ │ │ ├── vorbis_dsp_state.html │ │ │ ├── vorbis_granule_time.html │ │ │ ├── vorbis_info.html │ │ │ ├── vorbis_info_blocksize.html │ │ │ ├── vorbis_info_clear.html │ │ │ ├── vorbis_info_init.html │ │ │ ├── vorbis_packet_blocksize.html │ │ │ ├── vorbis_synthesis.html │ │ │ ├── vorbis_synthesis_blockin.html │ │ │ ├── vorbis_synthesis_halfrate.html │ │ │ ├── vorbis_synthesis_halfrate_p.html │ │ │ ├── vorbis_synthesis_headerin.html │ │ │ ├── vorbis_synthesis_idheader.html │ │ │ ├── vorbis_synthesis_init.html │ │ │ ├── vorbis_synthesis_lapout.html │ │ │ ├── vorbis_synthesis_pcmout.html │ │ │ ├── vorbis_synthesis_read.html │ │ │ ├── vorbis_synthesis_restart.html │ │ │ ├── vorbis_synthesis_trackonly.html │ │ │ └── vorbis_version_string.html │ │ ├── lspmap.png │ │ ├── oddlsp.png │ │ ├── oggstream.html │ │ ├── programming.html │ │ ├── residue-pack.png │ │ ├── residue2.png │ │ ├── rfc5215.txt │ │ ├── rfc5215.xml │ │ ├── squarepolar.png │ │ ├── stereo.html │ │ ├── stream.png │ │ ├── v-comment.html │ │ ├── vorbis-clip.txt │ │ ├── vorbis-errors.txt │ │ ├── vorbis-fidelity.html │ │ ├── vorbis.html │ │ ├── vorbisenc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── changes.html │ │ │ ├── examples.html │ │ │ ├── index.html │ │ │ ├── ovectl_ratemanage2_arg.html │ │ │ ├── ovectl_ratemanage_arg.html │ │ │ ├── overview.html │ │ │ ├── reference.html │ │ │ ├── style.css │ │ │ ├── vorbis_encode_ctl.html │ │ │ ├── vorbis_encode_init.html │ │ │ ├── vorbis_encode_init_vbr.html │ │ │ ├── vorbis_encode_setup_init.html │ │ │ ├── vorbis_encode_setup_managed.html │ │ │ └── vorbis_encode_setup_vbr.html │ │ ├── vorbisfile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── OggVorbis_File.html │ │ │ ├── callbacks.html │ │ │ ├── chaining_example_c.html │ │ │ ├── chainingexample.html │ │ │ ├── crosslap.html │ │ │ ├── datastructures.html │ │ │ ├── decoding.html │ │ │ ├── example.html │ │ │ ├── exampleindex.html │ │ │ ├── fileinfo.html │ │ │ ├── index.html │ │ │ ├── initialization.html │ │ │ ├── ov_bitrate.html │ │ │ ├── ov_bitrate_instant.html │ │ │ ├── ov_callbacks.html │ │ │ ├── ov_clear.html │ │ │ ├── ov_comment.html │ │ │ ├── ov_crosslap.html │ │ │ ├── ov_fopen.html │ │ │ ├── ov_info.html │ │ │ ├── ov_open.html │ │ │ ├── ov_open_callbacks.html │ │ │ ├── ov_pcm_seek.html │ │ │ ├── ov_pcm_seek_lap.html │ │ │ ├── ov_pcm_seek_page.html │ │ │ ├── ov_pcm_seek_page_lap.html │ │ │ ├── ov_pcm_tell.html │ │ │ ├── ov_pcm_total.html │ │ │ ├── ov_raw_seek.html │ │ │ ├── ov_raw_seek_lap.html │ │ │ ├── ov_raw_tell.html │ │ │ ├── ov_raw_total.html │ │ │ ├── ov_read.html │ │ │ ├── ov_read_filter.html │ │ │ ├── ov_read_float.html │ │ │ ├── ov_seekable.html │ │ │ ├── ov_serialnumber.html │ │ │ ├── ov_streams.html │ │ │ ├── ov_test.html │ │ │ ├── ov_test_callbacks.html │ │ │ ├── ov_test_open.html │ │ │ ├── ov_time_seek.html │ │ │ ├── ov_time_seek_lap.html │ │ │ ├── ov_time_seek_page.html │ │ │ ├── ov_time_seek_page_lap.html │ │ │ ├── ov_time_tell.html │ │ │ ├── ov_time_total.html │ │ │ ├── overview.html │ │ │ ├── reference.html │ │ │ ├── seekexample.html │ │ │ ├── seeking.html │ │ │ ├── seeking_example_c.html │ │ │ ├── seeking_test_c.html │ │ │ ├── seekingexample.html │ │ │ ├── style.css │ │ │ ├── threads.html │ │ │ └── vorbisfile_example_c.html │ │ ├── vorbisword2.png │ │ ├── wait.png │ │ ├── white-xifish.png │ │ ├── window1.png │ │ ├── window2.png │ │ └── xifish.pdf │ ├── examples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── chaining_example.c │ │ ├── decoder_example.c │ │ ├── encoder_example.c │ │ ├── frameview.pl │ │ ├── seeking_example.c │ │ └── vorbisfile_example.c │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── vorbis │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── codec.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ ├── install-sh │ ├── lib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── analysis.c │ │ ├── backends.h │ │ ├── barkmel.c │ │ ├── bitrate.c │ │ ├── bitrate.h │ │ ├── block.c │ │ ├── books │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── coupled │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── res_books_51.h │ │ │ │ └── res_books_stereo.h │ │ │ ├── floor │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── floor_books.h │ │ │ └── uncoupled │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── res_books_uncoupled.h │ │ ├── codebook.c │ │ ├── codebook.h │ │ ├── codec_internal.h │ │ ├── envelope.c │ │ ├── envelope.h │ │ ├── floor0.c │ │ ├── floor1.c │ │ ├── highlevel.h │ │ ├── info.c │ │ ├── lookup.c │ │ ├── lookup.h │ │ ├── lookup_data.h │ │ ├── lookups.pl │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── mapping0.c │ │ ├── masking.h │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── misc.h │ │ ├── modes │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── floor_all.h │ │ │ ├── psych_11.h │ │ │ ├── psych_16.h │ │ │ ├── psych_44.h │ │ │ ├── psych_8.h │ │ │ ├── residue_16.h │ │ │ ├── residue_44.h │ │ │ ├── residue_44p51.h │ │ │ ├── residue_44u.h │ │ │ ├── residue_8.h │ │ │ ├── setup_11.h │ │ │ ├── setup_16.h │ │ │ ├── setup_22.h │ │ │ ├── setup_32.h │ │ │ ├── setup_44.h │ │ │ ├── setup_44p51.h │ │ │ ├── setup_44u.h │ │ │ ├── setup_8.h │ │ │ └── setup_X.h │ │ ├── os.h │ │ ├── psy.c │ │ ├── psy.h │ │ ├── psytune.c │ │ ├── registry.c │ │ ├── registry.h │ │ ├── res0.c │ │ ├── scales.h │ │ ├── sharedbook.c │ │ ├── smallft.c │ │ ├── smallft.h │ │ ├── synthesis.c │ │ ├── tone.c │ │ ├── vorbisenc.c │ │ ├── vorbisfile.c │ │ ├── window.c │ │ └── window.h │ ├── libvorbis.spec │ ├── libvorbis.spec.in │ ├── ltmain.sh │ ├── m4 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── add_cflags.m4 │ │ ├── ogg.m4 │ │ └── pkg.m4 │ ├── macos │ │ ├── compat │ │ │ ├── strdup.c │ │ │ └── sys │ │ │ │ └── types.h │ │ ├── decoder_example.mcp │ │ ├── encoder_example.mcp │ │ ├── libvorbis.mcp │ │ ├── libvorbis.mcp.exp │ │ ├── libvorbisenc.mcp │ │ ├── libvorbisenc.mcp.exp │ │ ├── libvorbisfile.mcp │ │ ├── libvorbisfile.mcp.exp │ │ └── vorbis.mcp │ ├── macosx │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ └── Vorbis.xcodeproj │ │ │ └── project.pbxproj │ ├── missing │ ├── symbian │ │ ├── bld.inf │ │ ├── config.h │ │ └── vorbis.mmp │ ├── test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── test.c │ │ ├── util.c │ │ ├── util.h │ │ ├── write_read.c │ │ └── write_read.h │ ├── todo.txt │ ├── vorbis-uninstalled.pc.in │ ├── vorbis.m4 │ ├── vorbis.pc.in │ ├── vorbisenc-uninstalled.pc.in │ ├── vorbisenc.pc.in │ ├── vorbisfile-uninstalled.pc.in │ ├── vorbisfile.pc.in │ ├── vq │ │ ├── 16.vqs │ │ ├── 16u.vqs │ │ ├── 44c-1.vqs │ │ ├── 44c0.vqs │ │ ├── 44c1.vqs │ │ ├── 44c2.vqs │ │ ├── 44c3.vqs │ │ ├── 44c4.vqs │ │ ├── 44c5.vqs │ │ ├── 44c6.vqs │ │ ├── 44c7.vqs │ │ ├── 44c8.vqs │ │ ├── 44c9.vqs │ │ ├── 44p-1.vqs │ │ ├── 44p0.vqs │ │ ├── 44p1.vqs │ │ ├── 44p2.vqs │ │ ├── 44p3.vqs │ │ ├── 44p4.vqs │ │ ├── 44p5.vqs │ │ ├── 44p6.vqs │ │ ├── 44p7.vqs │ │ ├── 44p8.vqs │ │ ├── 44p9.vqs │ │ ├── 44u0.vqs │ │ ├── 44u1.vqs │ │ ├── 44u2.vqs │ │ ├── 44u3.vqs │ │ ├── 44u4.vqs │ │ ├── 44u5.vqs │ │ ├── 44u6.vqs │ │ ├── 44u7.vqs │ │ ├── 44u8.vqs │ │ ├── 44u9.vqs │ │ ├── 8.vqs │ │ ├── 8u.vqs │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bookutil.c │ │ ├── bookutil.h │ │ ├── distribution.c │ │ ├── floor_11.vqs │ │ ├── floor_22.vqs │ │ ├── floor_44.vqs │ │ ├── huffbuild.c │ │ ├── latticebuild.c │ │ ├── latticetune.c │ │ ├── localcodebook.h │ │ ├── make_floor_books.pl │ │ ├── make_residue_books.pl │ │ ├── metrics.c │ │ ├── vqgen.c │ │ └── vqgen.h │ └── win32 │ │ ├── VS2005 │ │ ├── README │ │ ├── libogg.vsprops │ │ ├── libvorbis │ │ │ ├── libvorbis_dynamic.vcproj │ │ │ └── libvorbis_static.vcproj │ │ ├── libvorbisfile │ │ │ ├── libvorbisfile_dynamic.vcproj │ │ │ └── libvorbisfile_static.vcproj │ │ ├── vorbis_dynamic.sln │ │ ├── vorbis_static.sln │ │ ├── vorbisdec │ │ │ ├── vorbisdec_dynamic.vcproj │ │ │ └── vorbisdec_static.vcproj │ │ └── vorbisenc │ │ │ ├── vorbisenc_dynamic.vcproj │ │ │ └── vorbisenc_static.vcproj │ │ ├── VS2008 │ │ ├── README │ │ ├── libogg.vsprops │ │ ├── libvorbis │ │ │ ├── libvorbis_dynamic.vcproj │ │ │ └── libvorbis_static.vcproj │ │ ├── libvorbisfile │ │ │ ├── libvorbisfile_dynamic.vcproj │ │ │ └── libvorbisfile_static.vcproj │ │ ├── vorbis_dynamic.sln │ │ ├── vorbis_static.sln │ │ ├── vorbisdec │ │ │ ├── vorbisdec_dynamic.vcproj │ │ │ └── vorbisdec_static.vcproj │ │ └── vorbisenc │ │ │ ├── vorbisenc_dynamic.vcproj │ │ │ └── vorbisenc_static.vcproj │ │ ├── VS2010 │ │ ├── README │ │ ├── libogg.props │ │ ├── libvorbis │ │ │ ├── libvorbis_dynamic.vcxproj │ │ │ └── libvorbis_static.vcxproj │ │ ├── libvorbisfile │ │ │ ├── libvorbisfile_dynamic.vcxproj │ │ │ └── libvorbisfile_static.vcxproj │ │ ├── vorbis_dynamic.sln │ │ ├── vorbis_static.sln │ │ ├── vorbisdec │ │ │ ├── vorbisdec_dynamic.vcxproj │ │ │ └── vorbisdec_static.vcxproj │ │ └── vorbisenc │ │ │ ├── vorbisenc_dynamic.vcxproj │ │ │ └── vorbisenc_static.vcxproj │ │ ├── vorbis.def │ │ ├── vorbisenc.def │ │ └── vorbisfile.def ├── lua │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── configure.js │ ├── doc │ │ ├── contents.html │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── lz4 │ ├── .gitignore │ ├── configure.js │ ├── lz4.c │ └── lz4.h ├── npapi │ ├── npapi.h │ ├── npfunctions.h │ ├── npruntime.h │ └── nptypes.h ├── softfloat │ ├── .gitignore │ ├── configure.js │ ├── softfloat.cpp │ ├── softfloat.hpp │ └── softfloat │ │ ├── COPYING.txt │ │ ├── README.html │ │ ├── README.txt │ │ ├── build │ │ ├── Linux-386-GCC │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── Linux-386-SSE2-GCC │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── Linux-x86_64-GCC │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── Win32-MinGW │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── Win32-SSE2-MinGW │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── Win64-MinGW-w64 │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── template-FAST_INT64 │ │ │ ├── Makefile │ │ │ └── platform.h │ │ └── template-not-FAST_INT64 │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── doc │ │ ├── SoftFloat-history.html │ │ ├── SoftFloat-source.html │ │ └── SoftFloat.html │ │ └── source │ │ ├── 8086 │ │ ├── extF80M_isSignalingNaN.c │ │ ├── f128M_isSignalingNaN.c │ │ ├── s_commonNaNToExtF80M.c │ │ ├── s_commonNaNToExtF80UI.c │ │ ├── s_commonNaNToF128M.c │ │ ├── s_commonNaNToF128UI.c │ │ ├── s_commonNaNToF16UI.c │ │ ├── s_commonNaNToF32UI.c │ │ ├── s_commonNaNToF64UI.c │ │ ├── s_extF80MToCommonNaN.c │ │ ├── s_extF80UIToCommonNaN.c │ │ ├── s_f128MToCommonNaN.c │ │ ├── s_f128UIToCommonNaN.c │ │ ├── s_f16UIToCommonNaN.c │ │ ├── s_f32UIToCommonNaN.c │ │ ├── s_f64UIToCommonNaN.c │ │ ├── s_propagateNaNExtF80M.c │ │ ├── s_propagateNaNExtF80UI.c │ │ ├── s_propagateNaNF128M.c │ │ ├── s_propagateNaNF128UI.c │ │ ├── s_propagateNaNF16UI.c │ │ ├── s_propagateNaNF32UI.c │ │ ├── s_propagateNaNF64UI.c │ │ ├── softfloat_raiseFlags.c │ │ └── specialize.h │ │ ├── 8086-SSE │ │ ├── extF80M_isSignalingNaN.c │ │ ├── f128M_isSignalingNaN.c │ │ ├── s_commonNaNToExtF80M.c │ │ ├── s_commonNaNToExtF80UI.c │ │ ├── s_commonNaNToF128M.c │ │ ├── s_commonNaNToF128UI.c │ │ ├── s_commonNaNToF16UI.c │ │ ├── s_commonNaNToF32UI.c │ │ ├── s_commonNaNToF64UI.c │ │ ├── s_extF80MToCommonNaN.c │ │ ├── s_extF80UIToCommonNaN.c │ │ ├── s_f128MToCommonNaN.c │ │ ├── s_f128UIToCommonNaN.c │ │ ├── s_f16UIToCommonNaN.c │ │ ├── s_f32UIToCommonNaN.c │ │ ├── s_f64UIToCommonNaN.c │ │ ├── s_propagateNaNExtF80M.c │ │ ├── s_propagateNaNExtF80UI.c │ │ ├── s_propagateNaNF128M.c │ │ ├── s_propagateNaNF128UI.c │ │ ├── s_propagateNaNF16UI.c │ │ ├── s_propagateNaNF32UI.c │ │ ├── s_propagateNaNF64UI.c │ │ ├── softfloat_raiseFlags.c │ │ └── specialize.h │ │ ├── extF80M_add.c │ │ ├── extF80M_div.c │ │ ├── extF80M_eq.c │ │ ├── extF80M_eq_signaling.c │ │ ├── extF80M_le.c │ │ ├── extF80M_le_quiet.c │ │ ├── extF80M_lt.c │ │ ├── extF80M_lt_quiet.c │ │ ├── extF80M_mul.c │ │ ├── extF80M_rem.c │ │ ├── extF80M_roundToInt.c │ │ ├── extF80M_sqrt.c │ │ ├── extF80M_sub.c │ │ ├── extF80M_to_f128M.c │ │ ├── extF80M_to_f16.c │ │ ├── extF80M_to_f32.c │ │ ├── extF80M_to_f64.c │ │ ├── extF80M_to_i32.c │ │ ├── extF80M_to_i32_r_minMag.c │ │ ├── extF80M_to_i64.c │ │ ├── extF80M_to_i64_r_minMag.c │ │ ├── extF80M_to_ui32.c │ │ ├── extF80M_to_ui32_r_minMag.c │ │ ├── extF80M_to_ui64.c │ │ ├── extF80M_to_ui64_r_minMag.c │ │ ├── extF80_add.c │ │ ├── extF80_div.c │ │ ├── extF80_eq.c │ │ ├── extF80_eq_signaling.c │ │ ├── extF80_isSignalingNaN.c │ │ ├── extF80_le.c │ │ ├── extF80_le_quiet.c │ │ ├── extF80_lt.c │ │ ├── extF80_lt_quiet.c │ │ ├── extF80_mul.c │ │ ├── extF80_rem.c │ │ ├── extF80_roundToInt.c │ │ ├── extF80_sqrt.c │ │ ├── extF80_sub.c │ │ ├── extF80_to_f128.c │ │ ├── extF80_to_f16.c │ │ ├── extF80_to_f32.c │ │ ├── extF80_to_f64.c │ │ ├── extF80_to_i32.c │ │ ├── extF80_to_i32_r_minMag.c │ │ ├── extF80_to_i64.c │ │ ├── extF80_to_i64_r_minMag.c │ │ ├── extF80_to_ui32.c │ │ ├── extF80_to_ui32_r_minMag.c │ │ ├── extF80_to_ui64.c │ │ ├── extF80_to_ui64_r_minMag.c │ │ ├── f128M_add.c │ │ ├── f128M_div.c │ │ ├── f128M_eq.c │ │ ├── f128M_eq_signaling.c │ │ ├── f128M_le.c │ │ ├── f128M_le_quiet.c │ │ ├── f128M_lt.c │ │ ├── f128M_lt_quiet.c │ │ ├── f128M_mul.c │ │ ├── f128M_mulAdd.c │ │ ├── f128M_rem.c │ │ ├── f128M_roundToInt.c │ │ ├── f128M_sqrt.c │ │ ├── f128M_sub.c │ │ ├── f128M_to_extF80M.c │ │ ├── f128M_to_f16.c │ │ ├── f128M_to_f32.c │ │ ├── f128M_to_f64.c │ │ ├── f128M_to_i32.c │ │ ├── f128M_to_i32_r_minMag.c │ │ ├── f128M_to_i64.c │ │ ├── f128M_to_i64_r_minMag.c │ │ ├── f128M_to_ui32.c │ │ ├── f128M_to_ui32_r_minMag.c │ │ ├── f128M_to_ui64.c │ │ ├── f128M_to_ui64_r_minMag.c │ │ ├── f128_add.c │ │ ├── f128_div.c │ │ ├── f128_eq.c │ │ ├── f128_eq_signaling.c │ │ ├── f128_isSignalingNaN.c │ │ ├── f128_le.c │ │ ├── f128_le_quiet.c │ │ ├── f128_lt.c │ │ ├── f128_lt_quiet.c │ │ ├── f128_mul.c │ │ ├── f128_mulAdd.c │ │ ├── f128_rem.c │ │ ├── f128_roundToInt.c │ │ ├── f128_sqrt.c │ │ ├── f128_sub.c │ │ ├── f128_to_extF80.c │ │ ├── f128_to_f16.c │ │ ├── f128_to_f32.c │ │ ├── f128_to_f64.c │ │ ├── f128_to_i32.c │ │ ├── f128_to_i32_r_minMag.c │ │ ├── f128_to_i64.c │ │ ├── f128_to_i64_r_minMag.c │ │ ├── f128_to_ui32.c │ │ ├── f128_to_ui32_r_minMag.c │ │ ├── f128_to_ui64.c │ │ ├── f128_to_ui64_r_minMag.c │ │ ├── f16_add.c │ │ ├── f16_div.c │ │ ├── f16_eq.c │ │ ├── f16_eq_signaling.c │ │ ├── f16_isSignalingNaN.c │ │ ├── f16_le.c │ │ ├── f16_le_quiet.c │ │ ├── f16_lt.c │ │ ├── f16_lt_quiet.c │ │ ├── f16_mul.c │ │ ├── f16_mulAdd.c │ │ ├── f16_rem.c │ │ ├── f16_roundToInt.c │ │ ├── f16_sqrt.c │ │ ├── f16_sub.c │ │ ├── f16_to_extF80.c │ │ ├── f16_to_extF80M.c │ │ ├── f16_to_f128.c │ │ ├── f16_to_f128M.c │ │ ├── f16_to_f32.c │ │ ├── f16_to_f64.c │ │ ├── f16_to_i32.c │ │ ├── f16_to_i32_r_minMag.c │ │ ├── f16_to_i64.c │ │ ├── f16_to_i64_r_minMag.c │ │ ├── f16_to_ui32.c │ │ ├── f16_to_ui32_r_minMag.c │ │ ├── f16_to_ui64.c │ │ ├── f16_to_ui64_r_minMag.c │ │ ├── f32_add.c │ │ ├── f32_div.c │ │ ├── f32_eq.c │ │ ├── f32_eq_signaling.c │ │ ├── f32_isSignalingNaN.c │ │ ├── f32_le.c │ │ ├── f32_le_quiet.c │ │ ├── f32_lt.c │ │ ├── f32_lt_quiet.c │ │ ├── f32_mul.c │ │ ├── f32_mulAdd.c │ │ ├── f32_rem.c │ │ ├── f32_roundToInt.c │ │ ├── f32_sqrt.c │ │ ├── f32_sub.c │ │ ├── f32_to_extF80.c │ │ ├── f32_to_extF80M.c │ │ ├── f32_to_f128.c │ │ ├── f32_to_f128M.c │ │ ├── f32_to_f16.c │ │ ├── f32_to_f64.c │ │ ├── f32_to_i32.c │ │ ├── f32_to_i32_r_minMag.c │ │ ├── f32_to_i64.c │ │ ├── f32_to_i64_r_minMag.c │ │ ├── f32_to_ui32.c │ │ ├── f32_to_ui32_r_minMag.c │ │ ├── f32_to_ui64.c │ │ ├── f32_to_ui64_r_minMag.c │ │ ├── f64_add.c │ │ ├── f64_div.c │ │ ├── f64_eq.c │ │ ├── f64_eq_signaling.c │ │ ├── f64_isSignalingNaN.c │ │ ├── f64_le.c │ │ ├── f64_le_quiet.c │ │ ├── f64_lt.c │ │ ├── f64_lt_quiet.c │ │ ├── f64_mul.c │ │ ├── f64_mulAdd.c │ │ ├── f64_rem.c │ │ ├── f64_roundToInt.c │ │ ├── f64_sqrt.c │ │ ├── f64_sub.c │ │ ├── f64_to_extF80.c │ │ ├── f64_to_extF80M.c │ │ ├── f64_to_f128.c │ │ ├── f64_to_f128M.c │ │ ├── f64_to_f16.c │ │ ├── f64_to_f32.c │ │ ├── f64_to_i32.c │ │ ├── f64_to_i32_r_minMag.c │ │ ├── f64_to_i64.c │ │ ├── f64_to_i64_r_minMag.c │ │ ├── f64_to_ui32.c │ │ ├── f64_to_ui32_r_minMag.c │ │ ├── f64_to_ui64.c │ │ ├── f64_to_ui64_r_minMag.c │ │ ├── i32_to_extF80.c │ │ ├── i32_to_extF80M.c │ │ ├── i32_to_f128.c │ │ ├── i32_to_f128M.c │ │ ├── i32_to_f16.c │ │ ├── i32_to_f32.c │ │ ├── i32_to_f64.c │ │ ├── i64_to_extF80.c │ │ ├── i64_to_extF80M.c │ │ ├── i64_to_f128.c │ │ ├── i64_to_f128M.c │ │ ├── i64_to_f16.c │ │ ├── i64_to_f32.c │ │ ├── i64_to_f64.c │ │ ├── include │ │ ├── internals.h │ │ ├── platform.h │ │ ├── primitiveTypes.h │ │ ├── primitives.h │ │ ├── softfloat.h │ │ └── softfloat_types.h │ │ ├── s_add128.c │ │ ├── s_add256M.c │ │ ├── s_addCarryM.c │ │ ├── s_addComplCarryM.c │ │ ├── s_addExtF80M.c │ │ ├── s_addF128M.c │ │ ├── s_addM.c │ │ ├── s_addMagsExtF80.c │ │ ├── s_addMagsF128.c │ │ ├── s_addMagsF16.c │ │ ├── s_addMagsF32.c │ │ ├── s_addMagsF64.c │ │ ├── s_approxRecip32_1.c │ │ ├── s_approxRecipSqrt32_1.c │ │ ├── s_approxRecipSqrt_1Ks.c │ │ ├── s_approxRecip_1Ks.c │ │ ├── s_compare128M.c │ │ ├── s_compare96M.c │ │ ├── s_compareNonnormExtF80M.c │ │ ├── s_countLeadingZeros16.c │ │ ├── s_countLeadingZeros32.c │ │ ├── s_countLeadingZeros64.c │ │ ├── s_countLeadingZeros8.c │ │ ├── s_eq128.c │ │ ├── s_invalidExtF80M.c │ │ ├── s_invalidF128M.c │ │ ├── s_isNaNF128M.c │ │ ├── s_le128.c │ │ ├── s_lt128.c │ │ ├── s_mul128By32.c │ │ ├── s_mul128MTo256M.c │ │ ├── s_mul128To256M.c │ │ ├── s_mul64ByShifted32To128.c │ │ ├── s_mul64To128.c │ │ ├── s_mul64To128M.c │ │ ├── s_mulAddF128.c │ │ ├── s_mulAddF128M.c │ │ ├── s_mulAddF16.c │ │ ├── s_mulAddF32.c │ │ ├── s_mulAddF64.c │ │ ├── s_negXM.c │ │ ├── s_normExtF80SigM.c │ │ ├── s_normRoundPackMToExtF80M.c │ │ ├── s_normRoundPackMToF128M.c │ │ ├── s_normRoundPackToExtF80.c │ │ ├── s_normRoundPackToF128.c │ │ ├── s_normRoundPackToF16.c │ │ ├── s_normRoundPackToF32.c │ │ ├── s_normRoundPackToF64.c │ │ ├── s_normSubnormalExtF80Sig.c │ │ ├── s_normSubnormalF128Sig.c │ │ ├── s_normSubnormalF128SigM.c │ │ ├── s_normSubnormalF16Sig.c │ │ ├── s_normSubnormalF32Sig.c │ │ ├── s_normSubnormalF64Sig.c │ │ ├── s_remStepMBy32.c │ │ ├── s_roundPackMToExtF80M.c │ │ ├── s_roundPackMToF128M.c │ │ ├── s_roundPackMToI64.c │ │ ├── s_roundPackMToUI64.c │ │ ├── s_roundPackToExtF80.c │ │ ├── s_roundPackToF128.c │ │ ├── s_roundPackToF16.c │ │ ├── s_roundPackToF32.c │ │ ├── s_roundPackToF64.c │ │ ├── s_roundPackToI32.c │ │ ├── s_roundPackToI64.c │ │ ├── s_roundPackToUI32.c │ │ ├── s_roundPackToUI64.c │ │ ├── s_shiftLeftM.c │ │ ├── s_shiftNormSigF128M.c │ │ ├── s_shiftRightJam128.c │ │ ├── s_shiftRightJam128Extra.c │ │ ├── s_shiftRightJam256M.c │ │ ├── s_shiftRightJam32.c │ │ ├── s_shiftRightJam64.c │ │ ├── s_shiftRightJam64Extra.c │ │ ├── s_shiftRightJamM.c │ │ ├── s_shiftRightM.c │ │ ├── s_shortShiftLeft128.c │ │ ├── s_shortShiftLeft64To96M.c │ │ ├── s_shortShiftLeftM.c │ │ ├── s_shortShiftRight128.c │ │ ├── s_shortShiftRightExtendM.c │ │ ├── s_shortShiftRightJam128.c │ │ ├── s_shortShiftRightJam128Extra.c │ │ ├── s_shortShiftRightJam64.c │ │ ├── s_shortShiftRightJam64Extra.c │ │ ├── s_shortShiftRightJamM.c │ │ ├── s_shortShiftRightM.c │ │ ├── s_sub128.c │ │ ├── s_sub1XM.c │ │ ├── s_sub256M.c │ │ ├── s_subM.c │ │ ├── s_subMagsExtF80.c │ │ ├── s_subMagsF128.c │ │ ├── s_subMagsF16.c │ │ ├── s_subMagsF32.c │ │ ├── s_subMagsF64.c │ │ ├── s_tryPropagateNaNExtF80M.c │ │ ├── s_tryPropagateNaNF128M.c │ │ ├── softfloat_state.c │ │ ├── ui32_to_extF80.c │ │ ├── ui32_to_extF80M.c │ │ ├── ui32_to_f128.c │ │ ├── ui32_to_f128M.c │ │ ├── ui32_to_f16.c │ │ ├── ui32_to_f32.c │ │ ├── ui32_to_f64.c │ │ ├── ui64_to_extF80.c │ │ ├── ui64_to_extF80M.c │ │ ├── ui64_to_f128.c │ │ ├── ui64_to_f128M.c │ │ ├── ui64_to_f16.c │ │ ├── ui64_to_f32.c │ │ └── ui64_to_f64.c ├── sqlite │ ├── .gitignore │ ├── configure.js │ ├── sqlite3.c │ └── sqlite3.h ├── ucdn │ ├── .gitignore │ └── configure.js ├── utf8.h ├── utf8 │ ├── checked.h │ ├── core.h │ ├── cpp11.h │ ├── cpp17.h │ └── unchecked.h ├── v8 │ ├── .gitignore │ ├── README │ ├── build-fixes.patch │ ├── configure.js │ ├── copytargetlibs.bat │ └── windows-build-fixes.patch └── zlib │ ├── .gitignore │ ├── README │ ├── adler32.c │ ├── compress.c │ ├── configure.js │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── examples ├── .gitignore ├── ExampleGame.cpp ├── ExampleGame.hpp ├── configure.js ├── general.hpp └── quad.cpp ├── graphics ├── Adapter.hpp ├── AttributeBinding.hpp ├── AttributeLayout.cpp ├── AttributeLayout.hpp ├── AttributeLayoutElement.cpp ├── AttributeLayoutElement.hpp ├── AttributeLayoutSlot.cpp ├── AttributeLayoutSlot.hpp ├── BlendState.cpp ├── BlendState.hpp ├── BmpImage.cpp ├── BmpImage.hpp ├── Context.cpp ├── Context.hpp ├── D3DBlobFile.cpp ├── D3DBlobFile.hpp ├── DataType.cpp ├── DataType.hpp ├── DepthStencilBuffer.hpp ├── DepthStencilState.cpp ├── DepthStencilState.hpp ├── Device.cpp ├── Device.hpp ├── Dx11AttributeBinding.cpp ├── Dx11AttributeBinding.hpp ├── Dx11BlendState.cpp ├── Dx11BlendState.hpp ├── Dx11CompiledShader.cpp ├── Dx11CompiledShader.hpp ├── Dx11Context.cpp ├── Dx11Context.hpp ├── Dx11DepthStencilBuffer.cpp ├── Dx11DepthStencilBuffer.hpp ├── Dx11DepthStencilState.cpp ├── Dx11DepthStencilState.hpp ├── Dx11Device.cpp ├── Dx11Device.hpp ├── Dx11FrameBuffer.cpp ├── Dx11FrameBuffer.hpp ├── Dx11IndexBuffer.cpp ├── Dx11IndexBuffer.hpp ├── Dx11PixelShader.cpp ├── Dx11PixelShader.hpp ├── Dx11Presenter.cpp ├── Dx11Presenter.hpp ├── Dx11RenderBuffer.cpp ├── Dx11RenderBuffer.hpp ├── Dx11SamplerState.cpp ├── Dx11SamplerState.hpp ├── Dx11ShaderCompiler.cpp ├── Dx11ShaderCompiler.hpp ├── Dx11ShaderResources.cpp ├── Dx11ShaderResources.hpp ├── Dx11SwapChainPresenter.cpp ├── Dx11SwapChainPresenter.hpp ├── Dx11System.cpp ├── Dx11System.hpp ├── Dx11Texture.cpp ├── Dx11Texture.hpp ├── Dx11UniformBuffer.cpp ├── Dx11UniformBuffer.hpp ├── Dx11VertexBuffer.cpp ├── Dx11VertexBuffer.hpp ├── Dx11VertexShader.cpp ├── Dx11VertexShader.hpp ├── DxgiAdapter.cpp ├── DxgiAdapter.hpp ├── DxgiMonitor.cpp ├── DxgiMonitor.hpp ├── DxgiMonitorMode.cpp ├── DxgiMonitorMode.hpp ├── EditableGeometry.hpp ├── EmsAdapter.cpp ├── EmsAdapter.hpp ├── EmsMonitor.cpp ├── EmsMonitor.hpp ├── EmsPresenter.cpp ├── EmsPresenter.hpp ├── FrameBuffer.cpp ├── FrameBuffer.hpp ├── GlAttributeBinding.cpp ├── GlAttributeBinding.hpp ├── GlBlendState.cpp ├── GlBlendState.hpp ├── GlContext.cpp ├── GlContext.hpp ├── GlDepthStencilBuffer.cpp ├── GlDepthStencilBuffer.hpp ├── GlDepthStencilState.cpp ├── GlDepthStencilState.hpp ├── GlDevice.cpp ├── GlDevice.hpp ├── GlFrameBuffer.cpp ├── GlFrameBuffer.hpp ├── GlIndexBuffer.cpp ├── GlIndexBuffer.hpp ├── GlInternalProgram.cpp ├── GlInternalProgram.hpp ├── GlInternalProgramCache.cpp ├── GlInternalProgramCache.hpp ├── GlInternalTexture.cpp ├── GlInternalTexture.hpp ├── GlPixelShader.cpp ├── GlPixelShader.hpp ├── GlPresenter.cpp ├── GlPresenter.hpp ├── GlRenderBuffer.cpp ├── GlRenderBuffer.hpp ├── GlSamplerState.cpp ├── GlSamplerState.hpp ├── GlShaderBindings.cpp ├── GlShaderBindings.hpp ├── GlShaderCompiler.cpp ├── GlShaderCompiler.hpp ├── GlSystem.cpp ├── GlSystem.hpp ├── GlTexture.cpp ├── GlTexture.hpp ├── GlUniformBuffer.cpp ├── GlUniformBuffer.hpp ├── GlVertexBuffer.cpp ├── GlVertexBuffer.hpp ├── GlVertexShader.cpp ├── GlVertexShader.hpp ├── GlslSource.cpp ├── GlslSource.hpp ├── Hlsl11Source.cpp ├── Hlsl11Source.hpp ├── ImageLoader.hpp ├── IndexBuffer.cpp ├── IndexBuffer.hpp ├── LayoutDataType.hpp ├── Mesh.cpp ├── Mesh.hpp ├── Monitor.hpp ├── MonitorMode.hpp ├── PixelFormat.cpp ├── PixelFormat.hpp ├── PixelShader.hpp ├── PngImageLoader.cpp ├── PngImageLoader.hpp ├── Presenter.hpp ├── RawMesh.cpp ├── RawMesh.hpp ├── RawTextureData.cpp ├── RawTextureData.hpp ├── RenderBuffer.hpp ├── RenderStage.cpp ├── RenderStage.hpp ├── SamplerSettings.cpp ├── SamplerSettings.hpp ├── SamplerState.hpp ├── SdlAdapter.cpp ├── SdlAdapter.hpp ├── SdlMonitor.cpp ├── SdlMonitor.hpp ├── SdlMonitorMode.cpp ├── SdlMonitorMode.hpp ├── SdlPresenter.cpp ├── SdlPresenter.hpp ├── ShaderCache.cpp ├── ShaderCache.hpp ├── ShaderCompiler.hpp ├── ShaderData.cpp ├── ShaderData.h ├── ShaderSource.hpp ├── System.hpp ├── SystemSettings.hpp ├── Texture.hpp ├── TextureManager.cpp ├── TextureManager.hpp ├── TgaImageLoader.cpp ├── TgaImageLoader.hpp ├── UniformBuffer.cpp ├── UniformBuffer.hpp ├── UniversalImageLoader.cpp ├── UniversalImageLoader.hpp ├── VertexBuffer.cpp ├── VertexBuffer.hpp ├── VertexLayout.cpp ├── VertexLayout.hpp ├── VertexLayoutElement.cpp ├── VertexLayoutElement.hpp ├── VertexShader.hpp ├── WglPresenter.cpp ├── WglPresenter.hpp ├── Win32Adapter.cpp ├── Win32Adapter.hpp ├── Win32Monitor.cpp ├── Win32Monitor.hpp ├── Win32MonitorMode.cpp ├── Win32MonitorMode.hpp ├── adapters_test.cpp ├── d3d11.hpp ├── gl.txt ├── graphics.hpp ├── opengl.hpp └── shaders │ ├── ActionNode.cpp │ ├── ActionNode.hpp │ ├── AttributeNode.cpp │ ├── AttributeNode.hpp │ ├── CastNode.cpp │ ├── CastNode.hpp │ ├── DualFragmentNode.cpp │ ├── DualFragmentNode.hpp │ ├── Expression.cpp │ ├── Expression.hpp │ ├── FloatConstNode.cpp │ ├── FloatConstNode.hpp │ ├── FragmentNode.cpp │ ├── FragmentNode.hpp │ ├── GlslGenerator.cpp │ ├── GlslGenerator.hpp │ ├── GlslGeneratorInstance.cpp │ ├── GlslGeneratorInstance.hpp │ ├── GlslVersion.hpp │ ├── Hlsl11Generator.cpp │ ├── Hlsl11Generator.hpp │ ├── Hlsl11GeneratorInstance.cpp │ ├── Hlsl11GeneratorInstance.hpp │ ├── IndexUniformArrayNode.cpp │ ├── IndexUniformArrayNode.hpp │ ├── Instancer.cpp │ ├── Instancer.hpp │ ├── IntConstNode.cpp │ ├── IntConstNode.hpp │ ├── Interpolant.hpp │ ├── Interpolant.ipp │ ├── InterpolateNode.cpp │ ├── InterpolateNode.hpp │ ├── Node.hpp │ ├── OperationNode.cpp │ ├── OperationNode.hpp │ ├── ReadUniformNode.cpp │ ├── ReadUniformNode.hpp │ ├── SampleNode.cpp │ ├── SampleNode.hpp │ ├── Sampler.cpp │ ├── Sampler.hpp │ ├── Sampler.ipp │ ├── SamplerNode.cpp │ ├── SamplerNode.hpp │ ├── SequenceNode.cpp │ ├── SequenceNode.hpp │ ├── ShaderGenerator.hpp │ ├── ShaderType.hpp │ ├── SlGeneratorInstance.cpp │ ├── SlGeneratorInstance.hpp │ ├── SwizzleNode.cpp │ ├── SwizzleNode.hpp │ ├── TransformedNode.cpp │ ├── TransformedNode.hpp │ ├── Type.hpp │ ├── Uniform.hpp │ ├── Uniform.ipp │ ├── UniformArray.hpp │ ├── UniformArray.ipp │ ├── UniformGroup.cpp │ ├── UniformGroup.hpp │ ├── UniformNode.cpp │ ├── UniformNode.hpp │ ├── Value.hpp │ ├── Value.ipp │ ├── ValueNode.hpp │ ├── functions.hpp │ ├── ideas.txt │ └── shaders.hpp ├── gui ├── Button.cpp ├── Button.hpp ├── Canvas.cpp ├── Canvas.hpp ├── ContainerElement.cpp ├── ContainerElement.hpp ├── ContentContainer.cpp ├── ContentContainer.hpp ├── Element.cpp ├── Element.hpp ├── Font.cpp ├── Font.hpp ├── FontEngine.hpp ├── FontFace.hpp ├── FontGlyphs.cpp ├── FontGlyphs.hpp ├── FontShape.hpp ├── FreeContainer.cpp ├── FreeContainer.hpp ├── FtEngine.cpp ├── FtEngine.hpp ├── FtFontFace.cpp ├── FtFontFace.hpp ├── GrCanvas.cpp ├── GrCanvas.hpp ├── GrFontGlyphs.cpp ├── GrFontGlyphs.hpp ├── HbFontShape.cpp ├── HbFontShape.hpp ├── Label.cpp ├── Label.hpp ├── Notifications.hpp ├── Notificator.hpp ├── README.txt ├── SwCanvas.cpp ├── SwCanvas.hpp ├── SwFontGlyphs.cpp ├── SwFontGlyphs.hpp ├── TextBox.cpp ├── TextBox.hpp ├── Visualizer.cpp ├── Visualizer.hpp ├── Visuals.hpp ├── Window.cpp ├── Window.hpp ├── ft.hpp ├── gui.hpp ├── hb.hpp ├── testft.cpp └── types.hpp ├── inanity-base-meta.ipp ├── inanity-base.hpp ├── inanity-bullet.hpp ├── inanity-compress-meta.ipp ├── inanity-compress.hpp ├── inanity-crypto.hpp ├── inanity-data-meta.ipp ├── inanity-data.hpp ├── inanity-graphics-meta.ipp ├── inanity-graphics.hpp ├── inanity-gui.hpp ├── inanity-input.hpp ├── inanity-lua.hpp ├── inanity-math-script.ipp ├── inanity-math.hpp ├── inanity-physics-meta.ipp ├── inanity-physics.hpp ├── inanity-platform.hpp ├── inanity-script.hpp ├── inanity-shaders.hpp ├── inanity-sqlitefs.hpp ├── input ├── Controller.cpp ├── Controller.hpp ├── CoreManager.cpp ├── CoreManager.hpp ├── Event.cpp ├── Event.hpp ├── Frame.cpp ├── Frame.hpp ├── Key.hpp ├── Manager.cpp ├── Manager.hpp ├── Mux.cpp ├── Mux.hpp ├── Processor.cpp ├── Processor.hpp ├── SdlManager.cpp ├── SdlManager.hpp ├── State.hpp ├── Win32Manager.cpp ├── Win32Manager.hpp ├── Win32RawManager.cpp ├── Win32RawManager.hpp ├── Win32WmManager.cpp ├── Win32WmManager.hpp └── input.hpp ├── math ├── EmsHardFloat.cpp ├── EmsHardFloat.hpp ├── HardFloat.cpp ├── HardFloat.hpp ├── basic.hpp ├── eigen.hpp ├── geometry.hpp ├── math.hpp └── script.ipp ├── meta ├── Callable.hpp ├── Callable.ipp ├── ClassBase.hpp ├── ClassBase.ipp ├── Tuple.hpp ├── decl.hpp ├── impl.hpp └── meta.hpp ├── net ├── AsioBaseTcpSocket.hpp ├── AsioBaseTcpSocket.ipp ├── AsioInternalUdpSocket.cpp ├── AsioInternalUdpSocket.hpp ├── AsioService.cpp ├── AsioService.hpp ├── AsioTcpListener.cpp ├── AsioTcpListener.hpp ├── AsioTcpSocket.cpp ├── AsioTcpSocket.hpp ├── AsioTlsTcpSocket.cpp ├── AsioTlsTcpSocket.hpp ├── AsioUdpListener.cpp ├── AsioUdpListener.hpp ├── AsioUdpSocket.cpp ├── AsioUdpSocket.hpp ├── EmsService.cpp ├── EmsService.hpp ├── EmsTcpSocket.cpp ├── EmsTcpSocket.hpp ├── Fcgi.cpp ├── Fcgi.hpp ├── HttpClient.cpp ├── HttpClient.hpp ├── HttpStream.cpp ├── HttpStream.hpp ├── Service.cpp ├── Service.hpp ├── TcpListener.hpp ├── TcpSocket.cpp ├── TcpSocket.hpp ├── UdpListener.hpp ├── UdpPacket.hpp ├── UdpSocket.hpp ├── asio.cpp ├── asio.hpp ├── net.hpp ├── test-chat-tcp.cpp ├── test-chat-udp.cpp ├── test-http-client.cpp └── uv.hpp ├── physics ├── BtCharacter.cpp ├── BtCharacter.hpp ├── BtRigidBody.cpp ├── BtRigidBody.hpp ├── BtShape.cpp ├── BtShape.hpp ├── BtWorld.cpp ├── BtWorld.hpp ├── Character.cpp ├── Character.hpp ├── RigidBody.cpp ├── RigidBody.hpp ├── Shape.cpp ├── Shape.hpp ├── World.hpp ├── bt.hpp └── physics.hpp ├── platform ├── CoreWindow.cpp ├── CoreWindow.hpp ├── DllCache.cpp ├── DllCache.hpp ├── DllFunction.hpp ├── DllFunction.ipp ├── EmsWindow.cpp ├── EmsWindow.hpp ├── FileSystem.hpp ├── Game.cpp ├── Game.hpp ├── NpapiPlugin.cpp ├── NpapiPlugin.hpp ├── NpapiPluginInstance.cpp ├── NpapiPluginInstance.hpp ├── NpapiPresenter.cpp ├── NpapiPresenter.hpp ├── PosixFileSystem.cpp ├── PosixFileSystem.hpp ├── Sdl.cpp ├── Sdl.hpp ├── SdlWindow.cpp ├── SdlWindow.hpp ├── Win32FileSystem.cpp ├── Win32FileSystem.hpp ├── Win32Handle.cpp ├── Win32Handle.hpp ├── Win32Window.cpp ├── Win32Window.hpp ├── Window.cpp ├── Window.hpp ├── npapi.hpp ├── platform.hpp └── windows.hpp ├── ptr.hpp ├── script ├── Any.hpp ├── Function.hpp ├── State.hpp ├── convert.hpp ├── impl.hpp ├── lua │ ├── Any.cpp │ ├── Any.hpp │ ├── Function.cpp │ ├── Function.hpp │ ├── MetaProvider.cpp │ ├── MetaProvider.hpp │ ├── MetaProvider.ipp │ ├── README │ ├── State.cpp │ ├── State.hpp │ ├── impl.ipp │ ├── lua.hpp │ ├── lualib.hpp │ ├── stuff.cpp │ ├── stuff.hpp │ ├── test.cpp │ ├── test.lua │ ├── thunks.hpp │ ├── thunks.ipp │ ├── userdata.hpp │ ├── values.hpp │ └── values.ipp ├── mono │ ├── Any.cpp │ ├── Any.hpp │ ├── Assembly.cpp │ ├── Assembly.hpp │ ├── BaseAssemblyGenerator.cpp │ ├── BaseAssemblyGenerator.hpp │ ├── ClassBase.cpp │ ├── ClassBase.hpp │ ├── MetaProvider.cpp │ ├── MetaProvider.hpp │ ├── MetaProvider.ipp │ ├── State.cpp │ ├── State.hpp │ ├── generator │ │ ├── .gitignore │ │ ├── generator.sln │ │ ├── libgen │ │ │ ├── AssemblyMeta.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── libgen.csproj │ │ └── test │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── test.csproj │ ├── helpers.hpp │ ├── helpers.ipp │ ├── impl.ipp │ ├── interop.cpp │ ├── interop.hpp │ ├── interop.ipp │ ├── mono.hpp │ ├── test.cpp │ ├── thunks.hpp │ ├── thunks.ipp │ ├── values.hpp │ └── values.ipp ├── np │ ├── Any.cpp │ ├── Any.hpp │ ├── ClassBase.cpp │ ├── ClassBase.hpp │ ├── MetaProvider.cpp │ ├── MetaProvider.hpp │ ├── MetaProvider.ipp │ ├── Namespace.cpp │ ├── Namespace.hpp │ ├── State.cpp │ ├── State.hpp │ ├── impl.ipp │ ├── np.hpp │ ├── thunks.hpp │ ├── thunks.ipp │ ├── values.hpp │ ├── values.ipp │ ├── wrappers.cpp │ └── wrappers.hpp ├── script.hpp └── v8 │ ├── Any.cpp │ ├── Any.hpp │ ├── Function.cpp │ ├── Function.hpp │ ├── MetaProvider.cpp │ ├── MetaProvider.hpp │ ├── MetaProvider.ipp │ ├── State.cpp │ ├── State.hpp │ ├── impl.ipp │ ├── test.cpp │ ├── test.js │ ├── thunks.hpp │ ├── thunks.ipp │ ├── v8.hpp │ ├── v8lib.hpp │ ├── values.hpp │ └── values.ipp └── zlib.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/.gitmodules -------------------------------------------------------------------------------- /ChunkPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/ChunkPool.cpp -------------------------------------------------------------------------------- /ChunkPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/ChunkPool.hpp -------------------------------------------------------------------------------- /ComPointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/ComPointer.hpp -------------------------------------------------------------------------------- /CriticalCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/CriticalCode.cpp -------------------------------------------------------------------------------- /CriticalCode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/CriticalCode.hpp -------------------------------------------------------------------------------- /CriticalSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/CriticalSection.cpp -------------------------------------------------------------------------------- /CriticalSection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/CriticalSection.hpp -------------------------------------------------------------------------------- /EmptyFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/EmptyFile.cpp -------------------------------------------------------------------------------- /EmptyFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/EmptyFile.hpp -------------------------------------------------------------------------------- /Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Exception.cpp -------------------------------------------------------------------------------- /Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Exception.hpp -------------------------------------------------------------------------------- /File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/File.cpp -------------------------------------------------------------------------------- /File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/File.hpp -------------------------------------------------------------------------------- /FileInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/FileInputStream.cpp -------------------------------------------------------------------------------- /FileInputStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/FileInputStream.hpp -------------------------------------------------------------------------------- /FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/FileSystem.cpp -------------------------------------------------------------------------------- /FileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/FileSystem.hpp -------------------------------------------------------------------------------- /Future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Future.hpp -------------------------------------------------------------------------------- /Handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Handler.hpp -------------------------------------------------------------------------------- /InputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/InputStream.cpp -------------------------------------------------------------------------------- /InputStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/InputStream.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/LICENSE -------------------------------------------------------------------------------- /Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Log.cpp -------------------------------------------------------------------------------- /Log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Log.hpp -------------------------------------------------------------------------------- /ManagedHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/ManagedHeap.cpp -------------------------------------------------------------------------------- /ManagedHeap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/ManagedHeap.hpp -------------------------------------------------------------------------------- /MemoryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/MemoryFile.cpp -------------------------------------------------------------------------------- /MemoryFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/MemoryFile.hpp -------------------------------------------------------------------------------- /MemoryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/MemoryPool.cpp -------------------------------------------------------------------------------- /MemoryPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/MemoryPool.hpp -------------------------------------------------------------------------------- /MemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/MemoryStream.cpp -------------------------------------------------------------------------------- /MemoryStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/MemoryStream.hpp -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/NOTICE.md -------------------------------------------------------------------------------- /Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Object.cpp -------------------------------------------------------------------------------- /Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Object.hpp -------------------------------------------------------------------------------- /ObjectPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/ObjectPool.hpp -------------------------------------------------------------------------------- /OutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/OutputStream.cpp -------------------------------------------------------------------------------- /OutputStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/OutputStream.hpp -------------------------------------------------------------------------------- /PartFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/PartFile.cpp -------------------------------------------------------------------------------- /PartFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/PartFile.hpp -------------------------------------------------------------------------------- /PoolObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/PoolObject.cpp -------------------------------------------------------------------------------- /PoolObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/PoolObject.hpp -------------------------------------------------------------------------------- /Profiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Profiling.cpp -------------------------------------------------------------------------------- /Profiling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Profiling.hpp -------------------------------------------------------------------------------- /PushAllocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/PushAllocator.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/README.md -------------------------------------------------------------------------------- /RefCounted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/RefCounted.hpp -------------------------------------------------------------------------------- /ResourceManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/ResourceManager.hpp -------------------------------------------------------------------------------- /ResourceManager.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/ResourceManager.ipp -------------------------------------------------------------------------------- /Semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Semaphore.cpp -------------------------------------------------------------------------------- /Semaphore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Semaphore.hpp -------------------------------------------------------------------------------- /Storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Storage.cpp -------------------------------------------------------------------------------- /Storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Storage.hpp -------------------------------------------------------------------------------- /StorageInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/StorageInputStream.cpp -------------------------------------------------------------------------------- /StorageInputStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/StorageInputStream.hpp -------------------------------------------------------------------------------- /StreamReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/StreamReader.cpp -------------------------------------------------------------------------------- /StreamReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/StreamReader.hpp -------------------------------------------------------------------------------- /StreamWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/StreamWriter.cpp -------------------------------------------------------------------------------- /StreamWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/StreamWriter.hpp -------------------------------------------------------------------------------- /String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/String.hpp -------------------------------------------------------------------------------- /StringTraveler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/StringTraveler.cpp -------------------------------------------------------------------------------- /StringTraveler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/StringTraveler.hpp -------------------------------------------------------------------------------- /Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Strings.cpp -------------------------------------------------------------------------------- /Strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Strings.hpp -------------------------------------------------------------------------------- /SubFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/SubFileSystem.cpp -------------------------------------------------------------------------------- /SubFileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/SubFileSystem.hpp -------------------------------------------------------------------------------- /Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Thread.cpp -------------------------------------------------------------------------------- /Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Thread.hpp -------------------------------------------------------------------------------- /Ticker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Ticker.cpp -------------------------------------------------------------------------------- /Ticker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Ticker.hpp -------------------------------------------------------------------------------- /Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Time.cpp -------------------------------------------------------------------------------- /Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/Time.hpp -------------------------------------------------------------------------------- /TypedPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/TypedPool.hpp -------------------------------------------------------------------------------- /archi/AssimpConvertor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/AssimpConvertor.cpp -------------------------------------------------------------------------------- /archi/AssimpConvertor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/AssimpConvertor.hpp -------------------------------------------------------------------------------- /archi/BlobCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/BlobCreator.cpp -------------------------------------------------------------------------------- /archi/BlobCreator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/BlobCreator.hpp -------------------------------------------------------------------------------- /archi/EnvConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/EnvConverter.hpp -------------------------------------------------------------------------------- /archi/FontCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/FontCreator.cpp -------------------------------------------------------------------------------- /archi/FontCreator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/FontCreator.hpp -------------------------------------------------------------------------------- /archi/Processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/Processor.hpp -------------------------------------------------------------------------------- /archi/SkeletonConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/SkeletonConverter.cpp -------------------------------------------------------------------------------- /archi/SkeletonConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/SkeletonConverter.hpp -------------------------------------------------------------------------------- /archi/SystemFontCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/SystemFontCreator.cpp -------------------------------------------------------------------------------- /archi/SystemFontCreator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/SystemFontCreator.hpp -------------------------------------------------------------------------------- /archi/Vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/Vertex.cpp -------------------------------------------------------------------------------- /archi/Vertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/Vertex.hpp -------------------------------------------------------------------------------- /archi/WavefrontObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/WavefrontObj.cpp -------------------------------------------------------------------------------- /archi/WavefrontObj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/WavefrontObj.hpp -------------------------------------------------------------------------------- /archi/XafConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/XafConverter.cpp -------------------------------------------------------------------------------- /archi/XafConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/XafConverter.hpp -------------------------------------------------------------------------------- /archi/alphabat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/alphabat.txt -------------------------------------------------------------------------------- /archi/general.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/general.hpp -------------------------------------------------------------------------------- /archi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/archi/main.cpp -------------------------------------------------------------------------------- /audio/AlBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlBuffer.cpp -------------------------------------------------------------------------------- /audio/AlBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlBuffer.hpp -------------------------------------------------------------------------------- /audio/AlBufferedPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlBufferedPlayer.cpp -------------------------------------------------------------------------------- /audio/AlBufferedPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlBufferedPlayer.hpp -------------------------------------------------------------------------------- /audio/AlBufferedSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlBufferedSound.cpp -------------------------------------------------------------------------------- /audio/AlBufferedSound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlBufferedSound.hpp -------------------------------------------------------------------------------- /audio/AlDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlDevice.cpp -------------------------------------------------------------------------------- /audio/AlDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlDevice.hpp -------------------------------------------------------------------------------- /audio/AlPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlPlayer.cpp -------------------------------------------------------------------------------- /audio/AlPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlPlayer.hpp -------------------------------------------------------------------------------- /audio/AlStreamedPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlStreamedPlayer.cpp -------------------------------------------------------------------------------- /audio/AlStreamedPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlStreamedPlayer.hpp -------------------------------------------------------------------------------- /audio/AlStreamedSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlStreamedSound.cpp -------------------------------------------------------------------------------- /audio/AlStreamedSound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlStreamedSound.hpp -------------------------------------------------------------------------------- /audio/AlSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlSystem.cpp -------------------------------------------------------------------------------- /audio/AlSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/AlSystem.hpp -------------------------------------------------------------------------------- /audio/Device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/Device.hpp -------------------------------------------------------------------------------- /audio/Format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/Format.hpp -------------------------------------------------------------------------------- /audio/OggVorbisSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/OggVorbisSource.cpp -------------------------------------------------------------------------------- /audio/OggVorbisSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/OggVorbisSource.hpp -------------------------------------------------------------------------------- /audio/OggVorbisStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/OggVorbisStream.cpp -------------------------------------------------------------------------------- /audio/OggVorbisStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/OggVorbisStream.hpp -------------------------------------------------------------------------------- /audio/Player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/Player.hpp -------------------------------------------------------------------------------- /audio/Player3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/Player3D.hpp -------------------------------------------------------------------------------- /audio/SdlDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/SdlDevice.cpp -------------------------------------------------------------------------------- /audio/SdlDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/SdlDevice.hpp -------------------------------------------------------------------------------- /audio/SdlPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/SdlPlayer.cpp -------------------------------------------------------------------------------- /audio/SdlPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/SdlPlayer.hpp -------------------------------------------------------------------------------- /audio/SdlSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/SdlSound.cpp -------------------------------------------------------------------------------- /audio/SdlSound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/SdlSound.hpp -------------------------------------------------------------------------------- /audio/SdlSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/SdlSystem.cpp -------------------------------------------------------------------------------- /audio/SdlSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/SdlSystem.hpp -------------------------------------------------------------------------------- /audio/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/Sound.cpp -------------------------------------------------------------------------------- /audio/Sound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/Sound.hpp -------------------------------------------------------------------------------- /audio/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/Source.cpp -------------------------------------------------------------------------------- /audio/Source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/Source.hpp -------------------------------------------------------------------------------- /audio/System.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/System.hpp -------------------------------------------------------------------------------- /audio/WavSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/WavSource.cpp -------------------------------------------------------------------------------- /audio/WavSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/WavSource.hpp -------------------------------------------------------------------------------- /audio/XaBufferedPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaBufferedPlayer.cpp -------------------------------------------------------------------------------- /audio/XaBufferedPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaBufferedPlayer.hpp -------------------------------------------------------------------------------- /audio/XaBufferedSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaBufferedSound.cpp -------------------------------------------------------------------------------- /audio/XaBufferedSound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaBufferedSound.hpp -------------------------------------------------------------------------------- /audio/XaDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaDevice.cpp -------------------------------------------------------------------------------- /audio/XaDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaDevice.hpp -------------------------------------------------------------------------------- /audio/XaPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaPlayer.cpp -------------------------------------------------------------------------------- /audio/XaPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaPlayer.hpp -------------------------------------------------------------------------------- /audio/XaStreamedPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaStreamedPlayer.cpp -------------------------------------------------------------------------------- /audio/XaStreamedPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaStreamedPlayer.hpp -------------------------------------------------------------------------------- /audio/XaStreamedSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaStreamedSound.cpp -------------------------------------------------------------------------------- /audio/XaStreamedSound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaStreamedSound.hpp -------------------------------------------------------------------------------- /audio/XaSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaSystem.cpp -------------------------------------------------------------------------------- /audio/XaSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/XaSystem.hpp -------------------------------------------------------------------------------- /audio/al.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/al.hpp -------------------------------------------------------------------------------- /audio/audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/audio.hpp -------------------------------------------------------------------------------- /audio/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/test.cpp -------------------------------------------------------------------------------- /audio/xaudio2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/audio/xaudio2.hpp -------------------------------------------------------------------------------- /config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/config.hpp -------------------------------------------------------------------------------- /config/alloca.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/config/alloca.hpp -------------------------------------------------------------------------------- /configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/configure.js -------------------------------------------------------------------------------- /crypto/HashAlgorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/crypto/HashAlgorithm.hpp -------------------------------------------------------------------------------- /crypto/HashStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/crypto/HashStream.cpp -------------------------------------------------------------------------------- /crypto/HashStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/crypto/HashStream.hpp -------------------------------------------------------------------------------- /crypto/RandomAlgorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/crypto/RandomAlgorithm.hpp -------------------------------------------------------------------------------- /crypto/StreamHasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/crypto/StreamHasher.cpp -------------------------------------------------------------------------------- /crypto/StreamHasher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/crypto/StreamHasher.hpp -------------------------------------------------------------------------------- /crypto/StreamSigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/crypto/StreamSigner.cpp -------------------------------------------------------------------------------- /crypto/StreamSigner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/crypto/StreamSigner.hpp -------------------------------------------------------------------------------- /crypto/WhirlpoolStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/crypto/WhirlpoolStream.cpp -------------------------------------------------------------------------------- /crypto/WhirlpoolStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/crypto/WhirlpoolStream.hpp -------------------------------------------------------------------------------- /crypto/crypto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/crypto/crypto.hpp -------------------------------------------------------------------------------- /data/Base64OutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/Base64OutputStream.cpp -------------------------------------------------------------------------------- /data/Base64OutputStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/Base64OutputStream.hpp -------------------------------------------------------------------------------- /data/BlobFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/BlobFileSystem.cpp -------------------------------------------------------------------------------- /data/BlobFileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/BlobFileSystem.hpp -------------------------------------------------------------------------------- /data/BufferedFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/BufferedFileSystem.cpp -------------------------------------------------------------------------------- /data/BufferedFileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/BufferedFileSystem.hpp -------------------------------------------------------------------------------- /data/DeflateStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/DeflateStream.cpp -------------------------------------------------------------------------------- /data/DeflateStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/DeflateStream.hpp -------------------------------------------------------------------------------- /data/FilterFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/FilterFileSystem.cpp -------------------------------------------------------------------------------- /data/FilterFileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/FilterFileSystem.hpp -------------------------------------------------------------------------------- /data/InflateStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/InflateStream.cpp -------------------------------------------------------------------------------- /data/InflateStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/InflateStream.hpp -------------------------------------------------------------------------------- /data/Lz4CompressStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/Lz4CompressStream.cpp -------------------------------------------------------------------------------- /data/Lz4CompressStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/Lz4CompressStream.hpp -------------------------------------------------------------------------------- /data/Out2InStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/Out2InStream.cpp -------------------------------------------------------------------------------- /data/Out2InStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/Out2InStream.hpp -------------------------------------------------------------------------------- /data/SQLiteFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/SQLiteFileSystem.cpp -------------------------------------------------------------------------------- /data/SQLiteFileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/SQLiteFileSystem.hpp -------------------------------------------------------------------------------- /data/TempFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/TempFileSystem.cpp -------------------------------------------------------------------------------- /data/TempFileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/TempFileSystem.hpp -------------------------------------------------------------------------------- /data/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/data.hpp -------------------------------------------------------------------------------- /data/sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/sqlite.cpp -------------------------------------------------------------------------------- /data/sqlite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/data/sqlite.hpp -------------------------------------------------------------------------------- /deps/assimp/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/assimp/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/assimp/configure.js -------------------------------------------------------------------------------- /deps/botan/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/botan/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/botan/configure.js -------------------------------------------------------------------------------- /deps/botan/configure.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/botan/configure.js.in -------------------------------------------------------------------------------- /deps/botan/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/botan/prepare.sh -------------------------------------------------------------------------------- /deps/bullet/.gitignore: -------------------------------------------------------------------------------- 1 | debug 2 | release 3 | -------------------------------------------------------------------------------- /deps/bullet/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/configure.js -------------------------------------------------------------------------------- /deps/bullet/repo/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/AUTHORS -------------------------------------------------------------------------------- /deps/bullet/repo/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/COPYING -------------------------------------------------------------------------------- /deps/bullet/repo/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/ChangeLog -------------------------------------------------------------------------------- /deps/bullet/repo/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/Doxyfile -------------------------------------------------------------------------------- /deps/bullet/repo/Extras/CDTestFramework/AntTweakBar/src/TwPrecomp.cpp: -------------------------------------------------------------------------------- 1 | #include "TwPrecomp.h" 2 | -------------------------------------------------------------------------------- /deps/bullet/repo/Extras/CDTestFramework/License.txt.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/bullet/repo/GLUT32.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/GLUT32.DLL -------------------------------------------------------------------------------- /deps/bullet/repo/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/INSTALL -------------------------------------------------------------------------------- /deps/bullet/repo/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/NEWS -------------------------------------------------------------------------------- /deps/bullet/repo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/README -------------------------------------------------------------------------------- /deps/bullet/repo/UnitTests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS( cppunit BulletUnitTests) 3 | -------------------------------------------------------------------------------- /deps/bullet/repo/VERSION: -------------------------------------------------------------------------------- 1 | 2.82 2 | -------------------------------------------------------------------------------- /deps/bullet/repo/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/autogen.sh -------------------------------------------------------------------------------- /deps/bullet/repo/build/vs2005.bat: -------------------------------------------------------------------------------- 1 | 2 | premake4 vs2005 3 | 4 | pause -------------------------------------------------------------------------------- /deps/bullet/repo/build/vs2010.bat: -------------------------------------------------------------------------------- 1 | 2 | premake4 vs2010 3 | 4 | pause -------------------------------------------------------------------------------- /deps/bullet/repo/file.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/file.obj -------------------------------------------------------------------------------- /deps/bullet/repo/glut64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/glut64.dll -------------------------------------------------------------------------------- /deps/bullet/repo/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/install-sh -------------------------------------------------------------------------------- /deps/bullet/repo/jenga.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/jenga.dae -------------------------------------------------------------------------------- /deps/bullet/repo/test1.oec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/bullet/repo/test1.oec -------------------------------------------------------------------------------- /deps/discord-rpc/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/fcgi/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/fcgi/LICENSE.TERMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/LICENSE.TERMS -------------------------------------------------------------------------------- /deps/fcgi/README.inanity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/README.inanity -------------------------------------------------------------------------------- /deps/fcgi/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/configure.js -------------------------------------------------------------------------------- /deps/fcgi/fastcgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/fastcgi.h -------------------------------------------------------------------------------- /deps/fcgi/fcgi_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/fcgi_config.h -------------------------------------------------------------------------------- /deps/fcgi/fcgi_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/fcgi_stdio.c -------------------------------------------------------------------------------- /deps/fcgi/fcgi_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/fcgi_stdio.h -------------------------------------------------------------------------------- /deps/fcgi/fcgiapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/fcgiapp.c -------------------------------------------------------------------------------- /deps/fcgi/fcgiapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/fcgiapp.h -------------------------------------------------------------------------------- /deps/fcgi/fcgimisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/fcgimisc.h -------------------------------------------------------------------------------- /deps/fcgi/fcgio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/fcgio.cpp -------------------------------------------------------------------------------- /deps/fcgi/fcgio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/fcgio.h -------------------------------------------------------------------------------- /deps/fcgi/fcgios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/fcgios.h -------------------------------------------------------------------------------- /deps/fcgi/os_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/os_unix.c -------------------------------------------------------------------------------- /deps/fcgi/os_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/fcgi/os_win32.c -------------------------------------------------------------------------------- /deps/freetype/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/freetype/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/freetype/configure.js -------------------------------------------------------------------------------- /deps/glew/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/glew/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/LICENSE.txt -------------------------------------------------------------------------------- /deps/glew/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/Makefile -------------------------------------------------------------------------------- /deps/glew/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/README.txt -------------------------------------------------------------------------------- /deps/glew/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/TODO.txt -------------------------------------------------------------------------------- /deps/glew/auto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/auto/Makefile -------------------------------------------------------------------------------- /deps/glew/auto/bin/make.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/auto/bin/make.pl -------------------------------------------------------------------------------- /deps/glew/auto/blacklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/auto/blacklist -------------------------------------------------------------------------------- /deps/glew/auto/custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/auto/custom.txt -------------------------------------------------------------------------------- /deps/glew/auto/doc/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/auto/doc/log.html -------------------------------------------------------------------------------- /deps/glew/auto/extensions/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/glew/auto/src/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/auto/src/glew.rc -------------------------------------------------------------------------------- /deps/glew/build/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/build/glew.rc -------------------------------------------------------------------------------- /deps/glew/build/glewinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/build/glewinfo.rc -------------------------------------------------------------------------------- /deps/glew/config/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/config/version -------------------------------------------------------------------------------- /deps/glew/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/configure.js -------------------------------------------------------------------------------- /deps/glew/doc/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/advanced.html -------------------------------------------------------------------------------- /deps/glew/doc/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/basic.html -------------------------------------------------------------------------------- /deps/glew/doc/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/build.html -------------------------------------------------------------------------------- /deps/glew/doc/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/credits.html -------------------------------------------------------------------------------- /deps/glew/doc/glew.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/glew.css -------------------------------------------------------------------------------- /deps/glew/doc/glew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/glew.html -------------------------------------------------------------------------------- /deps/glew/doc/glew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/glew.png -------------------------------------------------------------------------------- /deps/glew/doc/glew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/glew.txt -------------------------------------------------------------------------------- /deps/glew/doc/glxew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/glxew.html -------------------------------------------------------------------------------- /deps/glew/doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/gpl.txt -------------------------------------------------------------------------------- /deps/glew/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/index.html -------------------------------------------------------------------------------- /deps/glew/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/install.html -------------------------------------------------------------------------------- /deps/glew/doc/khronos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/khronos.txt -------------------------------------------------------------------------------- /deps/glew/doc/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/log.html -------------------------------------------------------------------------------- /deps/glew/doc/mesa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/mesa.txt -------------------------------------------------------------------------------- /deps/glew/doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/new.png -------------------------------------------------------------------------------- /deps/glew/doc/ogl_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/ogl_sm.jpg -------------------------------------------------------------------------------- /deps/glew/doc/wglew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/doc/wglew.html -------------------------------------------------------------------------------- /deps/glew/glew.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/glew.pc.in -------------------------------------------------------------------------------- /deps/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/include/GL/glew.h -------------------------------------------------------------------------------- /deps/glew/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/src/glew.c -------------------------------------------------------------------------------- /deps/glew/src/glewinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/src/glewinfo.c -------------------------------------------------------------------------------- /deps/glew/src/visualinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/glew/src/visualinfo.c -------------------------------------------------------------------------------- /deps/harfbuzz/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/harfbuzz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/harfbuzz/README -------------------------------------------------------------------------------- /deps/harfbuzz/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/harfbuzz/configure.js -------------------------------------------------------------------------------- /deps/http-parser/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/icu/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/icu/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/icu/configure.js -------------------------------------------------------------------------------- /deps/icu/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/icu/repo/LICENSE -------------------------------------------------------------------------------- /deps/icu/repo/icu4c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/icu/repo/icu4c.css -------------------------------------------------------------------------------- /deps/icu/repo/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/icu/repo/license.html -------------------------------------------------------------------------------- /deps/icu/repo/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/icu/repo/readme.html -------------------------------------------------------------------------------- /deps/icu/repo/source/extra/uconv/samples/utf8/hangul.txt: -------------------------------------------------------------------------------- 1 | 도서관 2 | 한국 3 | -------------------------------------------------------------------------------- /deps/icu/repo/source/extra/uconv/samples/utf8/hania.txt: -------------------------------------------------------------------------------- 1 | 圖書館 2 | 韓國 -------------------------------------------------------------------------------- /deps/icu/repo/source/extra/uconv/sources.txt: -------------------------------------------------------------------------------- 1 | uconv.cpp 2 | uwmsg.c 3 | -------------------------------------------------------------------------------- /deps/icu/repo/source/stubdata/sources.txt: -------------------------------------------------------------------------------- 1 | stubdata.cpp 2 | -------------------------------------------------------------------------------- /deps/icu/repo/source/test/testdata/importtest.bin: -------------------------------------------------------------------------------- 1 |  2 |  -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/genbrk/sources.txt: -------------------------------------------------------------------------------- 1 | genbrk.cpp 2 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/genccode/sources.txt: -------------------------------------------------------------------------------- 1 | genccode.c 2 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/gencfu/sources.txt: -------------------------------------------------------------------------------- 1 | gencfu.cpp 2 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/gencmn/sources.txt: -------------------------------------------------------------------------------- 1 | gencmn.c 2 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/gencnval/sources.txt: -------------------------------------------------------------------------------- 1 | gencnval.c 2 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/gendict/sources.txt: -------------------------------------------------------------------------------- 1 | gendict.cpp 2 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/gensprep/sources.txt: -------------------------------------------------------------------------------- 1 | gensprep.c 2 | store.c 3 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/gentest/sources.txt: -------------------------------------------------------------------------------- 1 | genres32.c 2 | gentest.c 3 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/icuinfo/plugin_sources.txt: -------------------------------------------------------------------------------- 1 | testplug.c 2 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/icuinfo/sources.txt: -------------------------------------------------------------------------------- 1 | icuinfo.cpp 2 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/icupkg/sources.txt: -------------------------------------------------------------------------------- 1 | icupkg.cpp 2 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/icuswap/sources.txt: -------------------------------------------------------------------------------- 1 | icuswap.cpp 2 | -------------------------------------------------------------------------------- /deps/icu/repo/source/tools/pkgdata/sources.txt: -------------------------------------------------------------------------------- 1 | pkgdata.cpp 2 | pkgtypes.c 3 | -------------------------------------------------------------------------------- /deps/libogg/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/libogg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/AUTHORS -------------------------------------------------------------------------------- /deps/libogg/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/CHANGES -------------------------------------------------------------------------------- /deps/libogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/COPYING -------------------------------------------------------------------------------- /deps/libogg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/Makefile.am -------------------------------------------------------------------------------- /deps/libogg/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/Makefile.in -------------------------------------------------------------------------------- /deps/libogg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/README -------------------------------------------------------------------------------- /deps/libogg/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/aclocal.m4 -------------------------------------------------------------------------------- /deps/libogg/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/compile -------------------------------------------------------------------------------- /deps/libogg/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/config.guess -------------------------------------------------------------------------------- /deps/libogg/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/config.h.in -------------------------------------------------------------------------------- /deps/libogg/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/config.sub -------------------------------------------------------------------------------- /deps/libogg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/configure -------------------------------------------------------------------------------- /deps/libogg/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/configure.in -------------------------------------------------------------------------------- /deps/libogg/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/configure.js -------------------------------------------------------------------------------- /deps/libogg/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/depcomp -------------------------------------------------------------------------------- /deps/libogg/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/doc/Makefile.am -------------------------------------------------------------------------------- /deps/libogg/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/doc/Makefile.in -------------------------------------------------------------------------------- /deps/libogg/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/doc/index.html -------------------------------------------------------------------------------- /deps/libogg/doc/packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/doc/packets.png -------------------------------------------------------------------------------- /deps/libogg/doc/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/doc/pages.png -------------------------------------------------------------------------------- /deps/libogg/doc/rfc3533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/doc/rfc3533.txt -------------------------------------------------------------------------------- /deps/libogg/doc/rfc5334.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/doc/rfc5334.txt -------------------------------------------------------------------------------- /deps/libogg/doc/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/doc/stream.png -------------------------------------------------------------------------------- /deps/libogg/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/install-sh -------------------------------------------------------------------------------- /deps/libogg/libogg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/libogg.spec -------------------------------------------------------------------------------- /deps/libogg/libogg.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/libogg.spec.in -------------------------------------------------------------------------------- /deps/libogg/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/ltmain.sh -------------------------------------------------------------------------------- /deps/libogg/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/missing -------------------------------------------------------------------------------- /deps/libogg/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/ogg.m4 -------------------------------------------------------------------------------- /deps/libogg/ogg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/ogg.pc.in -------------------------------------------------------------------------------- /deps/libogg/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/src/Makefile.am -------------------------------------------------------------------------------- /deps/libogg/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/src/Makefile.in -------------------------------------------------------------------------------- /deps/libogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/src/bitwise.c -------------------------------------------------------------------------------- /deps/libogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/src/framing.c -------------------------------------------------------------------------------- /deps/libogg/win32/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libogg/win32/ogg.def -------------------------------------------------------------------------------- /deps/libpng/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/libpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/ANNOUNCE -------------------------------------------------------------------------------- /deps/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/CHANGES -------------------------------------------------------------------------------- /deps/libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/INSTALL -------------------------------------------------------------------------------- /deps/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/LICENSE -------------------------------------------------------------------------------- /deps/libpng/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/Makefile.am -------------------------------------------------------------------------------- /deps/libpng/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/Makefile.in -------------------------------------------------------------------------------- /deps/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/README -------------------------------------------------------------------------------- /deps/libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/TODO -------------------------------------------------------------------------------- /deps/libpng/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/aclocal.m4 -------------------------------------------------------------------------------- /deps/libpng/arm/arm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/arm/arm_init.c -------------------------------------------------------------------------------- /deps/libpng/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/autogen.sh -------------------------------------------------------------------------------- /deps/libpng/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/compile -------------------------------------------------------------------------------- /deps/libpng/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/config.guess -------------------------------------------------------------------------------- /deps/libpng/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/config.h.in -------------------------------------------------------------------------------- /deps/libpng/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/config.sub -------------------------------------------------------------------------------- /deps/libpng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/configure -------------------------------------------------------------------------------- /deps/libpng/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/configure.ac -------------------------------------------------------------------------------- /deps/libpng/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/configure.js -------------------------------------------------------------------------------- /deps/libpng/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/depcomp -------------------------------------------------------------------------------- /deps/libpng/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/example.c -------------------------------------------------------------------------------- /deps/libpng/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/install-sh -------------------------------------------------------------------------------- /deps/libpng/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/libpng.3 -------------------------------------------------------------------------------- /deps/libpng/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/libpng.pc.in -------------------------------------------------------------------------------- /deps/libpng/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/libpngpf.3 -------------------------------------------------------------------------------- /deps/libpng/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/ltmain.sh -------------------------------------------------------------------------------- /deps/libpng/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/missing -------------------------------------------------------------------------------- /deps/libpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/png.5 -------------------------------------------------------------------------------- /deps/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/png.c -------------------------------------------------------------------------------- /deps/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/png.h -------------------------------------------------------------------------------- /deps/libpng/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngbar.jpg -------------------------------------------------------------------------------- /deps/libpng/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngbar.png -------------------------------------------------------------------------------- /deps/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngconf.h -------------------------------------------------------------------------------- /deps/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngdebug.h -------------------------------------------------------------------------------- /deps/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngerror.c -------------------------------------------------------------------------------- /deps/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngget.c -------------------------------------------------------------------------------- /deps/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pnginfo.h -------------------------------------------------------------------------------- /deps/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pnglibconf.h -------------------------------------------------------------------------------- /deps/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngmem.c -------------------------------------------------------------------------------- /deps/libpng/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngnow.png -------------------------------------------------------------------------------- /deps/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngpread.c -------------------------------------------------------------------------------- /deps/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngpriv.h -------------------------------------------------------------------------------- /deps/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngread.c -------------------------------------------------------------------------------- /deps/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngrio.c -------------------------------------------------------------------------------- /deps/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngrtran.c -------------------------------------------------------------------------------- /deps/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngrutil.c -------------------------------------------------------------------------------- /deps/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngset.c -------------------------------------------------------------------------------- /deps/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngstruct.h -------------------------------------------------------------------------------- /deps/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngtest.c -------------------------------------------------------------------------------- /deps/libpng/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngtest.png -------------------------------------------------------------------------------- /deps/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngtrans.c -------------------------------------------------------------------------------- /deps/libpng/pngusr.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngusr.dfa -------------------------------------------------------------------------------- /deps/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngwio.c -------------------------------------------------------------------------------- /deps/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngwrite.c -------------------------------------------------------------------------------- /deps/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngwtran.c -------------------------------------------------------------------------------- /deps/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/pngwutil.c -------------------------------------------------------------------------------- /deps/libpng/scripts/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/scripts/def.c -------------------------------------------------------------------------------- /deps/libpng/scripts/dfn.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/scripts/dfn.awk -------------------------------------------------------------------------------- /deps/libpng/scripts/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/scripts/sym.c -------------------------------------------------------------------------------- /deps/libpng/scripts/vers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/scripts/vers.c -------------------------------------------------------------------------------- /deps/libpng/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/test-driver -------------------------------------------------------------------------------- /deps/libpng/tests/pngstest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/tests/pngstest -------------------------------------------------------------------------------- /deps/libpng/tests/pngtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libpng/tests/pngtest -------------------------------------------------------------------------------- /deps/libpng/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /deps/libpng/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-sbit 3 | -------------------------------------------------------------------------------- /deps/libpng/tests/pngvalid-gamma-threshold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-threshold 3 | -------------------------------------------------------------------------------- /deps/libpng/tests/pngvalid-gamma-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-transform 3 | -------------------------------------------------------------------------------- /deps/libpng/tests/pngvalid-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --transform 3 | -------------------------------------------------------------------------------- /deps/libsquish/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/libsquish/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/ChangeLog -------------------------------------------------------------------------------- /deps/libsquish/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/README -------------------------------------------------------------------------------- /deps/libsquish/alpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/alpha.cpp -------------------------------------------------------------------------------- /deps/libsquish/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/alpha.h -------------------------------------------------------------------------------- /deps/libsquish/clusterfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/clusterfit.h -------------------------------------------------------------------------------- /deps/libsquish/colourfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/colourfit.h -------------------------------------------------------------------------------- /deps/libsquish/colourset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/colourset.h -------------------------------------------------------------------------------- /deps/libsquish/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/config.h -------------------------------------------------------------------------------- /deps/libsquish/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/configure.js -------------------------------------------------------------------------------- /deps/libsquish/maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/maths.cpp -------------------------------------------------------------------------------- /deps/libsquish/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/maths.h -------------------------------------------------------------------------------- /deps/libsquish/rangefit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/rangefit.cpp -------------------------------------------------------------------------------- /deps/libsquish/rangefit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/rangefit.h -------------------------------------------------------------------------------- /deps/libsquish/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/simd.h -------------------------------------------------------------------------------- /deps/libsquish/simd_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/simd_float.h -------------------------------------------------------------------------------- /deps/libsquish/simd_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/simd_sse.h -------------------------------------------------------------------------------- /deps/libsquish/simd_ve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/simd_ve.h -------------------------------------------------------------------------------- /deps/libsquish/squish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/squish.cpp -------------------------------------------------------------------------------- /deps/libsquish/squish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libsquish/squish.h -------------------------------------------------------------------------------- /deps/libvorbis/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/libvorbis/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/AUTHORS -------------------------------------------------------------------------------- /deps/libvorbis/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/CHANGES -------------------------------------------------------------------------------- /deps/libvorbis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/COPYING -------------------------------------------------------------------------------- /deps/libvorbis/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/Makefile.am -------------------------------------------------------------------------------- /deps/libvorbis/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/Makefile.in -------------------------------------------------------------------------------- /deps/libvorbis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/README -------------------------------------------------------------------------------- /deps/libvorbis/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/aclocal.m4 -------------------------------------------------------------------------------- /deps/libvorbis/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/autogen.sh -------------------------------------------------------------------------------- /deps/libvorbis/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/compile -------------------------------------------------------------------------------- /deps/libvorbis/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/config.guess -------------------------------------------------------------------------------- /deps/libvorbis/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/config.h.in -------------------------------------------------------------------------------- /deps/libvorbis/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/config.sub -------------------------------------------------------------------------------- /deps/libvorbis/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/configure -------------------------------------------------------------------------------- /deps/libvorbis/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/configure.ac -------------------------------------------------------------------------------- /deps/libvorbis/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/configure.js -------------------------------------------------------------------------------- /deps/libvorbis/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/depcomp -------------------------------------------------------------------------------- /deps/libvorbis/doc/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/doc/wait.png -------------------------------------------------------------------------------- /deps/libvorbis/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/install-sh -------------------------------------------------------------------------------- /deps/libvorbis/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/block.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/floor0.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/floor1.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/info.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/lookup.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/lookup.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/lpc.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/lpc.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/lsp.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/lsp.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/mdct.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/mdct.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/misc.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/os.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/psy.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/psy.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/res0.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/scales.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/tone.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/window.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/lib/window.h -------------------------------------------------------------------------------- /deps/libvorbis/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/ltmain.sh -------------------------------------------------------------------------------- /deps/libvorbis/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/m4/ogg.m4 -------------------------------------------------------------------------------- /deps/libvorbis/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/m4/pkg.m4 -------------------------------------------------------------------------------- /deps/libvorbis/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/missing -------------------------------------------------------------------------------- /deps/libvorbis/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/test/test.c -------------------------------------------------------------------------------- /deps/libvorbis/test/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/test/util.c -------------------------------------------------------------------------------- /deps/libvorbis/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/test/util.h -------------------------------------------------------------------------------- /deps/libvorbis/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/todo.txt -------------------------------------------------------------------------------- /deps/libvorbis/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/vorbis.m4 -------------------------------------------------------------------------------- /deps/libvorbis/vorbis.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/vorbis.pc.in -------------------------------------------------------------------------------- /deps/libvorbis/vq/16.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/vq/16.vqs -------------------------------------------------------------------------------- /deps/libvorbis/vq/16u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/vq/16u.vqs -------------------------------------------------------------------------------- /deps/libvorbis/vq/44c-1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/vq/44c-1.vqs -------------------------------------------------------------------------------- /deps/libvorbis/vq/44c0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/vq/44c0.vqs -------------------------------------------------------------------------------- /deps/libvorbis/vq/44c1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/vq/44c1.vqs -------------------------------------------------------------------------------- /deps/libvorbis/vq/44c2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/vq/44c2.vqs -------------------------------------------------------------------------------- /deps/libvorbis/vq/8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/vq/8.vqs -------------------------------------------------------------------------------- /deps/libvorbis/vq/8u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/libvorbis/vq/8u.vqs -------------------------------------------------------------------------------- /deps/lua/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/Makefile -------------------------------------------------------------------------------- /deps/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/README -------------------------------------------------------------------------------- /deps/lua/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/configure.js -------------------------------------------------------------------------------- /deps/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/doc/logo.gif -------------------------------------------------------------------------------- /deps/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/doc/lua.1 -------------------------------------------------------------------------------- /deps/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/doc/lua.css -------------------------------------------------------------------------------- /deps/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/doc/luac.1 -------------------------------------------------------------------------------- /deps/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/doc/manual.css -------------------------------------------------------------------------------- /deps/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/doc/manual.html -------------------------------------------------------------------------------- /deps/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/doc/readme.html -------------------------------------------------------------------------------- /deps/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/Makefile -------------------------------------------------------------------------------- /deps/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lapi.c -------------------------------------------------------------------------------- /deps/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lapi.h -------------------------------------------------------------------------------- /deps/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lauxlib.c -------------------------------------------------------------------------------- /deps/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lauxlib.h -------------------------------------------------------------------------------- /deps/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lbaselib.c -------------------------------------------------------------------------------- /deps/lua/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lbitlib.c -------------------------------------------------------------------------------- /deps/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lcode.c -------------------------------------------------------------------------------- /deps/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lcode.h -------------------------------------------------------------------------------- /deps/lua/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lcorolib.c -------------------------------------------------------------------------------- /deps/lua/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lctype.c -------------------------------------------------------------------------------- /deps/lua/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lctype.h -------------------------------------------------------------------------------- /deps/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/ldblib.c -------------------------------------------------------------------------------- /deps/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/ldebug.c -------------------------------------------------------------------------------- /deps/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/ldebug.h -------------------------------------------------------------------------------- /deps/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/ldo.c -------------------------------------------------------------------------------- /deps/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/ldo.h -------------------------------------------------------------------------------- /deps/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/ldump.c -------------------------------------------------------------------------------- /deps/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lfunc.c -------------------------------------------------------------------------------- /deps/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lfunc.h -------------------------------------------------------------------------------- /deps/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lgc.c -------------------------------------------------------------------------------- /deps/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lgc.h -------------------------------------------------------------------------------- /deps/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/linit.c -------------------------------------------------------------------------------- /deps/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/liolib.c -------------------------------------------------------------------------------- /deps/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/llex.c -------------------------------------------------------------------------------- /deps/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/llex.h -------------------------------------------------------------------------------- /deps/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/llimits.h -------------------------------------------------------------------------------- /deps/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lmathlib.c -------------------------------------------------------------------------------- /deps/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lmem.c -------------------------------------------------------------------------------- /deps/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lmem.h -------------------------------------------------------------------------------- /deps/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/loadlib.c -------------------------------------------------------------------------------- /deps/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lobject.c -------------------------------------------------------------------------------- /deps/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lobject.h -------------------------------------------------------------------------------- /deps/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lopcodes.c -------------------------------------------------------------------------------- /deps/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lopcodes.h -------------------------------------------------------------------------------- /deps/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/loslib.c -------------------------------------------------------------------------------- /deps/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lparser.c -------------------------------------------------------------------------------- /deps/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lparser.h -------------------------------------------------------------------------------- /deps/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lstate.c -------------------------------------------------------------------------------- /deps/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lstate.h -------------------------------------------------------------------------------- /deps/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lstring.c -------------------------------------------------------------------------------- /deps/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lstring.h -------------------------------------------------------------------------------- /deps/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lstrlib.c -------------------------------------------------------------------------------- /deps/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/ltable.c -------------------------------------------------------------------------------- /deps/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/ltable.h -------------------------------------------------------------------------------- /deps/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/ltablib.c -------------------------------------------------------------------------------- /deps/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/ltm.c -------------------------------------------------------------------------------- /deps/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/ltm.h -------------------------------------------------------------------------------- /deps/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lua.c -------------------------------------------------------------------------------- /deps/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lua.h -------------------------------------------------------------------------------- /deps/lua/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lua.hpp -------------------------------------------------------------------------------- /deps/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/luac.c -------------------------------------------------------------------------------- /deps/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/luaconf.h -------------------------------------------------------------------------------- /deps/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lualib.h -------------------------------------------------------------------------------- /deps/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lundump.c -------------------------------------------------------------------------------- /deps/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lundump.h -------------------------------------------------------------------------------- /deps/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lvm.c -------------------------------------------------------------------------------- /deps/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lvm.h -------------------------------------------------------------------------------- /deps/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lzio.c -------------------------------------------------------------------------------- /deps/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lua/src/lzio.h -------------------------------------------------------------------------------- /deps/lz4/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/lz4/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lz4/configure.js -------------------------------------------------------------------------------- /deps/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lz4/lz4.c -------------------------------------------------------------------------------- /deps/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/lz4/lz4.h -------------------------------------------------------------------------------- /deps/npapi/npapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/npapi/npapi.h -------------------------------------------------------------------------------- /deps/npapi/npfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/npapi/npfunctions.h -------------------------------------------------------------------------------- /deps/npapi/npruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/npapi/npruntime.h -------------------------------------------------------------------------------- /deps/npapi/nptypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/npapi/nptypes.h -------------------------------------------------------------------------------- /deps/softfloat/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/sqlite/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/sqlite/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/sqlite/configure.js -------------------------------------------------------------------------------- /deps/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/sqlite/sqlite3.c -------------------------------------------------------------------------------- /deps/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/sqlite/sqlite3.h -------------------------------------------------------------------------------- /deps/ucdn/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/ucdn/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/ucdn/configure.js -------------------------------------------------------------------------------- /deps/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/utf8.h -------------------------------------------------------------------------------- /deps/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/utf8/checked.h -------------------------------------------------------------------------------- /deps/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/utf8/core.h -------------------------------------------------------------------------------- /deps/utf8/cpp11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/utf8/cpp11.h -------------------------------------------------------------------------------- /deps/utf8/cpp17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/utf8/cpp17.h -------------------------------------------------------------------------------- /deps/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/utf8/unchecked.h -------------------------------------------------------------------------------- /deps/v8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/v8/.gitignore -------------------------------------------------------------------------------- /deps/v8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/v8/README -------------------------------------------------------------------------------- /deps/v8/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/v8/configure.js -------------------------------------------------------------------------------- /deps/zlib/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | -------------------------------------------------------------------------------- /deps/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/README -------------------------------------------------------------------------------- /deps/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/adler32.c -------------------------------------------------------------------------------- /deps/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/compress.c -------------------------------------------------------------------------------- /deps/zlib/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/configure.js -------------------------------------------------------------------------------- /deps/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/crc32.c -------------------------------------------------------------------------------- /deps/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/crc32.h -------------------------------------------------------------------------------- /deps/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/deflate.c -------------------------------------------------------------------------------- /deps/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/deflate.h -------------------------------------------------------------------------------- /deps/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/gzclose.c -------------------------------------------------------------------------------- /deps/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/gzguts.h -------------------------------------------------------------------------------- /deps/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/gzlib.c -------------------------------------------------------------------------------- /deps/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/gzread.c -------------------------------------------------------------------------------- /deps/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/gzwrite.c -------------------------------------------------------------------------------- /deps/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/infback.c -------------------------------------------------------------------------------- /deps/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/inffast.c -------------------------------------------------------------------------------- /deps/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/inffast.h -------------------------------------------------------------------------------- /deps/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/inffixed.h -------------------------------------------------------------------------------- /deps/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/inflate.c -------------------------------------------------------------------------------- /deps/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/inflate.h -------------------------------------------------------------------------------- /deps/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/inftrees.c -------------------------------------------------------------------------------- /deps/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/inftrees.h -------------------------------------------------------------------------------- /deps/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/trees.c -------------------------------------------------------------------------------- /deps/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/trees.h -------------------------------------------------------------------------------- /deps/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/uncompr.c -------------------------------------------------------------------------------- /deps/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/zconf.h -------------------------------------------------------------------------------- /deps/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/zlib.h -------------------------------------------------------------------------------- /deps/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/zutil.c -------------------------------------------------------------------------------- /deps/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/deps/zlib/zutil.h -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | /debug 2 | /release 3 | /shaders 4 | -------------------------------------------------------------------------------- /examples/ExampleGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/examples/ExampleGame.cpp -------------------------------------------------------------------------------- /examples/ExampleGame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/examples/ExampleGame.hpp -------------------------------------------------------------------------------- /examples/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/examples/configure.js -------------------------------------------------------------------------------- /examples/general.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/examples/general.hpp -------------------------------------------------------------------------------- /examples/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/examples/quad.cpp -------------------------------------------------------------------------------- /graphics/Adapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Adapter.hpp -------------------------------------------------------------------------------- /graphics/BlendState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/BlendState.cpp -------------------------------------------------------------------------------- /graphics/BlendState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/BlendState.hpp -------------------------------------------------------------------------------- /graphics/BmpImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/BmpImage.cpp -------------------------------------------------------------------------------- /graphics/BmpImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/BmpImage.hpp -------------------------------------------------------------------------------- /graphics/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Context.cpp -------------------------------------------------------------------------------- /graphics/Context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Context.hpp -------------------------------------------------------------------------------- /graphics/D3DBlobFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/D3DBlobFile.cpp -------------------------------------------------------------------------------- /graphics/D3DBlobFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/D3DBlobFile.hpp -------------------------------------------------------------------------------- /graphics/DataType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/DataType.cpp -------------------------------------------------------------------------------- /graphics/DataType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/DataType.hpp -------------------------------------------------------------------------------- /graphics/Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Device.cpp -------------------------------------------------------------------------------- /graphics/Device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Device.hpp -------------------------------------------------------------------------------- /graphics/Dx11Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Dx11Context.cpp -------------------------------------------------------------------------------- /graphics/Dx11Context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Dx11Context.hpp -------------------------------------------------------------------------------- /graphics/Dx11Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Dx11Device.cpp -------------------------------------------------------------------------------- /graphics/Dx11Device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Dx11Device.hpp -------------------------------------------------------------------------------- /graphics/Dx11System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Dx11System.cpp -------------------------------------------------------------------------------- /graphics/Dx11System.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Dx11System.hpp -------------------------------------------------------------------------------- /graphics/Dx11Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Dx11Texture.cpp -------------------------------------------------------------------------------- /graphics/Dx11Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Dx11Texture.hpp -------------------------------------------------------------------------------- /graphics/DxgiAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/DxgiAdapter.cpp -------------------------------------------------------------------------------- /graphics/DxgiAdapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/DxgiAdapter.hpp -------------------------------------------------------------------------------- /graphics/DxgiMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/DxgiMonitor.cpp -------------------------------------------------------------------------------- /graphics/DxgiMonitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/DxgiMonitor.hpp -------------------------------------------------------------------------------- /graphics/EmsAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/EmsAdapter.cpp -------------------------------------------------------------------------------- /graphics/EmsAdapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/EmsAdapter.hpp -------------------------------------------------------------------------------- /graphics/EmsMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/EmsMonitor.cpp -------------------------------------------------------------------------------- /graphics/EmsMonitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/EmsMonitor.hpp -------------------------------------------------------------------------------- /graphics/FrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/FrameBuffer.cpp -------------------------------------------------------------------------------- /graphics/FrameBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/FrameBuffer.hpp -------------------------------------------------------------------------------- /graphics/GlContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlContext.cpp -------------------------------------------------------------------------------- /graphics/GlContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlContext.hpp -------------------------------------------------------------------------------- /graphics/GlDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlDevice.cpp -------------------------------------------------------------------------------- /graphics/GlDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlDevice.hpp -------------------------------------------------------------------------------- /graphics/GlPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlPresenter.cpp -------------------------------------------------------------------------------- /graphics/GlPresenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlPresenter.hpp -------------------------------------------------------------------------------- /graphics/GlSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlSystem.cpp -------------------------------------------------------------------------------- /graphics/GlSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlSystem.hpp -------------------------------------------------------------------------------- /graphics/GlTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlTexture.cpp -------------------------------------------------------------------------------- /graphics/GlTexture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlTexture.hpp -------------------------------------------------------------------------------- /graphics/GlslSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlslSource.cpp -------------------------------------------------------------------------------- /graphics/GlslSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/GlslSource.hpp -------------------------------------------------------------------------------- /graphics/ImageLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/ImageLoader.hpp -------------------------------------------------------------------------------- /graphics/IndexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/IndexBuffer.cpp -------------------------------------------------------------------------------- /graphics/IndexBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/IndexBuffer.hpp -------------------------------------------------------------------------------- /graphics/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Mesh.cpp -------------------------------------------------------------------------------- /graphics/Mesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Mesh.hpp -------------------------------------------------------------------------------- /graphics/Monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Monitor.hpp -------------------------------------------------------------------------------- /graphics/MonitorMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/MonitorMode.hpp -------------------------------------------------------------------------------- /graphics/PixelFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/PixelFormat.cpp -------------------------------------------------------------------------------- /graphics/PixelFormat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/PixelFormat.hpp -------------------------------------------------------------------------------- /graphics/PixelShader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/PixelShader.hpp -------------------------------------------------------------------------------- /graphics/Presenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Presenter.hpp -------------------------------------------------------------------------------- /graphics/RawMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/RawMesh.cpp -------------------------------------------------------------------------------- /graphics/RawMesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/RawMesh.hpp -------------------------------------------------------------------------------- /graphics/RenderStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/RenderStage.cpp -------------------------------------------------------------------------------- /graphics/RenderStage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/RenderStage.hpp -------------------------------------------------------------------------------- /graphics/SdlAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/SdlAdapter.cpp -------------------------------------------------------------------------------- /graphics/SdlAdapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/SdlAdapter.hpp -------------------------------------------------------------------------------- /graphics/SdlMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/SdlMonitor.cpp -------------------------------------------------------------------------------- /graphics/SdlMonitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/SdlMonitor.hpp -------------------------------------------------------------------------------- /graphics/ShaderCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/ShaderCache.cpp -------------------------------------------------------------------------------- /graphics/ShaderCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/ShaderCache.hpp -------------------------------------------------------------------------------- /graphics/ShaderData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/ShaderData.cpp -------------------------------------------------------------------------------- /graphics/ShaderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/ShaderData.h -------------------------------------------------------------------------------- /graphics/System.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/System.hpp -------------------------------------------------------------------------------- /graphics/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/Texture.hpp -------------------------------------------------------------------------------- /graphics/d3d11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/d3d11.hpp -------------------------------------------------------------------------------- /graphics/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/gl.txt -------------------------------------------------------------------------------- /graphics/graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/graphics.hpp -------------------------------------------------------------------------------- /graphics/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/graphics/opengl.hpp -------------------------------------------------------------------------------- /gui/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Button.cpp -------------------------------------------------------------------------------- /gui/Button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Button.hpp -------------------------------------------------------------------------------- /gui/Canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Canvas.cpp -------------------------------------------------------------------------------- /gui/Canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Canvas.hpp -------------------------------------------------------------------------------- /gui/ContainerElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/ContainerElement.cpp -------------------------------------------------------------------------------- /gui/ContainerElement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/ContainerElement.hpp -------------------------------------------------------------------------------- /gui/ContentContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/ContentContainer.cpp -------------------------------------------------------------------------------- /gui/ContentContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/ContentContainer.hpp -------------------------------------------------------------------------------- /gui/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Element.cpp -------------------------------------------------------------------------------- /gui/Element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Element.hpp -------------------------------------------------------------------------------- /gui/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Font.cpp -------------------------------------------------------------------------------- /gui/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Font.hpp -------------------------------------------------------------------------------- /gui/FontEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/FontEngine.hpp -------------------------------------------------------------------------------- /gui/FontFace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/FontFace.hpp -------------------------------------------------------------------------------- /gui/FontGlyphs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/FontGlyphs.cpp -------------------------------------------------------------------------------- /gui/FontGlyphs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/FontGlyphs.hpp -------------------------------------------------------------------------------- /gui/FontShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/FontShape.hpp -------------------------------------------------------------------------------- /gui/FreeContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/FreeContainer.cpp -------------------------------------------------------------------------------- /gui/FreeContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/FreeContainer.hpp -------------------------------------------------------------------------------- /gui/FtEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/FtEngine.cpp -------------------------------------------------------------------------------- /gui/FtEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/FtEngine.hpp -------------------------------------------------------------------------------- /gui/FtFontFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/FtFontFace.cpp -------------------------------------------------------------------------------- /gui/FtFontFace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/FtFontFace.hpp -------------------------------------------------------------------------------- /gui/GrCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/GrCanvas.cpp -------------------------------------------------------------------------------- /gui/GrCanvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/GrCanvas.hpp -------------------------------------------------------------------------------- /gui/GrFontGlyphs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/GrFontGlyphs.cpp -------------------------------------------------------------------------------- /gui/GrFontGlyphs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/GrFontGlyphs.hpp -------------------------------------------------------------------------------- /gui/HbFontShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/HbFontShape.cpp -------------------------------------------------------------------------------- /gui/HbFontShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/HbFontShape.hpp -------------------------------------------------------------------------------- /gui/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Label.cpp -------------------------------------------------------------------------------- /gui/Label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Label.hpp -------------------------------------------------------------------------------- /gui/Notifications.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Notifications.hpp -------------------------------------------------------------------------------- /gui/Notificator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Notificator.hpp -------------------------------------------------------------------------------- /gui/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/README.txt -------------------------------------------------------------------------------- /gui/SwCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/SwCanvas.cpp -------------------------------------------------------------------------------- /gui/SwCanvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/SwCanvas.hpp -------------------------------------------------------------------------------- /gui/SwFontGlyphs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/SwFontGlyphs.cpp -------------------------------------------------------------------------------- /gui/SwFontGlyphs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/SwFontGlyphs.hpp -------------------------------------------------------------------------------- /gui/TextBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/TextBox.cpp -------------------------------------------------------------------------------- /gui/TextBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/TextBox.hpp -------------------------------------------------------------------------------- /gui/Visualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Visualizer.cpp -------------------------------------------------------------------------------- /gui/Visualizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Visualizer.hpp -------------------------------------------------------------------------------- /gui/Visuals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Visuals.hpp -------------------------------------------------------------------------------- /gui/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Window.cpp -------------------------------------------------------------------------------- /gui/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/Window.hpp -------------------------------------------------------------------------------- /gui/ft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/ft.hpp -------------------------------------------------------------------------------- /gui/gui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/gui.hpp -------------------------------------------------------------------------------- /gui/hb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/hb.hpp -------------------------------------------------------------------------------- /gui/testft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/testft.cpp -------------------------------------------------------------------------------- /gui/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/gui/types.hpp -------------------------------------------------------------------------------- /inanity-base-meta.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-base-meta.ipp -------------------------------------------------------------------------------- /inanity-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-base.hpp -------------------------------------------------------------------------------- /inanity-bullet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-bullet.hpp -------------------------------------------------------------------------------- /inanity-compress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-compress.hpp -------------------------------------------------------------------------------- /inanity-crypto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-crypto.hpp -------------------------------------------------------------------------------- /inanity-data-meta.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-data-meta.ipp -------------------------------------------------------------------------------- /inanity-data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-data.hpp -------------------------------------------------------------------------------- /inanity-graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-graphics.hpp -------------------------------------------------------------------------------- /inanity-gui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-gui.hpp -------------------------------------------------------------------------------- /inanity-input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-input.hpp -------------------------------------------------------------------------------- /inanity-lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-lua.hpp -------------------------------------------------------------------------------- /inanity-math-script.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-math-script.ipp -------------------------------------------------------------------------------- /inanity-math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-math.hpp -------------------------------------------------------------------------------- /inanity-physics-meta.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-physics-meta.ipp -------------------------------------------------------------------------------- /inanity-physics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-physics.hpp -------------------------------------------------------------------------------- /inanity-platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-platform.hpp -------------------------------------------------------------------------------- /inanity-script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-script.hpp -------------------------------------------------------------------------------- /inanity-shaders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-shaders.hpp -------------------------------------------------------------------------------- /inanity-sqlitefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/inanity-sqlitefs.hpp -------------------------------------------------------------------------------- /input/Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Controller.cpp -------------------------------------------------------------------------------- /input/Controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Controller.hpp -------------------------------------------------------------------------------- /input/CoreManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/CoreManager.cpp -------------------------------------------------------------------------------- /input/CoreManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/CoreManager.hpp -------------------------------------------------------------------------------- /input/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Event.cpp -------------------------------------------------------------------------------- /input/Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Event.hpp -------------------------------------------------------------------------------- /input/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Frame.cpp -------------------------------------------------------------------------------- /input/Frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Frame.hpp -------------------------------------------------------------------------------- /input/Key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Key.hpp -------------------------------------------------------------------------------- /input/Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Manager.cpp -------------------------------------------------------------------------------- /input/Manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Manager.hpp -------------------------------------------------------------------------------- /input/Mux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Mux.cpp -------------------------------------------------------------------------------- /input/Mux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Mux.hpp -------------------------------------------------------------------------------- /input/Processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Processor.cpp -------------------------------------------------------------------------------- /input/Processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Processor.hpp -------------------------------------------------------------------------------- /input/SdlManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/SdlManager.cpp -------------------------------------------------------------------------------- /input/SdlManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/SdlManager.hpp -------------------------------------------------------------------------------- /input/State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/State.hpp -------------------------------------------------------------------------------- /input/Win32Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Win32Manager.cpp -------------------------------------------------------------------------------- /input/Win32Manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Win32Manager.hpp -------------------------------------------------------------------------------- /input/Win32WmManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Win32WmManager.cpp -------------------------------------------------------------------------------- /input/Win32WmManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/Win32WmManager.hpp -------------------------------------------------------------------------------- /input/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/input/input.hpp -------------------------------------------------------------------------------- /math/EmsHardFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/math/EmsHardFloat.cpp -------------------------------------------------------------------------------- /math/EmsHardFloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/math/EmsHardFloat.hpp -------------------------------------------------------------------------------- /math/HardFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/math/HardFloat.cpp -------------------------------------------------------------------------------- /math/HardFloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/math/HardFloat.hpp -------------------------------------------------------------------------------- /math/basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/math/basic.hpp -------------------------------------------------------------------------------- /math/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/math/eigen.hpp -------------------------------------------------------------------------------- /math/geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/math/geometry.hpp -------------------------------------------------------------------------------- /math/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/math/math.hpp -------------------------------------------------------------------------------- /math/script.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/math/script.ipp -------------------------------------------------------------------------------- /meta/Callable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/meta/Callable.hpp -------------------------------------------------------------------------------- /meta/Callable.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/meta/Callable.ipp -------------------------------------------------------------------------------- /meta/ClassBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/meta/ClassBase.hpp -------------------------------------------------------------------------------- /meta/ClassBase.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/meta/ClassBase.ipp -------------------------------------------------------------------------------- /meta/Tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/meta/Tuple.hpp -------------------------------------------------------------------------------- /meta/decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/meta/decl.hpp -------------------------------------------------------------------------------- /meta/impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/meta/impl.hpp -------------------------------------------------------------------------------- /meta/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/meta/meta.hpp -------------------------------------------------------------------------------- /net/AsioService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioService.cpp -------------------------------------------------------------------------------- /net/AsioService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioService.hpp -------------------------------------------------------------------------------- /net/AsioTcpListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioTcpListener.cpp -------------------------------------------------------------------------------- /net/AsioTcpListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioTcpListener.hpp -------------------------------------------------------------------------------- /net/AsioTcpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioTcpSocket.cpp -------------------------------------------------------------------------------- /net/AsioTcpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioTcpSocket.hpp -------------------------------------------------------------------------------- /net/AsioTlsTcpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioTlsTcpSocket.cpp -------------------------------------------------------------------------------- /net/AsioTlsTcpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioTlsTcpSocket.hpp -------------------------------------------------------------------------------- /net/AsioUdpListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioUdpListener.cpp -------------------------------------------------------------------------------- /net/AsioUdpListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioUdpListener.hpp -------------------------------------------------------------------------------- /net/AsioUdpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioUdpSocket.cpp -------------------------------------------------------------------------------- /net/AsioUdpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/AsioUdpSocket.hpp -------------------------------------------------------------------------------- /net/EmsService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/EmsService.cpp -------------------------------------------------------------------------------- /net/EmsService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/EmsService.hpp -------------------------------------------------------------------------------- /net/EmsTcpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/EmsTcpSocket.cpp -------------------------------------------------------------------------------- /net/EmsTcpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/EmsTcpSocket.hpp -------------------------------------------------------------------------------- /net/Fcgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/Fcgi.cpp -------------------------------------------------------------------------------- /net/Fcgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/Fcgi.hpp -------------------------------------------------------------------------------- /net/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/HttpClient.cpp -------------------------------------------------------------------------------- /net/HttpClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/HttpClient.hpp -------------------------------------------------------------------------------- /net/HttpStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/HttpStream.cpp -------------------------------------------------------------------------------- /net/HttpStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/HttpStream.hpp -------------------------------------------------------------------------------- /net/Service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/Service.cpp -------------------------------------------------------------------------------- /net/Service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/Service.hpp -------------------------------------------------------------------------------- /net/TcpListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/TcpListener.hpp -------------------------------------------------------------------------------- /net/TcpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/TcpSocket.cpp -------------------------------------------------------------------------------- /net/TcpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/TcpSocket.hpp -------------------------------------------------------------------------------- /net/UdpListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/UdpListener.hpp -------------------------------------------------------------------------------- /net/UdpPacket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/UdpPacket.hpp -------------------------------------------------------------------------------- /net/UdpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/UdpSocket.hpp -------------------------------------------------------------------------------- /net/asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/asio.cpp -------------------------------------------------------------------------------- /net/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/asio.hpp -------------------------------------------------------------------------------- /net/net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/net.hpp -------------------------------------------------------------------------------- /net/test-chat-tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/test-chat-tcp.cpp -------------------------------------------------------------------------------- /net/test-chat-udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/test-chat-udp.cpp -------------------------------------------------------------------------------- /net/test-http-client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/test-http-client.cpp -------------------------------------------------------------------------------- /net/uv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/net/uv.hpp -------------------------------------------------------------------------------- /physics/BtCharacter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/BtCharacter.cpp -------------------------------------------------------------------------------- /physics/BtCharacter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/BtCharacter.hpp -------------------------------------------------------------------------------- /physics/BtRigidBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/BtRigidBody.cpp -------------------------------------------------------------------------------- /physics/BtRigidBody.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/BtRigidBody.hpp -------------------------------------------------------------------------------- /physics/BtShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/BtShape.cpp -------------------------------------------------------------------------------- /physics/BtShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/BtShape.hpp -------------------------------------------------------------------------------- /physics/BtWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/BtWorld.cpp -------------------------------------------------------------------------------- /physics/BtWorld.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/BtWorld.hpp -------------------------------------------------------------------------------- /physics/Character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/Character.cpp -------------------------------------------------------------------------------- /physics/Character.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/Character.hpp -------------------------------------------------------------------------------- /physics/RigidBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/RigidBody.cpp -------------------------------------------------------------------------------- /physics/RigidBody.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/RigidBody.hpp -------------------------------------------------------------------------------- /physics/Shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/Shape.cpp -------------------------------------------------------------------------------- /physics/Shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/Shape.hpp -------------------------------------------------------------------------------- /physics/World.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/World.hpp -------------------------------------------------------------------------------- /physics/bt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/bt.hpp -------------------------------------------------------------------------------- /physics/physics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/physics/physics.hpp -------------------------------------------------------------------------------- /platform/CoreWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/CoreWindow.cpp -------------------------------------------------------------------------------- /platform/CoreWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/CoreWindow.hpp -------------------------------------------------------------------------------- /platform/DllCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/DllCache.cpp -------------------------------------------------------------------------------- /platform/DllCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/DllCache.hpp -------------------------------------------------------------------------------- /platform/DllFunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/DllFunction.hpp -------------------------------------------------------------------------------- /platform/DllFunction.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/DllFunction.ipp -------------------------------------------------------------------------------- /platform/EmsWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/EmsWindow.cpp -------------------------------------------------------------------------------- /platform/EmsWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/EmsWindow.hpp -------------------------------------------------------------------------------- /platform/FileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/FileSystem.hpp -------------------------------------------------------------------------------- /platform/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/Game.cpp -------------------------------------------------------------------------------- /platform/Game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/Game.hpp -------------------------------------------------------------------------------- /platform/NpapiPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/NpapiPlugin.cpp -------------------------------------------------------------------------------- /platform/NpapiPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/NpapiPlugin.hpp -------------------------------------------------------------------------------- /platform/Sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/Sdl.cpp -------------------------------------------------------------------------------- /platform/Sdl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/Sdl.hpp -------------------------------------------------------------------------------- /platform/SdlWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/SdlWindow.cpp -------------------------------------------------------------------------------- /platform/SdlWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/SdlWindow.hpp -------------------------------------------------------------------------------- /platform/Win32Handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/Win32Handle.cpp -------------------------------------------------------------------------------- /platform/Win32Handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/Win32Handle.hpp -------------------------------------------------------------------------------- /platform/Win32Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/Win32Window.cpp -------------------------------------------------------------------------------- /platform/Win32Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/Win32Window.hpp -------------------------------------------------------------------------------- /platform/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/Window.cpp -------------------------------------------------------------------------------- /platform/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/Window.hpp -------------------------------------------------------------------------------- /platform/npapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/npapi.hpp -------------------------------------------------------------------------------- /platform/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/platform.hpp -------------------------------------------------------------------------------- /platform/windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/platform/windows.hpp -------------------------------------------------------------------------------- /ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/ptr.hpp -------------------------------------------------------------------------------- /script/Any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/Any.hpp -------------------------------------------------------------------------------- /script/Function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/Function.hpp -------------------------------------------------------------------------------- /script/State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/State.hpp -------------------------------------------------------------------------------- /script/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/convert.hpp -------------------------------------------------------------------------------- /script/impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/impl.hpp -------------------------------------------------------------------------------- /script/lua/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/Any.cpp -------------------------------------------------------------------------------- /script/lua/Any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/Any.hpp -------------------------------------------------------------------------------- /script/lua/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/Function.cpp -------------------------------------------------------------------------------- /script/lua/Function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/Function.hpp -------------------------------------------------------------------------------- /script/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/README -------------------------------------------------------------------------------- /script/lua/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/State.cpp -------------------------------------------------------------------------------- /script/lua/State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/State.hpp -------------------------------------------------------------------------------- /script/lua/impl.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/impl.ipp -------------------------------------------------------------------------------- /script/lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/lua.hpp -------------------------------------------------------------------------------- /script/lua/lualib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/lualib.hpp -------------------------------------------------------------------------------- /script/lua/stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/stuff.cpp -------------------------------------------------------------------------------- /script/lua/stuff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/stuff.hpp -------------------------------------------------------------------------------- /script/lua/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/test.cpp -------------------------------------------------------------------------------- /script/lua/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/test.lua -------------------------------------------------------------------------------- /script/lua/thunks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/thunks.hpp -------------------------------------------------------------------------------- /script/lua/thunks.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/thunks.ipp -------------------------------------------------------------------------------- /script/lua/userdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/userdata.hpp -------------------------------------------------------------------------------- /script/lua/values.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/values.hpp -------------------------------------------------------------------------------- /script/lua/values.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/lua/values.ipp -------------------------------------------------------------------------------- /script/mono/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/Any.cpp -------------------------------------------------------------------------------- /script/mono/Any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/Any.hpp -------------------------------------------------------------------------------- /script/mono/Assembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/Assembly.cpp -------------------------------------------------------------------------------- /script/mono/Assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/Assembly.hpp -------------------------------------------------------------------------------- /script/mono/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/State.cpp -------------------------------------------------------------------------------- /script/mono/State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/State.hpp -------------------------------------------------------------------------------- /script/mono/generator/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.userprefs 4 | -------------------------------------------------------------------------------- /script/mono/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/helpers.hpp -------------------------------------------------------------------------------- /script/mono/helpers.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/helpers.ipp -------------------------------------------------------------------------------- /script/mono/impl.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/impl.ipp -------------------------------------------------------------------------------- /script/mono/interop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/interop.cpp -------------------------------------------------------------------------------- /script/mono/interop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/interop.hpp -------------------------------------------------------------------------------- /script/mono/interop.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/interop.ipp -------------------------------------------------------------------------------- /script/mono/mono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/mono.hpp -------------------------------------------------------------------------------- /script/mono/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/test.cpp -------------------------------------------------------------------------------- /script/mono/thunks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/thunks.hpp -------------------------------------------------------------------------------- /script/mono/thunks.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/thunks.ipp -------------------------------------------------------------------------------- /script/mono/values.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/values.hpp -------------------------------------------------------------------------------- /script/mono/values.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/mono/values.ipp -------------------------------------------------------------------------------- /script/np/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/Any.cpp -------------------------------------------------------------------------------- /script/np/Any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/Any.hpp -------------------------------------------------------------------------------- /script/np/ClassBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/ClassBase.cpp -------------------------------------------------------------------------------- /script/np/ClassBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/ClassBase.hpp -------------------------------------------------------------------------------- /script/np/Namespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/Namespace.cpp -------------------------------------------------------------------------------- /script/np/Namespace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/Namespace.hpp -------------------------------------------------------------------------------- /script/np/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/State.cpp -------------------------------------------------------------------------------- /script/np/State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/State.hpp -------------------------------------------------------------------------------- /script/np/impl.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/impl.ipp -------------------------------------------------------------------------------- /script/np/np.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/np.hpp -------------------------------------------------------------------------------- /script/np/thunks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/thunks.hpp -------------------------------------------------------------------------------- /script/np/thunks.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/thunks.ipp -------------------------------------------------------------------------------- /script/np/values.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/values.hpp -------------------------------------------------------------------------------- /script/np/values.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/values.ipp -------------------------------------------------------------------------------- /script/np/wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/wrappers.cpp -------------------------------------------------------------------------------- /script/np/wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/np/wrappers.hpp -------------------------------------------------------------------------------- /script/script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/script.hpp -------------------------------------------------------------------------------- /script/v8/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/Any.cpp -------------------------------------------------------------------------------- /script/v8/Any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/Any.hpp -------------------------------------------------------------------------------- /script/v8/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/Function.cpp -------------------------------------------------------------------------------- /script/v8/Function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/Function.hpp -------------------------------------------------------------------------------- /script/v8/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/State.cpp -------------------------------------------------------------------------------- /script/v8/State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/State.hpp -------------------------------------------------------------------------------- /script/v8/impl.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/impl.ipp -------------------------------------------------------------------------------- /script/v8/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/test.cpp -------------------------------------------------------------------------------- /script/v8/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/test.js -------------------------------------------------------------------------------- /script/v8/thunks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/thunks.hpp -------------------------------------------------------------------------------- /script/v8/thunks.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/thunks.ipp -------------------------------------------------------------------------------- /script/v8/v8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/v8.hpp -------------------------------------------------------------------------------- /script/v8/v8lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/v8lib.hpp -------------------------------------------------------------------------------- /script/v8/values.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/values.hpp -------------------------------------------------------------------------------- /script/v8/values.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/script/v8/values.ipp -------------------------------------------------------------------------------- /zlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quyse/inanity/HEAD/zlib.hpp --------------------------------------------------------------------------------