├── .gitignore ├── .gitmodules ├── LICENSE ├── PhantomEngine ├── Assets │ └── Assets │ │ ├── Resources │ │ ├── Scene │ │ │ ├── aili.ogex │ │ │ ├── anim.OGEX │ │ │ ├── c8.OGEX │ │ │ ├── car.ogex │ │ │ ├── hierachy.OGEX │ │ │ └── my.OGEX │ │ └── shaders │ │ │ ├── GfxStruct.glsl │ │ │ ├── Metal │ │ │ ├── GfxStructMetal.h │ │ │ ├── base.metal │ │ │ ├── pbr.frag.metal │ │ │ └── pbr.vert.metal │ │ │ ├── cubefs.shader │ │ │ ├── cubevs.shader │ │ │ ├── frag.shader │ │ │ ├── frag_light.shader │ │ │ ├── shadowMap_frag.shader │ │ │ ├── shadowMap_vert.shader │ │ │ ├── skybox_frag.shader │ │ │ ├── skybox_vert.shader │ │ │ ├── text_ps.shader │ │ │ ├── text_vt.shader │ │ │ ├── vert.shader │ │ │ └── vert_light.shader │ │ └── Textures │ │ ├── b.jpg │ │ ├── back.jpg │ │ ├── bmp.bmp │ │ ├── bottom.jpg │ │ ├── commander8_margaery.jpg │ │ ├── eye.png │ │ ├── front.jpg │ │ ├── left.jpg │ │ ├── len_full.jpg │ │ ├── right.jpg │ │ ├── top.jpg │ │ ├── w.jpg │ │ └── z.jpg ├── CMakeLists.txt ├── Dependencies │ ├── Darwin │ │ ├── include │ │ │ ├── ODDLArray.h │ │ │ ├── ODDLMap.h │ │ │ ├── ODDLString.h │ │ │ ├── ODDLTree.h │ │ │ ├── ODDLTypes.h │ │ │ ├── OpenDDL.h │ │ │ ├── OpenGEX.h │ │ │ ├── freetype │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftadvanc.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftbzip2.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── ftcid.h │ │ │ │ ├── ftcolor.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftfntfmt.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftparams.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ └── tttags.h │ │ │ ├── ft2build.h │ │ │ ├── jconfig.h │ │ │ ├── jerror.h │ │ │ ├── jmorecfg.h │ │ │ └── jpeglib.h │ │ ├── lib │ │ │ ├── cmake │ │ │ │ └── freetype │ │ │ │ │ ├── freetype-config-noconfig.cmake │ │ │ │ │ └── freetype-config.cmake │ │ │ ├── libOpenDDL.a │ │ │ ├── libOpenGEX.a │ │ │ ├── libfreetype.a │ │ │ ├── libjpeg.a │ │ │ └── pkgconfig │ │ │ │ └── freetype2.pc │ │ └── share │ │ │ └── libjpeg │ │ │ └── doc │ │ │ ├── README │ │ │ ├── change.log │ │ │ ├── coderules.txt │ │ │ ├── example.c │ │ │ ├── filelist.txt │ │ │ ├── install.txt │ │ │ ├── libjpeg.txt │ │ │ ├── structure.txt │ │ │ ├── usage.txt │ │ │ └── wizard.txt │ ├── GLFW │ │ ├── include │ │ │ └── GLFW │ │ │ │ ├── glfw3.h │ │ │ │ └── glfw3native.h │ │ ├── lib-mac │ │ │ └── libglfw3.a │ │ └── lib-vc2015 │ │ │ ├── glfw3.dll │ │ │ ├── glfw3.lib │ │ │ └── glfw3dll.lib │ ├── Linux │ │ ├── include │ │ │ ├── ODDLArray.h │ │ │ ├── ODDLMap.h │ │ │ ├── ODDLString.h │ │ │ ├── ODDLTree.h │ │ │ ├── ODDLTypes.h │ │ │ ├── OpenDDL.h │ │ │ └── OpenGEX.h │ │ └── lib │ │ │ ├── libOpenDDL.a │ │ │ └── libOpenGEX.a │ ├── README.txt │ ├── Windows │ │ ├── bin │ │ │ └── jpeg.dll │ │ ├── include │ │ │ ├── ODDLArray.h │ │ │ ├── ODDLMap.h │ │ │ ├── ODDLString.h │ │ │ ├── ODDLTree.h │ │ │ ├── ODDLTypes.h │ │ │ ├── OpenDDL.h │ │ │ ├── OpenGEX.h │ │ │ ├── freetype │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftadvanc.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftbzip2.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── ftcid.h │ │ │ │ ├── ftcolor.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftfntfmt.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftparams.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ └── tttags.h │ │ │ ├── ft2build.h │ │ │ ├── glm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── common.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── _features.hpp │ │ │ │ │ ├── _fixes.hpp │ │ │ │ │ ├── _noise.hpp │ │ │ │ │ ├── _swizzle.hpp │ │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ │ ├── _vectorize.hpp │ │ │ │ │ ├── compute_common.hpp │ │ │ │ │ ├── compute_vector_relational.hpp │ │ │ │ │ ├── func_common.inl │ │ │ │ │ ├── func_common_simd.inl │ │ │ │ │ ├── func_exponential.inl │ │ │ │ │ ├── func_exponential_simd.inl │ │ │ │ │ ├── func_geometric.inl │ │ │ │ │ ├── func_geometric_simd.inl │ │ │ │ │ ├── func_integer.inl │ │ │ │ │ ├── func_integer_simd.inl │ │ │ │ │ ├── func_matrix.inl │ │ │ │ │ ├── func_matrix_simd.inl │ │ │ │ │ ├── func_packing.inl │ │ │ │ │ ├── func_packing_simd.inl │ │ │ │ │ ├── func_trigonometric.inl │ │ │ │ │ ├── func_trigonometric_simd.inl │ │ │ │ │ ├── func_vector_relational.inl │ │ │ │ │ ├── func_vector_relational_simd.inl │ │ │ │ │ ├── glm.cpp │ │ │ │ │ ├── qualifier.hpp │ │ │ │ │ ├── setup.hpp │ │ │ │ │ ├── type_float.hpp │ │ │ │ │ ├── type_half.hpp │ │ │ │ │ ├── type_half.inl │ │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ │ ├── type_mat2x2.inl │ │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ │ ├── type_mat2x3.inl │ │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ │ ├── type_mat2x4.inl │ │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ │ ├── type_mat3x2.inl │ │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ │ ├── type_mat3x3.inl │ │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ │ ├── type_mat3x4.inl │ │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ │ ├── type_mat4x2.inl │ │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ │ ├── type_mat4x3.inl │ │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ │ ├── type_mat4x4.inl │ │ │ │ │ ├── type_mat4x4_simd.inl │ │ │ │ │ ├── type_quat.hpp │ │ │ │ │ ├── type_quat.inl │ │ │ │ │ ├── type_quat_simd.inl │ │ │ │ │ ├── type_vec1.hpp │ │ │ │ │ ├── type_vec1.inl │ │ │ │ │ ├── type_vec2.hpp │ │ │ │ │ ├── type_vec2.inl │ │ │ │ │ ├── type_vec3.hpp │ │ │ │ │ ├── type_vec3.inl │ │ │ │ │ ├── type_vec4.hpp │ │ │ │ │ ├── type_vec4.inl │ │ │ │ │ └── type_vec4_simd.inl │ │ │ │ ├── exponential.hpp │ │ │ │ ├── ext.hpp │ │ │ │ ├── ext │ │ │ │ │ ├── matrix_clip_space.hpp │ │ │ │ │ ├── matrix_clip_space.inl │ │ │ │ │ ├── matrix_common.hpp │ │ │ │ │ ├── matrix_common.inl │ │ │ │ │ ├── matrix_double2x2.hpp │ │ │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ │ │ ├── matrix_double2x3.hpp │ │ │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ │ │ ├── matrix_double2x4.hpp │ │ │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ │ │ ├── matrix_double3x2.hpp │ │ │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ │ │ ├── matrix_double3x3.hpp │ │ │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ │ │ ├── matrix_double3x4.hpp │ │ │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ │ │ ├── matrix_double4x2.hpp │ │ │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ │ │ ├── matrix_double4x3.hpp │ │ │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ │ │ ├── matrix_double4x4.hpp │ │ │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ │ │ ├── matrix_float2x2.hpp │ │ │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ │ │ ├── matrix_float2x3.hpp │ │ │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ │ │ ├── matrix_float2x4.hpp │ │ │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ │ │ ├── matrix_float3x2.hpp │ │ │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ │ │ ├── matrix_float3x3.hpp │ │ │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ │ │ ├── matrix_float3x4.hpp │ │ │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ │ │ ├── matrix_float4x2.hpp │ │ │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ │ │ ├── matrix_float4x3.hpp │ │ │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ │ │ ├── matrix_float4x4.hpp │ │ │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ │ │ ├── matrix_projection.hpp │ │ │ │ │ ├── matrix_projection.inl │ │ │ │ │ ├── matrix_relational.hpp │ │ │ │ │ ├── matrix_relational.inl │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ ├── quaternion_common.hpp │ │ │ │ │ ├── quaternion_common.inl │ │ │ │ │ ├── quaternion_common_simd.inl │ │ │ │ │ ├── quaternion_double.hpp │ │ │ │ │ ├── quaternion_double_precision.hpp │ │ │ │ │ ├── quaternion_exponential.hpp │ │ │ │ │ ├── quaternion_exponential.inl │ │ │ │ │ ├── quaternion_float.hpp │ │ │ │ │ ├── quaternion_float_precision.hpp │ │ │ │ │ ├── quaternion_geometric.hpp │ │ │ │ │ ├── quaternion_geometric.inl │ │ │ │ │ ├── quaternion_relational.hpp │ │ │ │ │ ├── quaternion_relational.inl │ │ │ │ │ ├── quaternion_transform.hpp │ │ │ │ │ ├── quaternion_transform.inl │ │ │ │ │ ├── quaternion_trigonometric.hpp │ │ │ │ │ ├── quaternion_trigonometric.inl │ │ │ │ │ ├── scalar_common.hpp │ │ │ │ │ ├── scalar_common.inl │ │ │ │ │ ├── scalar_constants.hpp │ │ │ │ │ ├── scalar_constants.inl │ │ │ │ │ ├── scalar_int_sized.hpp │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ ├── scalar_uint_sized.hpp │ │ │ │ │ ├── scalar_ulp.hpp │ │ │ │ │ ├── scalar_ulp.inl │ │ │ │ │ ├── vector_bool1.hpp │ │ │ │ │ ├── vector_bool1_precision.hpp │ │ │ │ │ ├── vector_bool2.hpp │ │ │ │ │ ├── vector_bool2_precision.hpp │ │ │ │ │ ├── vector_bool3.hpp │ │ │ │ │ ├── vector_bool3_precision.hpp │ │ │ │ │ ├── vector_bool4.hpp │ │ │ │ │ ├── vector_bool4_precision.hpp │ │ │ │ │ ├── vector_common.hpp │ │ │ │ │ ├── vector_common.inl │ │ │ │ │ ├── vector_double1.hpp │ │ │ │ │ ├── vector_double1_precision.hpp │ │ │ │ │ ├── vector_double2.hpp │ │ │ │ │ ├── vector_double2_precision.hpp │ │ │ │ │ ├── vector_double3.hpp │ │ │ │ │ ├── vector_double3_precision.hpp │ │ │ │ │ ├── vector_double4.hpp │ │ │ │ │ ├── vector_double4_precision.hpp │ │ │ │ │ ├── vector_float1.hpp │ │ │ │ │ ├── vector_float1_precision.hpp │ │ │ │ │ ├── vector_float2.hpp │ │ │ │ │ ├── vector_float2_precision.hpp │ │ │ │ │ ├── vector_float3.hpp │ │ │ │ │ ├── vector_float3_precision.hpp │ │ │ │ │ ├── vector_float4.hpp │ │ │ │ │ ├── vector_float4_precision.hpp │ │ │ │ │ ├── vector_int1.hpp │ │ │ │ │ ├── vector_int1_precision.hpp │ │ │ │ │ ├── vector_int2.hpp │ │ │ │ │ ├── vector_int2_precision.hpp │ │ │ │ │ ├── vector_int3.hpp │ │ │ │ │ ├── vector_int3_precision.hpp │ │ │ │ │ ├── vector_int4.hpp │ │ │ │ │ ├── vector_int4_precision.hpp │ │ │ │ │ ├── vector_relational.hpp │ │ │ │ │ ├── vector_relational.inl │ │ │ │ │ ├── vector_uint1.hpp │ │ │ │ │ ├── vector_uint1_precision.hpp │ │ │ │ │ ├── vector_uint2.hpp │ │ │ │ │ ├── vector_uint2_precision.hpp │ │ │ │ │ ├── vector_uint3.hpp │ │ │ │ │ ├── vector_uint3_precision.hpp │ │ │ │ │ ├── vector_uint4.hpp │ │ │ │ │ ├── vector_uint4_precision.hpp │ │ │ │ │ ├── vector_ulp.hpp │ │ │ │ │ └── vector_ulp.inl │ │ │ │ ├── fwd.hpp │ │ │ │ ├── geometric.hpp │ │ │ │ ├── glm.hpp │ │ │ │ ├── gtc │ │ │ │ │ ├── bitfield.hpp │ │ │ │ │ ├── bitfield.inl │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ ├── color_space.inl │ │ │ │ │ ├── constants.hpp │ │ │ │ │ ├── constants.inl │ │ │ │ │ ├── epsilon.hpp │ │ │ │ │ ├── epsilon.inl │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── integer.inl │ │ │ │ │ ├── matrix_access.hpp │ │ │ │ │ ├── matrix_access.inl │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ │ ├── matrix_inverse.inl │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ ├── noise.hpp │ │ │ │ │ ├── noise.inl │ │ │ │ │ ├── packing.hpp │ │ │ │ │ ├── packing.inl │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ ├── quaternion_simd.inl │ │ │ │ │ ├── random.hpp │ │ │ │ │ ├── random.inl │ │ │ │ │ ├── reciprocal.hpp │ │ │ │ │ ├── reciprocal.inl │ │ │ │ │ ├── round.hpp │ │ │ │ │ ├── round.inl │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ ├── type_precision.hpp │ │ │ │ │ ├── type_precision.inl │ │ │ │ │ ├── type_ptr.hpp │ │ │ │ │ ├── type_ptr.inl │ │ │ │ │ ├── ulp.hpp │ │ │ │ │ ├── ulp.inl │ │ │ │ │ └── vec1.hpp │ │ │ │ ├── gtx │ │ │ │ │ ├── associated_min_max.hpp │ │ │ │ │ ├── associated_min_max.inl │ │ │ │ │ ├── bit.hpp │ │ │ │ │ ├── bit.inl │ │ │ │ │ ├── closest_point.hpp │ │ │ │ │ ├── closest_point.inl │ │ │ │ │ ├── color_encoding.hpp │ │ │ │ │ ├── color_encoding.inl │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ ├── color_space.inl │ │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── common.inl │ │ │ │ │ ├── compatibility.hpp │ │ │ │ │ ├── compatibility.inl │ │ │ │ │ ├── component_wise.hpp │ │ │ │ │ ├── component_wise.inl │ │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ │ ├── dual_quaternion.inl │ │ │ │ │ ├── easing.hpp │ │ │ │ │ ├── easing.inl │ │ │ │ │ ├── euler_angles.hpp │ │ │ │ │ ├── euler_angles.inl │ │ │ │ │ ├── extend.hpp │ │ │ │ │ ├── extend.inl │ │ │ │ │ ├── extended_min_max.hpp │ │ │ │ │ ├── extended_min_max.inl │ │ │ │ │ ├── exterior_product.hpp │ │ │ │ │ ├── exterior_product.inl │ │ │ │ │ ├── fast_exponential.hpp │ │ │ │ │ ├── fast_exponential.inl │ │ │ │ │ ├── fast_square_root.hpp │ │ │ │ │ ├── fast_square_root.inl │ │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ │ ├── float_notmalize.inl │ │ │ │ │ ├── functions.hpp │ │ │ │ │ ├── functions.inl │ │ │ │ │ ├── gradient_paint.hpp │ │ │ │ │ ├── gradient_paint.inl │ │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ │ ├── hash.hpp │ │ │ │ │ ├── hash.inl │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── integer.inl │ │ │ │ │ ├── intersect.hpp │ │ │ │ │ ├── intersect.inl │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── io.inl │ │ │ │ │ ├── log_base.hpp │ │ │ │ │ ├── log_base.inl │ │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ │ ├── matrix_decompose.hpp │ │ │ │ │ ├── matrix_decompose.inl │ │ │ │ │ ├── matrix_factorisation.hpp │ │ │ │ │ ├── matrix_factorisation.inl │ │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ │ ├── matrix_operation.hpp │ │ │ │ │ ├── matrix_operation.inl │ │ │ │ │ ├── matrix_query.hpp │ │ │ │ │ ├── matrix_query.inl │ │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ │ ├── mixed_product.hpp │ │ │ │ │ ├── mixed_product.inl │ │ │ │ │ ├── norm.hpp │ │ │ │ │ ├── norm.inl │ │ │ │ │ ├── normal.hpp │ │ │ │ │ ├── normal.inl │ │ │ │ │ ├── normalize_dot.hpp │ │ │ │ │ ├── normalize_dot.inl │ │ │ │ │ ├── number_precision.hpp │ │ │ │ │ ├── number_precision.inl │ │ │ │ │ ├── optimum_pow.hpp │ │ │ │ │ ├── optimum_pow.inl │ │ │ │ │ ├── orthonormalize.hpp │ │ │ │ │ ├── orthonormalize.inl │ │ │ │ │ ├── perpendicular.hpp │ │ │ │ │ ├── perpendicular.inl │ │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ │ ├── polar_coordinates.inl │ │ │ │ │ ├── projection.hpp │ │ │ │ │ ├── projection.inl │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ ├── range.hpp │ │ │ │ │ ├── raw_data.hpp │ │ │ │ │ ├── raw_data.inl │ │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ │ ├── rotate_vector.hpp │ │ │ │ │ ├── rotate_vector.inl │ │ │ │ │ ├── scalar_multiplication.hpp │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ ├── spline.hpp │ │ │ │ │ ├── spline.inl │ │ │ │ │ ├── std_based_type.hpp │ │ │ │ │ ├── std_based_type.inl │ │ │ │ │ ├── string_cast.hpp │ │ │ │ │ ├── string_cast.inl │ │ │ │ │ ├── texture.hpp │ │ │ │ │ ├── texture.inl │ │ │ │ │ ├── transform.hpp │ │ │ │ │ ├── transform.inl │ │ │ │ │ ├── transform2.hpp │ │ │ │ │ ├── transform2.inl │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ ├── type_aligned.inl │ │ │ │ │ ├── type_trait.hpp │ │ │ │ │ ├── type_trait.inl │ │ │ │ │ ├── vec_swizzle.hpp │ │ │ │ │ ├── vector_angle.hpp │ │ │ │ │ ├── vector_angle.inl │ │ │ │ │ ├── vector_query.hpp │ │ │ │ │ ├── vector_query.inl │ │ │ │ │ ├── wrap.hpp │ │ │ │ │ └── wrap.inl │ │ │ │ ├── integer.hpp │ │ │ │ ├── mat2x2.hpp │ │ │ │ ├── mat2x3.hpp │ │ │ │ ├── mat2x4.hpp │ │ │ │ ├── mat3x2.hpp │ │ │ │ ├── mat3x3.hpp │ │ │ │ ├── mat3x4.hpp │ │ │ │ ├── mat4x2.hpp │ │ │ │ ├── mat4x3.hpp │ │ │ │ ├── mat4x4.hpp │ │ │ │ ├── matrix.hpp │ │ │ │ ├── packing.hpp │ │ │ │ ├── simd │ │ │ │ │ ├── common.h │ │ │ │ │ ├── exponential.h │ │ │ │ │ ├── geometric.h │ │ │ │ │ ├── integer.h │ │ │ │ │ ├── matrix.h │ │ │ │ │ ├── packing.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── trigonometric.h │ │ │ │ │ └── vector_relational.h │ │ │ │ ├── trigonometric.hpp │ │ │ │ ├── vec2.hpp │ │ │ │ ├── vec3.hpp │ │ │ │ ├── vec4.hpp │ │ │ │ └── vector_relational.hpp │ │ │ ├── jconfig.h │ │ │ ├── jerror.h │ │ │ ├── jmorecfg.h │ │ │ └── jpeglib.h │ │ ├── lib │ │ │ ├── OpenDDL.lib │ │ │ ├── OpenDDL.pdb │ │ │ ├── OpenGEX.lib │ │ │ ├── OpenGEX.pdb │ │ │ ├── cmake │ │ │ │ └── freetype │ │ │ │ │ ├── freetype-config-debug.cmake │ │ │ │ │ └── freetype-config.cmake │ │ │ ├── freetyped.lib │ │ │ └── jpeg.lib │ │ └── share │ │ │ └── libjpeg │ │ │ └── doc │ │ │ ├── README │ │ │ ├── change.log │ │ │ ├── coderules.txt │ │ │ ├── example.c │ │ │ ├── filelist.txt │ │ │ ├── install.txt │ │ │ ├── libjpeg.txt │ │ │ ├── structure.txt │ │ │ ├── usage.txt │ │ │ └── wizard.txt │ └── src │ │ ├── Readme.txt │ │ ├── freetype2100 │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── ChangeLog.20 │ │ ├── ChangeLog.21 │ │ ├── ChangeLog.22 │ │ ├── ChangeLog.23 │ │ ├── ChangeLog.24 │ │ ├── ChangeLog.25 │ │ ├── ChangeLog.26 │ │ ├── ChangeLog.27 │ │ ├── ChangeLog.28 │ │ ├── Jamfile │ │ ├── Jamrules │ │ ├── Makefile │ │ ├── README │ │ ├── README.git │ │ ├── autogen.sh │ │ ├── builds │ │ │ ├── amiga │ │ │ │ ├── README │ │ │ │ ├── include │ │ │ │ │ └── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ └── ftmodule.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.os4 │ │ │ │ ├── smakefile │ │ │ │ └── src │ │ │ │ │ └── base │ │ │ │ │ ├── ftdebug.c │ │ │ │ │ └── ftsystem.c │ │ │ ├── ansi │ │ │ │ ├── ansi-def.mk │ │ │ │ └── ansi.mk │ │ │ ├── atari │ │ │ │ ├── ATARI.H │ │ │ │ ├── FNames.SIC │ │ │ │ ├── FREETYPE.PRJ │ │ │ │ ├── README.TXT │ │ │ │ ├── deflinejoiner.awk │ │ │ │ └── gen-purec-patch.sh │ │ │ ├── beos │ │ │ │ ├── beos-def.mk │ │ │ │ ├── beos.mk │ │ │ │ └── detect.mk │ │ │ ├── cmake │ │ │ │ ├── FindHarfBuzz.cmake │ │ │ │ ├── iOS.cmake │ │ │ │ └── testbuild.sh │ │ │ ├── compiler │ │ │ │ ├── ansi-cc.mk │ │ │ │ ├── bcc-dev.mk │ │ │ │ ├── bcc.mk │ │ │ │ ├── emx.mk │ │ │ │ ├── gcc-dev.mk │ │ │ │ ├── gcc.mk │ │ │ │ ├── intelc.mk │ │ │ │ ├── unix-lcc.mk │ │ │ │ ├── visualage.mk │ │ │ │ ├── visualc.mk │ │ │ │ ├── watcom.mk │ │ │ │ └── win-lcc.mk │ │ │ ├── detect.mk │ │ │ ├── dos │ │ │ │ ├── detect.mk │ │ │ │ ├── dos-def.mk │ │ │ │ ├── dos-emx.mk │ │ │ │ ├── dos-gcc.mk │ │ │ │ └── dos-wat.mk │ │ │ ├── exports.mk │ │ │ ├── freetype.mk │ │ │ ├── link_dos.mk │ │ │ ├── link_std.mk │ │ │ ├── mac │ │ │ │ ├── FreeType.m68k_cfm.make.txt │ │ │ │ ├── FreeType.m68k_far.make.txt │ │ │ │ ├── FreeType.ppc_carbon.make.txt │ │ │ │ ├── FreeType.ppc_classic.make.txt │ │ │ │ ├── README │ │ │ │ ├── ascii2mpw.py │ │ │ │ ├── freetype-Info.plist │ │ │ │ ├── ftlib.prj.xml │ │ │ │ └── ftmac.c │ │ │ ├── modules.mk │ │ │ ├── os2 │ │ │ │ ├── detect.mk │ │ │ │ ├── os2-def.mk │ │ │ │ ├── os2-dev.mk │ │ │ │ └── os2-gcc.mk │ │ │ ├── symbian │ │ │ │ ├── bld.inf │ │ │ │ └── freetype.mmp │ │ │ ├── toplevel.mk │ │ │ ├── unix │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── configure.raw │ │ │ │ ├── detect.mk │ │ │ │ ├── freetype-config.in │ │ │ │ ├── freetype2.in │ │ │ │ ├── freetype2.m4 │ │ │ │ ├── ft-munmap.m4 │ │ │ │ ├── ftconfig.in │ │ │ │ ├── ftsystem.c │ │ │ │ ├── install-sh │ │ │ │ ├── install.mk │ │ │ │ ├── ltmain.sh │ │ │ │ ├── pkg.m4 │ │ │ │ ├── unix-cc.in │ │ │ │ ├── unix-def.in │ │ │ │ ├── unix-dev.mk │ │ │ │ ├── unix-lcc.mk │ │ │ │ ├── unix.mk │ │ │ │ └── unixddef.mk │ │ │ ├── vms │ │ │ │ ├── ftconfig.h │ │ │ │ └── ftsystem.c │ │ │ ├── wince │ │ │ │ ├── ftdebug.c │ │ │ │ ├── vc2005-ce │ │ │ │ │ ├── freetype.sln │ │ │ │ │ ├── freetype.vcproj │ │ │ │ │ └── index.html │ │ │ │ └── vc2008-ce │ │ │ │ │ ├── freetype.sln │ │ │ │ │ ├── freetype.vcproj │ │ │ │ │ └── index.html │ │ │ └── windows │ │ │ │ ├── detect.mk │ │ │ │ ├── ftdebug.c │ │ │ │ ├── vc2010 │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.user.props │ │ │ │ ├── freetype.vcxproj │ │ │ │ ├── freetype.vcxproj.filters │ │ │ │ └── index.html │ │ │ │ ├── visualc │ │ │ │ ├── freetype.dsp │ │ │ │ ├── freetype.dsw │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ │ ├── visualce │ │ │ │ ├── freetype.dsp │ │ │ │ ├── freetype.dsw │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ │ ├── w32-bcc.mk │ │ │ │ ├── w32-bccd.mk │ │ │ │ ├── w32-dev.mk │ │ │ │ ├── w32-gcc.mk │ │ │ │ ├── w32-icc.mk │ │ │ │ ├── w32-intl.mk │ │ │ │ ├── w32-lcc.mk │ │ │ │ ├── w32-mingw32.mk │ │ │ │ ├── w32-vcc.mk │ │ │ │ ├── w32-wat.mk │ │ │ │ └── win32-def.mk │ │ ├── configure │ │ ├── devel │ │ │ ├── ft2build.h │ │ │ └── ftoption.h │ │ ├── docs │ │ │ ├── CHANGES │ │ │ ├── CMAKE │ │ │ ├── CUSTOMIZE │ │ │ ├── DEBUG │ │ │ ├── DOCGUIDE │ │ │ ├── FTL.TXT │ │ │ ├── GPLv2.TXT │ │ │ ├── INSTALL │ │ │ ├── INSTALL.ANY │ │ │ ├── INSTALL.CROSS │ │ │ ├── INSTALL.GNU │ │ │ ├── INSTALL.MAC │ │ │ ├── INSTALL.UNIX │ │ │ ├── INSTALL.VMS │ │ │ ├── LICENSE.TXT │ │ │ ├── MAKEPP │ │ │ ├── PROBLEMS │ │ │ ├── TODO │ │ │ ├── VERSIONS.TXT │ │ │ ├── formats.txt │ │ │ ├── freetype-config.1 │ │ │ ├── raster.txt │ │ │ ├── reference │ │ │ │ ├── README │ │ │ │ └── site │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── assets │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ ├── material-icons.css │ │ │ │ │ │ └── specimen │ │ │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ │ │ ├── FontAwesome.woff │ │ │ │ │ │ │ ├── FontAwesome.woff2 │ │ │ │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ │ │ │ └── MaterialIcons-Regular.woff2 │ │ │ │ │ ├── images │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ └── icons │ │ │ │ │ │ │ ├── bitbucket.1b09e088.svg │ │ │ │ │ │ │ ├── github.f0b8504a.svg │ │ │ │ │ │ │ └── gitlab.6dd19c00.svg │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.d9aa80ab.js │ │ │ │ │ │ ├── lunr │ │ │ │ │ │ │ ├── lunr.da.js │ │ │ │ │ │ │ ├── lunr.de.js │ │ │ │ │ │ │ ├── lunr.du.js │ │ │ │ │ │ │ ├── lunr.es.js │ │ │ │ │ │ │ ├── lunr.fi.js │ │ │ │ │ │ │ ├── lunr.fr.js │ │ │ │ │ │ │ ├── lunr.hu.js │ │ │ │ │ │ │ ├── lunr.it.js │ │ │ │ │ │ │ ├── lunr.ja.js │ │ │ │ │ │ │ ├── lunr.jp.js │ │ │ │ │ │ │ ├── lunr.multi.js │ │ │ │ │ │ │ ├── lunr.nl.js │ │ │ │ │ │ │ ├── lunr.no.js │ │ │ │ │ │ │ ├── lunr.pt.js │ │ │ │ │ │ │ ├── lunr.ro.js │ │ │ │ │ │ │ ├── lunr.ru.js │ │ │ │ │ │ │ ├── lunr.stemmer.support.js │ │ │ │ │ │ │ ├── lunr.sv.js │ │ │ │ │ │ │ ├── lunr.th.js │ │ │ │ │ │ │ ├── lunr.tr.js │ │ │ │ │ │ │ ├── tinyseg.js │ │ │ │ │ │ │ └── wordcut.js │ │ │ │ │ │ └── modernizr.1f0bcf2b.js │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application-palette.224b79ff.css │ │ │ │ │ │ └── application.982221ab.css │ │ │ │ │ ├── ft2-auto_hinter.html │ │ │ │ │ ├── ft2-base_interface.html │ │ │ │ │ ├── ft2-basic_types.html │ │ │ │ │ ├── ft2-bdf_fonts.html │ │ │ │ │ ├── ft2-bitmap_handling.html │ │ │ │ │ ├── ft2-bzip2.html │ │ │ │ │ ├── ft2-cache_subsystem.html │ │ │ │ │ ├── ft2-cff_driver.html │ │ │ │ │ ├── ft2-cid_fonts.html │ │ │ │ │ ├── ft2-color_management.html │ │ │ │ │ ├── ft2-computations.html │ │ │ │ │ ├── ft2-error_code_values.html │ │ │ │ │ ├── ft2-error_enumerations.html │ │ │ │ │ ├── ft2-font_formats.html │ │ │ │ │ ├── ft2-gasp_table.html │ │ │ │ │ ├── ft2-glyph_management.html │ │ │ │ │ ├── ft2-glyph_stroker.html │ │ │ │ │ ├── ft2-glyph_variants.html │ │ │ │ │ ├── ft2-gx_validation.html │ │ │ │ │ ├── ft2-gzip.html │ │ │ │ │ ├── ft2-header_file_macros.html │ │ │ │ │ ├── ft2-header_inclusion.html │ │ │ │ │ ├── ft2-incremental.html │ │ │ │ │ ├── ft2-index.html │ │ │ │ │ ├── ft2-layer_management.html │ │ │ │ │ ├── ft2-lcd_rendering.html │ │ │ │ │ ├── ft2-list_processing.html │ │ │ │ │ ├── ft2-lzw.html │ │ │ │ │ ├── ft2-mac_specific.html │ │ │ │ │ ├── ft2-module_management.html │ │ │ │ │ ├── ft2-multiple_masters.html │ │ │ │ │ ├── ft2-ot_validation.html │ │ │ │ │ ├── ft2-outline_processing.html │ │ │ │ │ ├── ft2-parameter_tags.html │ │ │ │ │ ├── ft2-pcf_driver.html │ │ │ │ │ ├── ft2-pfr_fonts.html │ │ │ │ │ ├── ft2-properties.html │ │ │ │ │ ├── ft2-quick_advance.html │ │ │ │ │ ├── ft2-raster.html │ │ │ │ │ ├── ft2-sfnt_names.html │ │ │ │ │ ├── ft2-sizes_management.html │ │ │ │ │ ├── ft2-system_interface.html │ │ │ │ │ ├── ft2-t1_cid_driver.html │ │ │ │ │ ├── ft2-truetype_engine.html │ │ │ │ │ ├── ft2-truetype_tables.html │ │ │ │ │ ├── ft2-tt_driver.html │ │ │ │ │ ├── ft2-type1_tables.html │ │ │ │ │ ├── ft2-user_allocation.html │ │ │ │ │ ├── ft2-version.html │ │ │ │ │ ├── ft2-winfnt_fonts.html │ │ │ │ │ ├── images │ │ │ │ │ └── favico.ico │ │ │ │ │ ├── index.html │ │ │ │ │ ├── javascripts │ │ │ │ │ └── extra.js │ │ │ │ │ ├── search │ │ │ │ │ └── search_index.json │ │ │ │ │ ├── sitemap.xml │ │ │ │ │ ├── sitemap.xml.gz │ │ │ │ │ └── stylesheets │ │ │ │ │ └── extra.css │ │ │ └── release │ │ ├── include │ │ │ ├── freetype │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftadvanc.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftbzip2.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── ftcid.h │ │ │ │ ├── ftcolor.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftfntfmt.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftparams.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── internal │ │ │ │ │ ├── autohint.h │ │ │ │ │ ├── cffotypes.h │ │ │ │ │ ├── cfftypes.h │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ ├── ftdrv.h │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ ├── fthash.h │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ ├── ftpsprop.h │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ ├── ftserv.h │ │ │ │ │ ├── ftstream.h │ │ │ │ │ ├── fttrace.h │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── psaux.h │ │ │ │ │ ├── pshints.h │ │ │ │ │ ├── services │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ ├── svcfftl.h │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ ├── svmetric.h │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ └── svwinfnt.h │ │ │ │ │ ├── sfnt.h │ │ │ │ │ ├── t1types.h │ │ │ │ │ └── tttypes.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ └── tttags.h │ │ │ └── ft2build.h │ │ ├── modules.cfg │ │ ├── objs │ │ │ └── README │ │ ├── src │ │ │ ├── Jamfile │ │ │ ├── autofit │ │ │ │ ├── Jamfile │ │ │ │ ├── afangles.c │ │ │ │ ├── afangles.h │ │ │ │ ├── afblue.c │ │ │ │ ├── afblue.cin │ │ │ │ ├── afblue.dat │ │ │ │ ├── afblue.h │ │ │ │ ├── afblue.hin │ │ │ │ ├── afcjk.c │ │ │ │ ├── afcjk.h │ │ │ │ ├── afcover.h │ │ │ │ ├── afdummy.c │ │ │ │ ├── afdummy.h │ │ │ │ ├── aferrors.h │ │ │ │ ├── afglobal.c │ │ │ │ ├── afglobal.h │ │ │ │ ├── afhints.c │ │ │ │ ├── afhints.h │ │ │ │ ├── afindic.c │ │ │ │ ├── afindic.h │ │ │ │ ├── aflatin.c │ │ │ │ ├── aflatin.h │ │ │ │ ├── aflatin2.c │ │ │ │ ├── aflatin2.h │ │ │ │ ├── afloader.c │ │ │ │ ├── afloader.h │ │ │ │ ├── afmodule.c │ │ │ │ ├── afmodule.h │ │ │ │ ├── afranges.c │ │ │ │ ├── afranges.h │ │ │ │ ├── afscript.h │ │ │ │ ├── afshaper.c │ │ │ │ ├── afshaper.h │ │ │ │ ├── afstyles.h │ │ │ │ ├── aftypes.h │ │ │ │ ├── afwarp.c │ │ │ │ ├── afwarp.h │ │ │ │ ├── afwrtsys.h │ │ │ │ ├── autofit.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── base │ │ │ │ ├── Jamfile │ │ │ │ ├── ftadvanc.c │ │ │ │ ├── ftbase.c │ │ │ │ ├── ftbase.h │ │ │ │ ├── ftbbox.c │ │ │ │ ├── ftbdf.c │ │ │ │ ├── ftbitmap.c │ │ │ │ ├── ftcalc.c │ │ │ │ ├── ftcid.c │ │ │ │ ├── ftcolor.c │ │ │ │ ├── ftdbgmem.c │ │ │ │ ├── ftdebug.c │ │ │ │ ├── fterrors.c │ │ │ │ ├── ftfntfmt.c │ │ │ │ ├── ftfstype.c │ │ │ │ ├── ftgasp.c │ │ │ │ ├── ftgloadr.c │ │ │ │ ├── ftglyph.c │ │ │ │ ├── ftgxval.c │ │ │ │ ├── fthash.c │ │ │ │ ├── ftinit.c │ │ │ │ ├── ftlcdfil.c │ │ │ │ ├── ftmac.c │ │ │ │ ├── ftmm.c │ │ │ │ ├── ftobjs.c │ │ │ │ ├── ftotval.c │ │ │ │ ├── ftoutln.c │ │ │ │ ├── ftpatent.c │ │ │ │ ├── ftpfr.c │ │ │ │ ├── ftpsprop.c │ │ │ │ ├── ftrfork.c │ │ │ │ ├── ftsnames.c │ │ │ │ ├── ftstream.c │ │ │ │ ├── ftstroke.c │ │ │ │ ├── ftsynth.c │ │ │ │ ├── ftsystem.c │ │ │ │ ├── fttrigon.c │ │ │ │ ├── fttype1.c │ │ │ │ ├── ftutil.c │ │ │ │ ├── ftver.rc │ │ │ │ ├── ftwinfnt.c │ │ │ │ ├── md5.c │ │ │ │ ├── md5.h │ │ │ │ └── rules.mk │ │ │ ├── bdf │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── bdf.c │ │ │ │ ├── bdf.h │ │ │ │ ├── bdfdrivr.c │ │ │ │ ├── bdfdrivr.h │ │ │ │ ├── bdferror.h │ │ │ │ ├── bdflib.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── bzip2 │ │ │ │ ├── Jamfile │ │ │ │ ├── ftbzip2.c │ │ │ │ └── rules.mk │ │ │ ├── cache │ │ │ │ ├── Jamfile │ │ │ │ ├── ftcache.c │ │ │ │ ├── ftcbasic.c │ │ │ │ ├── ftccache.c │ │ │ │ ├── ftccache.h │ │ │ │ ├── ftccback.h │ │ │ │ ├── ftccmap.c │ │ │ │ ├── ftcerror.h │ │ │ │ ├── ftcglyph.c │ │ │ │ ├── ftcglyph.h │ │ │ │ ├── ftcimage.c │ │ │ │ ├── ftcimage.h │ │ │ │ ├── ftcmanag.c │ │ │ │ ├── ftcmanag.h │ │ │ │ ├── ftcmru.c │ │ │ │ ├── ftcmru.h │ │ │ │ ├── ftcsbits.c │ │ │ │ ├── ftcsbits.h │ │ │ │ └── rules.mk │ │ │ ├── cff │ │ │ │ ├── Jamfile │ │ │ │ ├── cff.c │ │ │ │ ├── cffcmap.c │ │ │ │ ├── cffcmap.h │ │ │ │ ├── cffdrivr.c │ │ │ │ ├── cffdrivr.h │ │ │ │ ├── cfferrs.h │ │ │ │ ├── cffgload.c │ │ │ │ ├── cffgload.h │ │ │ │ ├── cffload.c │ │ │ │ ├── cffload.h │ │ │ │ ├── cffobjs.c │ │ │ │ ├── cffobjs.h │ │ │ │ ├── cffparse.c │ │ │ │ ├── cffparse.h │ │ │ │ ├── cfftoken.h │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── cid │ │ │ │ ├── Jamfile │ │ │ │ ├── ciderrs.h │ │ │ │ ├── cidgload.c │ │ │ │ ├── cidgload.h │ │ │ │ ├── cidload.c │ │ │ │ ├── cidload.h │ │ │ │ ├── cidobjs.c │ │ │ │ ├── cidobjs.h │ │ │ │ ├── cidparse.c │ │ │ │ ├── cidparse.h │ │ │ │ ├── cidriver.c │ │ │ │ ├── cidriver.h │ │ │ │ ├── cidtoken.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── type1cid.c │ │ │ ├── gxvalid │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── gxvalid.c │ │ │ │ ├── gxvalid.h │ │ │ │ ├── gxvbsln.c │ │ │ │ ├── gxvcommn.c │ │ │ │ ├── gxvcommn.h │ │ │ │ ├── gxverror.h │ │ │ │ ├── gxvfeat.c │ │ │ │ ├── gxvfeat.h │ │ │ │ ├── gxvfgen.c │ │ │ │ ├── gxvjust.c │ │ │ │ ├── gxvkern.c │ │ │ │ ├── gxvlcar.c │ │ │ │ ├── gxvmod.c │ │ │ │ ├── gxvmod.h │ │ │ │ ├── gxvmort.c │ │ │ │ ├── gxvmort.h │ │ │ │ ├── gxvmort0.c │ │ │ │ ├── gxvmort1.c │ │ │ │ ├── gxvmort2.c │ │ │ │ ├── gxvmort4.c │ │ │ │ ├── gxvmort5.c │ │ │ │ ├── gxvmorx.c │ │ │ │ ├── gxvmorx.h │ │ │ │ ├── gxvmorx0.c │ │ │ │ ├── gxvmorx1.c │ │ │ │ ├── gxvmorx2.c │ │ │ │ ├── gxvmorx4.c │ │ │ │ ├── gxvmorx5.c │ │ │ │ ├── gxvopbd.c │ │ │ │ ├── gxvprop.c │ │ │ │ ├── gxvtrak.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── gzip │ │ │ │ ├── Jamfile │ │ │ │ ├── adler32.c │ │ │ │ ├── ftgzip.c │ │ │ │ ├── ftzconf.h │ │ │ │ ├── infblock.c │ │ │ │ ├── infblock.h │ │ │ │ ├── infcodes.c │ │ │ │ ├── infcodes.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── infutil.c │ │ │ │ ├── infutil.h │ │ │ │ ├── rules.mk │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ ├── lzw │ │ │ │ ├── Jamfile │ │ │ │ ├── ftlzw.c │ │ │ │ ├── ftzopen.c │ │ │ │ ├── ftzopen.h │ │ │ │ └── rules.mk │ │ │ ├── otvalid │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── otvalid.c │ │ │ │ ├── otvalid.h │ │ │ │ ├── otvbase.c │ │ │ │ ├── otvcommn.c │ │ │ │ ├── otvcommn.h │ │ │ │ ├── otverror.h │ │ │ │ ├── otvgdef.c │ │ │ │ ├── otvgpos.c │ │ │ │ ├── otvgpos.h │ │ │ │ ├── otvgsub.c │ │ │ │ ├── otvjstf.c │ │ │ │ ├── otvmath.c │ │ │ │ ├── otvmod.c │ │ │ │ ├── otvmod.h │ │ │ │ └── rules.mk │ │ │ ├── pcf │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── module.mk │ │ │ │ ├── pcf.c │ │ │ │ ├── pcf.h │ │ │ │ ├── pcfdrivr.c │ │ │ │ ├── pcfdrivr.h │ │ │ │ ├── pcferror.h │ │ │ │ ├── pcfread.c │ │ │ │ ├── pcfread.h │ │ │ │ ├── pcfutil.c │ │ │ │ ├── pcfutil.h │ │ │ │ └── rules.mk │ │ │ ├── pfr │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pfr.c │ │ │ │ ├── pfrcmap.c │ │ │ │ ├── pfrcmap.h │ │ │ │ ├── pfrdrivr.c │ │ │ │ ├── pfrdrivr.h │ │ │ │ ├── pfrerror.h │ │ │ │ ├── pfrgload.c │ │ │ │ ├── pfrgload.h │ │ │ │ ├── pfrload.c │ │ │ │ ├── pfrload.h │ │ │ │ ├── pfrobjs.c │ │ │ │ ├── pfrobjs.h │ │ │ │ ├── pfrsbit.c │ │ │ │ ├── pfrsbit.h │ │ │ │ ├── pfrtypes.h │ │ │ │ └── rules.mk │ │ │ ├── psaux │ │ │ │ ├── Jamfile │ │ │ │ ├── afmparse.c │ │ │ │ ├── afmparse.h │ │ │ │ ├── cffdecode.c │ │ │ │ ├── cffdecode.h │ │ │ │ ├── module.mk │ │ │ │ ├── psarrst.c │ │ │ │ ├── psarrst.h │ │ │ │ ├── psaux.c │ │ │ │ ├── psauxerr.h │ │ │ │ ├── psauxmod.c │ │ │ │ ├── psauxmod.h │ │ │ │ ├── psblues.c │ │ │ │ ├── psblues.h │ │ │ │ ├── psconv.c │ │ │ │ ├── psconv.h │ │ │ │ ├── pserror.c │ │ │ │ ├── pserror.h │ │ │ │ ├── psfixed.h │ │ │ │ ├── psfont.c │ │ │ │ ├── psfont.h │ │ │ │ ├── psft.c │ │ │ │ ├── psft.h │ │ │ │ ├── psglue.h │ │ │ │ ├── pshints.c │ │ │ │ ├── pshints.h │ │ │ │ ├── psintrp.c │ │ │ │ ├── psintrp.h │ │ │ │ ├── psobjs.c │ │ │ │ ├── psobjs.h │ │ │ │ ├── psread.c │ │ │ │ ├── psread.h │ │ │ │ ├── psstack.c │ │ │ │ ├── psstack.h │ │ │ │ ├── pstypes.h │ │ │ │ ├── rules.mk │ │ │ │ ├── t1cmap.c │ │ │ │ ├── t1cmap.h │ │ │ │ ├── t1decode.c │ │ │ │ └── t1decode.h │ │ │ ├── pshinter │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pshalgo.c │ │ │ │ ├── pshalgo.h │ │ │ │ ├── pshglob.c │ │ │ │ ├── pshglob.h │ │ │ │ ├── pshinter.c │ │ │ │ ├── pshmod.c │ │ │ │ ├── pshmod.h │ │ │ │ ├── pshnterr.h │ │ │ │ ├── pshrec.c │ │ │ │ ├── pshrec.h │ │ │ │ └── rules.mk │ │ │ ├── psnames │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── psmodule.c │ │ │ │ ├── psmodule.h │ │ │ │ ├── psnamerr.h │ │ │ │ ├── psnames.c │ │ │ │ ├── pstables.h │ │ │ │ └── rules.mk │ │ │ ├── raster │ │ │ │ ├── Jamfile │ │ │ │ ├── ftmisc.h │ │ │ │ ├── ftraster.c │ │ │ │ ├── ftraster.h │ │ │ │ ├── ftrend1.c │ │ │ │ ├── ftrend1.h │ │ │ │ ├── module.mk │ │ │ │ ├── raster.c │ │ │ │ ├── rasterrs.h │ │ │ │ └── rules.mk │ │ │ ├── sfnt │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pngshim.c │ │ │ │ ├── pngshim.h │ │ │ │ ├── rules.mk │ │ │ │ ├── sfdriver.c │ │ │ │ ├── sfdriver.h │ │ │ │ ├── sferrors.h │ │ │ │ ├── sfnt.c │ │ │ │ ├── sfobjs.c │ │ │ │ ├── sfobjs.h │ │ │ │ ├── ttbdf.c │ │ │ │ ├── ttbdf.h │ │ │ │ ├── ttcmap.c │ │ │ │ ├── ttcmap.h │ │ │ │ ├── ttcmapc.h │ │ │ │ ├── ttcolr.c │ │ │ │ ├── ttcolr.h │ │ │ │ ├── ttcpal.c │ │ │ │ ├── ttcpal.h │ │ │ │ ├── ttkern.c │ │ │ │ ├── ttkern.h │ │ │ │ ├── ttload.c │ │ │ │ ├── ttload.h │ │ │ │ ├── ttmtx.c │ │ │ │ ├── ttmtx.h │ │ │ │ ├── ttpost.c │ │ │ │ ├── ttpost.h │ │ │ │ ├── ttsbit.c │ │ │ │ └── ttsbit.h │ │ │ ├── smooth │ │ │ │ ├── Jamfile │ │ │ │ ├── ftgrays.c │ │ │ │ ├── ftgrays.h │ │ │ │ ├── ftsmerrs.h │ │ │ │ ├── ftsmooth.c │ │ │ │ ├── ftsmooth.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── smooth.c │ │ │ ├── tools │ │ │ │ ├── Jamfile │ │ │ │ ├── afblue.pl │ │ │ │ ├── apinames.c │ │ │ │ ├── chktrcmp.py │ │ │ │ ├── cordic.py │ │ │ │ ├── ftrandom │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ └── ftrandom.c │ │ │ │ ├── glnames.py │ │ │ │ ├── no-copyright │ │ │ │ ├── test_afm.c │ │ │ │ ├── test_bbox.c │ │ │ │ ├── test_trig.c │ │ │ │ ├── update-copyright │ │ │ │ └── update-copyright-year │ │ │ ├── truetype │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── truetype.c │ │ │ │ ├── ttdriver.c │ │ │ │ ├── ttdriver.h │ │ │ │ ├── tterrors.h │ │ │ │ ├── ttgload.c │ │ │ │ ├── ttgload.h │ │ │ │ ├── ttgxvar.c │ │ │ │ ├── ttgxvar.h │ │ │ │ ├── ttinterp.c │ │ │ │ ├── ttinterp.h │ │ │ │ ├── ttobjs.c │ │ │ │ ├── ttobjs.h │ │ │ │ ├── ttpload.c │ │ │ │ ├── ttpload.h │ │ │ │ ├── ttsubpix.c │ │ │ │ └── ttsubpix.h │ │ │ ├── type1 │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t1afm.c │ │ │ │ ├── t1afm.h │ │ │ │ ├── t1driver.c │ │ │ │ ├── t1driver.h │ │ │ │ ├── t1errors.h │ │ │ │ ├── t1gload.c │ │ │ │ ├── t1gload.h │ │ │ │ ├── t1load.c │ │ │ │ ├── t1load.h │ │ │ │ ├── t1objs.c │ │ │ │ ├── t1objs.h │ │ │ │ ├── t1parse.c │ │ │ │ ├── t1parse.h │ │ │ │ ├── t1tokens.h │ │ │ │ └── type1.c │ │ │ ├── type42 │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t42drivr.c │ │ │ │ ├── t42drivr.h │ │ │ │ ├── t42error.h │ │ │ │ ├── t42objs.c │ │ │ │ ├── t42objs.h │ │ │ │ ├── t42parse.c │ │ │ │ ├── t42parse.h │ │ │ │ ├── t42types.h │ │ │ │ └── type42.c │ │ │ └── winfonts │ │ │ │ ├── Jamfile │ │ │ │ ├── fnterrs.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── winfnt.c │ │ │ │ └── winfnt.h │ │ ├── version.sed │ │ └── vms_make.com │ │ ├── glad │ │ ├── bak │ │ │ ├── mac │ │ │ │ ├── include │ │ │ │ │ ├── KHR │ │ │ │ │ │ └── khrplatform.h │ │ │ │ │ └── glad │ │ │ │ │ │ └── glad.h │ │ │ │ └── src │ │ │ │ │ └── glad.c │ │ │ └── origin │ │ │ │ ├── include │ │ │ │ ├── KHR │ │ │ │ │ └── khrplatform.h │ │ │ │ └── glad │ │ │ │ │ ├── glad.h │ │ │ │ │ ├── glad_glx.h │ │ │ │ │ └── glad_wgl.h │ │ │ │ └── src │ │ │ │ ├── glad.c │ │ │ │ ├── glad_glx.c │ │ │ │ └── glad_wgl.c │ │ ├── glad_generate.bat │ │ ├── glad_generate.sh │ │ ├── include │ │ │ ├── KHR │ │ │ │ └── khrplatform.h │ │ │ └── glad │ │ │ │ ├── glad.h │ │ │ │ ├── glad_glx.h │ │ │ │ └── glad_wgl.h │ │ └── src │ │ │ ├── glad.c │ │ │ ├── glad_glx.c │ │ │ └── glad_wgl.c │ │ └── libjpeg │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── ansi2knr.1 │ │ ├── ansi2knr.c │ │ ├── cderror.h │ │ ├── cdjpeg.c │ │ ├── cdjpeg.h │ │ ├── change.log │ │ ├── cjpeg.1 │ │ ├── cjpeg.c │ │ ├── ckconfig.c │ │ ├── cmake │ │ └── dist.cmake │ │ ├── coderules.txt │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── dist.info │ │ ├── djpeg.1 │ │ ├── djpeg.c │ │ ├── example.c │ │ ├── filelist.txt │ │ ├── install-sh │ │ ├── install.txt │ │ ├── jaricom.c │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jcarith.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.bcc │ │ ├── jconfig.cfg │ │ ├── jconfig.dj │ │ ├── jconfig.h.cmake │ │ ├── jconfig.mac │ │ ├── jconfig.manx │ │ ├── jconfig.mc6 │ │ ├── jconfig.sas │ │ ├── jconfig.st │ │ ├── jconfig.txt │ │ ├── jconfig.vc │ │ ├── jconfig.vms │ │ ├── jconfig.wat │ │ ├── jcparam.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jctrans.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdarith.c │ │ ├── jdatadst.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jdtrans.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jinclude.h │ │ ├── jmemansi.c │ │ ├── jmemdos.c │ │ ├── jmemdosa.asm │ │ ├── jmemmac.c │ │ ├── jmemmgr.c │ │ ├── jmemname.c │ │ ├── jmemnobs.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpeg_test.cmake │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jpegtran.1 │ │ ├── jpegtran.c │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ ├── jversion.h │ │ ├── libjpeg.map │ │ ├── libjpeg.txt │ │ ├── ltmain.sh │ │ ├── makcjpeg.st │ │ ├── makdjpeg.st │ │ ├── makeadsw.vc6 │ │ ├── makeasln.v10 │ │ ├── makecdep.vc6 │ │ ├── makecdsp.vc6 │ │ ├── makecfil.v10 │ │ ├── makecmak.vc6 │ │ ├── makecvcx.v10 │ │ ├── makeddep.vc6 │ │ ├── makeddsp.vc6 │ │ ├── makedfil.v10 │ │ ├── makedmak.vc6 │ │ ├── makedvcx.v10 │ │ ├── makefile.ansi │ │ ├── makefile.bcc │ │ ├── makefile.dj │ │ ├── makefile.manx │ │ ├── makefile.mc6 │ │ ├── makefile.mms │ │ ├── makefile.sas │ │ ├── makefile.unix │ │ ├── makefile.vc │ │ ├── makefile.vms │ │ ├── makefile.wat │ │ ├── makejdep.vc6 │ │ ├── makejdsp.vc6 │ │ ├── makejdsw.vc6 │ │ ├── makejfil.v10 │ │ ├── makejmak.vc6 │ │ ├── makejsln.v10 │ │ ├── makejvcx.v10 │ │ ├── makeproj.mac │ │ ├── makerdep.vc6 │ │ ├── makerdsp.vc6 │ │ ├── makerfil.v10 │ │ ├── makermak.vc6 │ │ ├── makervcx.v10 │ │ ├── maketdep.vc6 │ │ ├── maketdsp.vc6 │ │ ├── maketfil.v10 │ │ ├── maketmak.vc6 │ │ ├── maketvcx.v10 │ │ ├── makewdep.vc6 │ │ ├── makewdsp.vc6 │ │ ├── makewfil.v10 │ │ ├── makewmak.vc6 │ │ ├── makewvcx.v10 │ │ ├── makljpeg.st │ │ ├── maktjpeg.st │ │ ├── makvms.opt │ │ ├── missing │ │ ├── rdbmp.c │ │ ├── rdcolmap.c │ │ ├── rdgif.c │ │ ├── rdjpgcom.1 │ │ ├── rdjpgcom.c │ │ ├── rdppm.c │ │ ├── rdrle.c │ │ ├── rdswitch.c │ │ ├── rdtarga.c │ │ ├── structure.txt │ │ ├── testimg.bmp │ │ ├── testimg.jpg │ │ ├── testimg.ppm │ │ ├── testimgp.jpg │ │ ├── testorig.jpg │ │ ├── testprog.jpg │ │ ├── transupp.c │ │ ├── transupp.h │ │ ├── usage.txt │ │ ├── wizard.txt │ │ ├── wrbmp.c │ │ ├── wrgif.c │ │ ├── wrjpgcom.1 │ │ ├── wrjpgcom.c │ │ ├── wrppm.c │ │ ├── wrrle.c │ │ └── wrtarga.c ├── Game │ ├── CMakeLists.txt │ ├── Dota3DOpengl │ │ ├── CMakeLists.txt │ │ ├── DefaultGame.cpp │ │ ├── MacOpenGLApplicationConfig.cpp │ │ └── WindowsOpenGLApplicationConfig.cpp │ ├── Dota3DWindows │ │ ├── CMakeLists.txt │ │ ├── DefaultGame.cpp │ │ └── WindowsApplicationConfig.cpp │ ├── DotaAwc │ │ ├── CMakeLists.txt │ │ └── DefaultGame.cpp │ ├── test │ │ ├── CMakeLists.txt │ │ └── OgexParserTest.cpp │ └── zjpeg │ │ ├── CMakeLists.txt │ │ └── main.cpp ├── PhantomCore │ ├── CMakeLists.txt │ └── src │ │ ├── ability │ │ ├── Ability.h │ │ └── IAnimatable.h │ │ ├── common │ │ ├── AnimationManager.cpp │ │ ├── AnimationManager.h │ │ ├── AssetLoadManager.cpp │ │ ├── AssetLoadManager.h │ │ ├── BaseApplication.cpp │ │ ├── BaseApplication.h │ │ ├── BehaviourManager.cpp │ │ ├── BehaviourManager.h │ │ ├── DebugManager.cpp │ │ ├── DebugManager.h │ │ ├── GfxConfiguration.h │ │ ├── GraphicsManager.cpp │ │ ├── GraphicsManager.h │ │ ├── InputManager.cpp │ │ ├── InputManager.h │ │ ├── Portable.h │ │ ├── SceneManager.cpp │ │ ├── SceneManager.h │ │ ├── Singleton.h │ │ ├── buffer.h │ │ └── utility.hpp │ │ ├── components │ │ ├── Classes.cpp │ │ ├── Classes.h │ │ └── main.cpp_sample │ │ ├── eventQueue │ │ ├── EventManager.cpp │ │ ├── EventManager.h │ │ ├── EventStruct.h │ │ └── readme.txt │ │ ├── graphics │ │ ├── GfxStruct.h │ │ ├── Image.cpp │ │ ├── Image.h │ │ ├── gui │ │ │ └── GuiCommon.h │ │ └── textCore │ │ │ ├── FontEngine.cpp │ │ │ └── FontEngine.h │ │ ├── interface │ │ ├── IApplication.h │ │ ├── IInterface.h │ │ ├── IRuntimeModule.h │ │ ├── ImageParser.h │ │ └── SceneParser.h │ │ ├── main.cpp │ │ ├── maths │ │ ├── AngleUtils.h │ │ ├── PhMaths.h │ │ ├── algorithm │ │ │ ├── Bezier.h │ │ │ ├── Curve.h │ │ │ ├── Linear.h │ │ │ ├── newtonRapson.h │ │ │ ├── opengex双曲线理解.JPG │ │ │ ├── sort.cpp │ │ │ └── sort.h │ │ ├── mat3.cpp │ │ ├── mat3.h │ │ ├── mat4.cpp │ │ ├── mat4.h │ │ ├── vector.cpp │ │ └── vector.h │ │ ├── parser │ │ ├── BMPParser.h │ │ ├── JpegParser.h │ │ ├── OpengexParser.cpp │ │ └── opengexparser.h │ │ ├── scene │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── SceneBaseNode.h │ │ ├── SceneBaseObject.cpp │ │ ├── SceneBaseObject.h │ │ ├── SceneGeometryNode.h │ │ ├── SceneHeaders.h │ │ ├── SceneLightNode.h │ │ ├── SceneObjectAnimation.cpp │ │ ├── SceneObjectAnimation.h │ │ ├── SceneObjectGeometry.h │ │ ├── SceneObjectIndexArray .cpp │ │ ├── SceneObjectIndexArray.h │ │ ├── SceneObjectLight.h │ │ ├── SceneObjectMaterial.h │ │ ├── SceneObjectMesh.cpp │ │ ├── SceneObjectMesh.h │ │ ├── SceneObjectSkeleton.cpp │ │ ├── SceneObjectSkeleton.h │ │ ├── SceneObjectSkin.cpp │ │ ├── SceneObjectSkin.h │ │ ├── SceneObjectTexture.h │ │ ├── SceneObjectTrack.cpp │ │ ├── SceneObjectTrack.h │ │ ├── SceneObjectTransform.h │ │ ├── SceneObjectVertexArray.cpp │ │ ├── SceneObjectVertexArray.h │ │ ├── SceneOjbectTypeDef.h │ │ ├── TreeNode.h │ │ ├── camera.cpp │ │ └── camera.h │ │ ├── test.cpp │ │ └── utils │ │ ├── Timer.h │ │ ├── fileUtils.h │ │ ├── guid.cpp │ │ └── guid.hpp ├── Platform │ ├── CMakeLists.txt │ ├── Darwin │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CMakeLists.txt │ │ ├── CocoaApplication.h │ │ ├── CocoaApplication.mm │ │ ├── CocoaMetalApplication.h │ │ ├── CocoaMetalApplication.mm │ │ ├── CocoaMetalApplicationConfig.cpp │ │ ├── CocoaOpenGLApplication.h │ │ ├── CocoaOpenGLApplication.mm │ │ ├── GLView.h │ │ ├── GLView.mm │ │ ├── MetalView.h │ │ ├── MetalView.mm │ │ ├── PosixTimer.cpp │ │ ├── WindowDelegate.h │ │ └── WindowDelegate.m │ ├── Empty │ │ ├── CMakeLists.txt │ │ ├── DefaultApplication.cpp │ │ ├── DefaultApplication.h │ │ └── PosixTimer.cpp │ └── Windows │ │ ├── CMakeLists.txt │ │ ├── OpenGLApplication.cpp │ │ ├── OpenGLApplication.h │ │ ├── Win32Timer.cpp │ │ ├── WindowsApplication.cpp │ │ └── WindowsApplication.h ├── RHI │ ├── CMakeLists.txt │ ├── D2d │ │ ├── CMakeLists.txt │ │ ├── D2dGraphicsManager.cpp │ │ └── D2dGraphicsManager.h │ ├── D3d │ │ ├── CMakeLists.txt │ │ ├── D3d12GraphicsManager.cpp │ │ └── D3d12GraphicsManager.h │ ├── Empty │ │ └── CMakeLists.txt │ ├── Metal │ │ ├── CMakeLists.txt │ │ ├── Metal2GraphicsManager.h │ │ ├── Metal2GraphicsManager.mm │ │ ├── Metal2Renderer.h │ │ ├── Metal2Renderer.mm │ │ └── MetalConfig.hpp │ └── OpenGL │ │ ├── CMakeLists.txt │ │ ├── OpenGLGraphicsManager.cpp │ │ ├── OpenGLGraphicsManager.h │ │ ├── OpenGLShader.cpp │ │ └── OpenGLShader.h ├── Tests │ ├── CMakeLists.txt │ ├── Memory │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── src │ │ │ ├── PhAllocator.cpp │ │ │ └── PhAllocator.h │ └── samples │ │ ├── CMakeLists.txt │ │ └── src │ │ └── main.cpp ├── build_freetype2.bat ├── build_freetype2.sh ├── build_imglib.bat ├── build_imglib.sh ├── build_opengex.bat ├── build_opengex.sh ├── cbuild.bat ├── cbuild.sh ├── cmake │ └── android.cmake ├── projectConfig.h └── projectConfig.h.in ├── README.md ├── discard └── opengl_tmp │ ├── GIndexBuffer.cpp │ ├── GIndexBuffer.h │ ├── GVertexArray.cpp │ ├── GVertexArray.h │ ├── GVertexBuffer.cpp │ ├── GVertexBuffer.h │ ├── renderable.cpp │ ├── renderable.h │ ├── renderer.cpp │ ├── renderer.h │ ├── shader.cpp │ ├── shader.h │ ├── window.cpp │ └── window.h ├── doc └── SceneStructures.vsdx └── refs ├── OpenGex-Import.zip ├── crossguid-master.zip └── matrix.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/LICENSE -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/Scene/aili.ogex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/Scene/aili.ogex -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/Scene/anim.OGEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/Scene/anim.OGEX -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/Scene/c8.OGEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/Scene/c8.OGEX -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/Scene/car.ogex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/Scene/car.ogex -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/Scene/hierachy.OGEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/Scene/hierachy.OGEX -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/Scene/my.OGEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/Scene/my.OGEX -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/shaders/GfxStruct.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/shaders/GfxStruct.glsl -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/shaders/Metal/base.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/shaders/Metal/base.metal -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/shaders/cubefs.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/shaders/cubefs.shader -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/shaders/cubevs.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/shaders/cubevs.shader -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/shaders/frag.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/shaders/frag.shader -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/shaders/frag_light.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/shaders/frag_light.shader -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/shaders/text_ps.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/shaders/text_ps.shader -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/shaders/text_vt.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/shaders/text_vt.shader -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/shaders/vert.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/shaders/vert.shader -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Resources/shaders/vert_light.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Resources/shaders/vert_light.shader -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/b.jpg -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/back.jpg -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/bmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/bmp.bmp -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/bottom.jpg -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/commander8_margaery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/commander8_margaery.jpg -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/eye.png -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/front.jpg -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/left.jpg -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/len_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/len_full.jpg -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/right.jpg -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/top.jpg -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/w.jpg -------------------------------------------------------------------------------- /PhantomEngine/Assets/Assets/Textures/z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Assets/Assets/Textures/z.jpg -------------------------------------------------------------------------------- /PhantomEngine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/ODDLArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/ODDLArray.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/ODDLMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/ODDLMap.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/ODDLString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/ODDLString.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/ODDLTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/ODDLTree.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/ODDLTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/ODDLTypes.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/OpenDDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/OpenDDL.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/OpenGEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/OpenGEX.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/freetype.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftadvanc.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftbzip2.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftcache.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftchapters.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftcid.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftcolor.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftdriver.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/fterrors.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftimage.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftlist.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftmac.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftmm.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftotval.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftparams.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftrender.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/fttypes.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/t1tables.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/tttables.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/freetype/tttags.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/ft2build.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/jconfig.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/jerror.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/jmorecfg.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/include/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/include/jpeglib.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/lib/libOpenDDL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/lib/libOpenDDL.a -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/lib/libOpenGEX.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/lib/libOpenGEX.a -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/lib/libfreetype.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/lib/libfreetype.a -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/lib/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/lib/libjpeg.a -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/lib/pkgconfig/freetype2.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/lib/pkgconfig/freetype2.pc -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/README -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/change.log -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/example.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/install.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/libjpeg.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/usage.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/wizard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Darwin/share/libjpeg/doc/wizard.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/GLFW/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/GLFW/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/GLFW/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/GLFW/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/GLFW/lib-mac/libglfw3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/GLFW/lib-mac/libglfw3.a -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/GLFW/lib-vc2015/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/GLFW/lib-vc2015/glfw3.dll -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/GLFW/lib-vc2015/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/GLFW/lib-vc2015/glfw3.lib -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/GLFW/lib-vc2015/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/GLFW/lib-vc2015/glfw3dll.lib -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Linux/include/ODDLArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Linux/include/ODDLArray.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Linux/include/ODDLMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Linux/include/ODDLMap.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Linux/include/ODDLString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Linux/include/ODDLString.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Linux/include/ODDLTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Linux/include/ODDLTree.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Linux/include/ODDLTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Linux/include/ODDLTypes.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Linux/include/OpenDDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Linux/include/OpenDDL.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Linux/include/OpenGEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Linux/include/OpenGEX.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Linux/lib/libOpenDDL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Linux/lib/libOpenDDL.a -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Linux/lib/libOpenGEX.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Linux/lib/libOpenGEX.a -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/README.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/bin/jpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/bin/jpeg.dll -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/ODDLArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/ODDLArray.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/ODDLMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/ODDLMap.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/ODDLString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/ODDLString.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/ODDLTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/ODDLTree.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/ODDLTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/ODDLTypes.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/OpenDDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/OpenDDL.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/OpenGEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/OpenGEX.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/freetype.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftadvanc.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftbzip2.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftcache.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftcid.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftcolor.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftdriver.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/fterrors.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftimage.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftlist.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftmac.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftmm.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftotval.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftparams.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftrender.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/fttypes.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/t1tables.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/tttables.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/freetype/tttags.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/ft2build.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/common.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/exponential.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/ext.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/fwd.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/geometric.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/glm.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_ulp 2 | /// 3 | 4 | -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/integer.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/matrix.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/packing.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/simd/common.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/simd/integer.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/simd/packing.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/simd/platform.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/vec2.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/vec3.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/glm/vec4.hpp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/jconfig.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/jerror.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/jmorecfg.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/include/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/include/jpeglib.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/lib/OpenDDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/lib/OpenDDL.lib -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/lib/OpenDDL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/lib/OpenDDL.pdb -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/lib/OpenGEX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/lib/OpenGEX.lib -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/lib/OpenGEX.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/lib/OpenGEX.pdb -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/lib/freetyped.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/lib/freetyped.lib -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/lib/jpeg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/lib/jpeg.lib -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/share/libjpeg/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/share/libjpeg/doc/README -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/share/libjpeg/doc/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/share/libjpeg/doc/change.log -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/share/libjpeg/doc/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/share/libjpeg/doc/example.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/share/libjpeg/doc/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/share/libjpeg/doc/usage.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/Windows/share/libjpeg/doc/wizard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/Windows/share/libjpeg/doc/wizard.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/Readme.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/ChangeLog -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/ChangeLog.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/ChangeLog.20 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/ChangeLog.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/ChangeLog.21 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/ChangeLog.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/ChangeLog.22 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/ChangeLog.23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/ChangeLog.23 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/ChangeLog.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/ChangeLog.24 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/ChangeLog.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/ChangeLog.25 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/ChangeLog.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/ChangeLog.26 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/ChangeLog.27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/ChangeLog.27 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/ChangeLog.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/ChangeLog.28 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/Jamfile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/Jamrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/Jamrules -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/Makefile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/README -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/README.git -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/autogen.sh -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/builds/amiga/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/builds/amiga/README -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/builds/ansi/ansi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/builds/ansi/ansi.mk -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/builds/beos/beos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/builds/beos/beos.mk -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/builds/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/builds/detect.mk -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/builds/exports.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/builds/exports.mk -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/builds/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/builds/freetype.mk -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/configure -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/devel/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/devel/ft2build.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/devel/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/devel/ftoption.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/CHANGES -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/CMAKE -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/CUSTOMIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/CUSTOMIZE -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/DEBUG -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/DOCGUIDE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/DOCGUIDE -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/FTL.TXT -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/GPLv2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/GPLv2.TXT -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/INSTALL -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/INSTALL.ANY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/INSTALL.ANY -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/INSTALL.GNU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/INSTALL.GNU -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/INSTALL.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/INSTALL.MAC -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/INSTALL.VMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/INSTALL.VMS -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/LICENSE.TXT -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/MAKEPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/MAKEPP -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/PROBLEMS -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/TODO -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/formats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/formats.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/raster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/raster.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/reference/site/assets/javascripts/lunr/lunr.jp.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/docs/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/docs/release -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/modules.cfg -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/objs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/objs/README -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/Jamfile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/base/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/base/Jamfile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/base/ftbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/base/ftbdf.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/base/ftcid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/base/ftcid.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/base/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/base/ftmac.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/base/ftmm.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/base/ftpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/base/ftpfr.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/base/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/base/md5.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/base/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/base/md5.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/bdf/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/bdf/Jamfile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/bdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/bdf/README -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/bdf/bdf.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/bdf/bdf.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/bdf/bdflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/bdf/bdflib.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/bdf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/bdf/rules.mk -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/cff/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/cff/Jamfile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/cff/cff.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/cff/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/cff/rules.mk -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/cid/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/cid/Jamfile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/cid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/cid/rules.mk -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/gzip/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/gzip/Jamfile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/gzip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/gzip/zlib.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/gzip/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/gzip/zutil.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/gzip/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/gzip/zutil.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/lzw/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/lzw/Jamfile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/lzw/ftlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/lzw/ftlzw.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/lzw/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/lzw/rules.mk -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/pcf/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/pcf/Jamfile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/pcf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/pcf/README -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/pcf/pcf.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/pcf/pcf.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/pcf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/pcf/rules.mk -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/pfr/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/pfr/Jamfile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/pfr/pfr.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/pfr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/pfr/rules.mk -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/psaux/psft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/psaux/psft.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/psaux/psft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/psaux/psft.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/sfnt/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/sfnt/Jamfile -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/sfnt/ttbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/sfnt/ttbdf.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/sfnt/ttbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/sfnt/ttbdf.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/sfnt/ttmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/sfnt/ttmtx.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/src/sfnt/ttmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/src/sfnt/ttmtx.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/version.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/version.sed -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/freetype2100/vms_make.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/freetype2100/vms_make.com -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/glad/bak/mac/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/glad/bak/mac/src/glad.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/glad/bak/origin/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/glad/bak/origin/src/glad.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/glad/glad_generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/glad/glad_generate.bat -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/glad/glad_generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/glad/glad_generate.sh -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/glad/include/glad/glad.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/glad/include/glad/glad_glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/glad/include/glad/glad_glx.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/glad/include/glad/glad_wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/glad/include/glad/glad_wgl.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/glad/src/glad.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/glad/src/glad_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/glad/src/glad_glx.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/glad/src/glad_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/glad/src/glad_wgl.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/.travis.yml -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/Makefile.am -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/Makefile.in -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/README -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/aclocal.m4 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/ansi2knr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/ansi2knr.1 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/ansi2knr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/ansi2knr.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/cderror.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/cdjpeg.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/cdjpeg.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/change.log -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/cjpeg.1 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/cjpeg.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/ckconfig.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/cmake/dist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/cmake/dist.cmake -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/coderules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/coderules.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/config.guess -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/config.sub -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/configure -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/configure.ac -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/depcomp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/dist.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/dist.info -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/djpeg.1 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/djpeg.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/example.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/filelist.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/install-sh -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/install.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jaricom.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcapimin.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcapistd.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcarith.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jccoefct.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jccolor.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcdctmgr.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jchuff.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcinit.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcmainct.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcmarker.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcmaster.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcomapi.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.bcc -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.cfg -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.dj -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.h.cmake -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.mac -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.manx -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.mc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.sas -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.st -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.vc -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.vms -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jconfig.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jconfig.wat -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcparam.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcprepct.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jcsample.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jctrans.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdapimin.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdapistd.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdarith.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdatadst.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdatasrc.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdcoefct.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdcolor.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdct.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jddctmgr.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdhuff.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdinput.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdmainct.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdmarker.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdmaster.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdmerge.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdpostct.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdsample.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jdtrans.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jerror.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jerror.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jfdctflt.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jfdctfst.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jfdctint.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jidctflt.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jidctfst.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jidctint.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jinclude.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jmemansi.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jmemdos.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jmemdosa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jmemdosa.asm -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jmemmac.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jmemmgr.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jmemname.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jmemnobs.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jmemsys.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jmorecfg.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jpeg_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jpeg_test.cmake -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jpegint.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jpeglib.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jpegtran.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jpegtran.1 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jpegtran.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jquant1.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jquant2.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jutils.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/jversion.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/libjpeg.map: -------------------------------------------------------------------------------- 1 | LIBJPEG_9.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/libjpeg.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/ltmain.sh -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makcjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makcjpeg.st -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makdjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makdjpeg.st -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makeadsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makeadsw.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makeasln.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makeasln.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makecdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makecdep.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makecdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makecdsp.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makecfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makecfil.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makecmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makecmak.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makecvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makecvcx.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makeddep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makeddep.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makeddsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makeddsp.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makedfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makedfil.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makedmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makedmak.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makedvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makedvcx.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makefile.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makefile.ansi -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makefile.bcc -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makefile.dj -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makefile.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makefile.manx -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makefile.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makefile.mc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makefile.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makefile.mms -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makefile.sas -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makefile.unix -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makefile.vc -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makefile.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makefile.vms -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makefile.wat -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makejdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makejdep.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makejdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makejdsp.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makejdsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makejdsw.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makejfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makejfil.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makejmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makejmak.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makejsln.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makejsln.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makejvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makejvcx.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makeproj.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makeproj.mac -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makerdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makerdep.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makerdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makerdsp.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makerfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makerfil.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makermak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makermak.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makervcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makervcx.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/maketdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/maketdep.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/maketdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/maketdsp.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/maketfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/maketfil.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/maketmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/maketmak.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/maketvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/maketvcx.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makewdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makewdep.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makewdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makewdsp.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makewfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makewfil.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makewmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makewmak.vc6 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makewvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makewvcx.v10 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makljpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makljpeg.st -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/maktjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/maktjpeg.st -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/makvms.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/makvms.opt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/missing -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/rdbmp.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/rdcolmap.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/rdgif.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/rdjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/rdjpgcom.1 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/rdjpgcom.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/rdppm.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/rdrle.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/rdswitch.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/rdtarga.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/structure.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/testimg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/testimg.bmp -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/testimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/testimg.jpg -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/testimg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/testimg.ppm -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/testimgp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/testimgp.jpg -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/testorig.jpg -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/testprog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/testprog.jpg -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/transupp.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/transupp.h -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/usage.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/wizard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/wizard.txt -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/wrbmp.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/wrgif.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/wrjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/wrjpgcom.1 -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/wrjpgcom.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/wrppm.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/wrrle.c -------------------------------------------------------------------------------- /PhantomEngine/Dependencies/src/libjpeg/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Dependencies/src/libjpeg/wrtarga.c -------------------------------------------------------------------------------- /PhantomEngine/Game/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Game/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Game/Dota3DOpengl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Game/Dota3DOpengl/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Game/Dota3DOpengl/DefaultGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Game/Dota3DOpengl/DefaultGame.cpp -------------------------------------------------------------------------------- /PhantomEngine/Game/Dota3DWindows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Game/Dota3DWindows/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Game/Dota3DWindows/DefaultGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Game/Dota3DWindows/DefaultGame.cpp -------------------------------------------------------------------------------- /PhantomEngine/Game/DotaAwc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Game/DotaAwc/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Game/DotaAwc/DefaultGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Game/DotaAwc/DefaultGame.cpp -------------------------------------------------------------------------------- /PhantomEngine/Game/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Game/test/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Game/test/OgexParserTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Game/test/OgexParserTest.cpp -------------------------------------------------------------------------------- /PhantomEngine/Game/zjpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Game/zjpeg/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Game/zjpeg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Game/zjpeg/main.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/ability/Ability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/ability/Ability.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/ability/IAnimatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/ability/IAnimatable.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/AnimationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/AnimationManager.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/AnimationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/AnimationManager.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/AssetLoadManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/AssetLoadManager.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/AssetLoadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/AssetLoadManager.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/BaseApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/BaseApplication.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/BaseApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/BaseApplication.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/BehaviourManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/BehaviourManager.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/BehaviourManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/BehaviourManager.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/DebugManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/DebugManager.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/DebugManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/DebugManager.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/GfxConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/GfxConfiguration.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/GraphicsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/GraphicsManager.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/GraphicsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/GraphicsManager.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/InputManager.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/InputManager.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/Portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/Portable.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/SceneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/SceneManager.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/SceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/SceneManager.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/Singleton.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/buffer.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/common/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/common/utility.hpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/components/Classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/components/Classes.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/components/Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/components/Classes.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/components/main.cpp_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/components/main.cpp_sample -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/eventQueue/EventManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/eventQueue/EventManager.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/eventQueue/EventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/eventQueue/EventManager.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/eventQueue/EventStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/eventQueue/EventStruct.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/eventQueue/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/eventQueue/readme.txt -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/graphics/GfxStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/graphics/GfxStruct.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/graphics/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/graphics/Image.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/graphics/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/graphics/Image.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/graphics/gui/GuiCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/graphics/gui/GuiCommon.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/graphics/textCore/FontEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/graphics/textCore/FontEngine.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/interface/IApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/interface/IApplication.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/interface/IInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/interface/IInterface.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/interface/IRuntimeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/interface/IRuntimeModule.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/interface/ImageParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/interface/ImageParser.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/interface/SceneParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/interface/SceneParser.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/main.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/AngleUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/AngleUtils.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/PhMaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/PhMaths.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/algorithm/Bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/algorithm/Bezier.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/algorithm/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/algorithm/Curve.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/algorithm/Linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/algorithm/Linear.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/algorithm/newtonRapson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/algorithm/newtonRapson.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/algorithm/sort.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/algorithm/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/algorithm/sort.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/mat3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/mat3.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/mat3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/mat3.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/mat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/mat4.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/mat4.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/vector.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/maths/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/maths/vector.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/parser/BMPParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/parser/BMPParser.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/parser/JpegParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/parser/JpegParser.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/parser/OpengexParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/parser/OpengexParser.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/parser/opengexparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/parser/opengexparser.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/Scene.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/Scene.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneBaseNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneBaseNode.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneBaseObject.cpp: -------------------------------------------------------------------------------- 1 | #include "SceneBaseObject.h" 2 | using namespace Phantom; 3 | -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneBaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneBaseObject.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneGeometryNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneGeometryNode.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneHeaders.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneLightNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneLightNode.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectAnimation.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectAnimation.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectGeometry.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectIndexArray .cpp: -------------------------------------------------------------------------------- 1 | #include "SceneObjectIndexArray.h" 2 | -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectIndexArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectIndexArray.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectLight.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectMaterial.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectMesh.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectMesh.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectSkeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectSkeleton.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectSkeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectSkeleton.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectSkin.cpp: -------------------------------------------------------------------------------- 1 | #include "SceneObjectSkin.h" 2 | 3 | using namespace Phantom; 4 | 5 | -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectSkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectSkin.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectTexture.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectTrack.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectTrack.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectTransform.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectVertexArray.cpp: -------------------------------------------------------------------------------- 1 | #include "SceneObjectVertexArray.h" 2 | 3 | using namespace Phantom; 4 | 5 | -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneObjectVertexArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneObjectVertexArray.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/SceneOjbectTypeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/SceneOjbectTypeDef.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/TreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/TreeNode.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/camera.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/scene/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/scene/camera.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/test.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/utils/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/utils/Timer.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/utils/fileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/utils/fileUtils.h -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/utils/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/utils/guid.cpp -------------------------------------------------------------------------------- /PhantomEngine/PhantomCore/src/utils/guid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/PhantomCore/src/utils/guid.hpp -------------------------------------------------------------------------------- /PhantomEngine/Platform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/AppDelegate.h -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/AppDelegate.m -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/CocoaApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/CocoaApplication.h -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/CocoaApplication.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/CocoaApplication.mm -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/CocoaMetalApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/CocoaMetalApplication.h -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/CocoaMetalApplication.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/CocoaMetalApplication.mm -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/CocoaOpenGLApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/CocoaOpenGLApplication.h -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/CocoaOpenGLApplication.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/CocoaOpenGLApplication.mm -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/GLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/GLView.h -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/GLView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/GLView.mm -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/MetalView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/MetalView.h -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/MetalView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/MetalView.mm -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/PosixTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/PosixTimer.cpp -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/WindowDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/WindowDelegate.h -------------------------------------------------------------------------------- /PhantomEngine/Platform/Darwin/WindowDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Darwin/WindowDelegate.m -------------------------------------------------------------------------------- /PhantomEngine/Platform/Empty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Empty/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Platform/Empty/DefaultApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Empty/DefaultApplication.cpp -------------------------------------------------------------------------------- /PhantomEngine/Platform/Empty/DefaultApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Empty/DefaultApplication.h -------------------------------------------------------------------------------- /PhantomEngine/Platform/Empty/PosixTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Empty/PosixTimer.cpp -------------------------------------------------------------------------------- /PhantomEngine/Platform/Windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Windows/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Platform/Windows/OpenGLApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Windows/OpenGLApplication.cpp -------------------------------------------------------------------------------- /PhantomEngine/Platform/Windows/OpenGLApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Windows/OpenGLApplication.h -------------------------------------------------------------------------------- /PhantomEngine/Platform/Windows/Win32Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Windows/Win32Timer.cpp -------------------------------------------------------------------------------- /PhantomEngine/Platform/Windows/WindowsApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Windows/WindowsApplication.cpp -------------------------------------------------------------------------------- /PhantomEngine/Platform/Windows/WindowsApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Platform/Windows/WindowsApplication.h -------------------------------------------------------------------------------- /PhantomEngine/RHI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/RHI/D2d/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(D2dRHI 2 | D2dGraphicsManager.cpp 3 | ) 4 | -------------------------------------------------------------------------------- /PhantomEngine/RHI/D2d/D2dGraphicsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/D2d/D2dGraphicsManager.cpp -------------------------------------------------------------------------------- /PhantomEngine/RHI/D2d/D2dGraphicsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/D2d/D2dGraphicsManager.h -------------------------------------------------------------------------------- /PhantomEngine/RHI/D3d/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(D3dRHI 2 | D3d12GraphicsManager.cpp 3 | ) 4 | 5 | -------------------------------------------------------------------------------- /PhantomEngine/RHI/D3d/D3d12GraphicsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/D3d/D3d12GraphicsManager.cpp -------------------------------------------------------------------------------- /PhantomEngine/RHI/D3d/D3d12GraphicsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/D3d/D3d12GraphicsManager.h -------------------------------------------------------------------------------- /PhantomEngine/RHI/Empty/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PhantomEngine/RHI/Metal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/Metal/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/RHI/Metal/Metal2GraphicsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/Metal/Metal2GraphicsManager.h -------------------------------------------------------------------------------- /PhantomEngine/RHI/Metal/Metal2GraphicsManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/Metal/Metal2GraphicsManager.mm -------------------------------------------------------------------------------- /PhantomEngine/RHI/Metal/Metal2Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/Metal/Metal2Renderer.h -------------------------------------------------------------------------------- /PhantomEngine/RHI/Metal/Metal2Renderer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/Metal/Metal2Renderer.mm -------------------------------------------------------------------------------- /PhantomEngine/RHI/Metal/MetalConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/Metal/MetalConfig.hpp -------------------------------------------------------------------------------- /PhantomEngine/RHI/OpenGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/OpenGL/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/RHI/OpenGL/OpenGLGraphicsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/OpenGL/OpenGLGraphicsManager.cpp -------------------------------------------------------------------------------- /PhantomEngine/RHI/OpenGL/OpenGLGraphicsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/OpenGL/OpenGLGraphicsManager.h -------------------------------------------------------------------------------- /PhantomEngine/RHI/OpenGL/OpenGLShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/OpenGL/OpenGLShader.cpp -------------------------------------------------------------------------------- /PhantomEngine/RHI/OpenGL/OpenGLShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/RHI/OpenGL/OpenGLShader.h -------------------------------------------------------------------------------- /PhantomEngine/Tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Tests/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Tests/Memory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Tests/Memory/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Tests/Memory/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Tests/Memory/main.cpp -------------------------------------------------------------------------------- /PhantomEngine/Tests/Memory/src/PhAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Tests/Memory/src/PhAllocator.cpp -------------------------------------------------------------------------------- /PhantomEngine/Tests/Memory/src/PhAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Tests/Memory/src/PhAllocator.h -------------------------------------------------------------------------------- /PhantomEngine/Tests/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Tests/samples/CMakeLists.txt -------------------------------------------------------------------------------- /PhantomEngine/Tests/samples/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/Tests/samples/src/main.cpp -------------------------------------------------------------------------------- /PhantomEngine/build_freetype2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/build_freetype2.bat -------------------------------------------------------------------------------- /PhantomEngine/build_freetype2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/build_freetype2.sh -------------------------------------------------------------------------------- /PhantomEngine/build_imglib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/build_imglib.bat -------------------------------------------------------------------------------- /PhantomEngine/build_imglib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/build_imglib.sh -------------------------------------------------------------------------------- /PhantomEngine/build_opengex.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/build_opengex.bat -------------------------------------------------------------------------------- /PhantomEngine/build_opengex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/build_opengex.sh -------------------------------------------------------------------------------- /PhantomEngine/cbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/cbuild.bat -------------------------------------------------------------------------------- /PhantomEngine/cbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/cbuild.sh -------------------------------------------------------------------------------- /PhantomEngine/cmake/android.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/cmake/android.cmake -------------------------------------------------------------------------------- /PhantomEngine/projectConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/projectConfig.h -------------------------------------------------------------------------------- /PhantomEngine/projectConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/PhantomEngine/projectConfig.h.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/README.md -------------------------------------------------------------------------------- /discard/opengl_tmp/GIndexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/GIndexBuffer.cpp -------------------------------------------------------------------------------- /discard/opengl_tmp/GIndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/GIndexBuffer.h -------------------------------------------------------------------------------- /discard/opengl_tmp/GVertexArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/GVertexArray.cpp -------------------------------------------------------------------------------- /discard/opengl_tmp/GVertexArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/GVertexArray.h -------------------------------------------------------------------------------- /discard/opengl_tmp/GVertexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/GVertexBuffer.cpp -------------------------------------------------------------------------------- /discard/opengl_tmp/GVertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/GVertexBuffer.h -------------------------------------------------------------------------------- /discard/opengl_tmp/renderable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/renderable.cpp -------------------------------------------------------------------------------- /discard/opengl_tmp/renderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/renderable.h -------------------------------------------------------------------------------- /discard/opengl_tmp/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/renderer.cpp -------------------------------------------------------------------------------- /discard/opengl_tmp/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/renderer.h -------------------------------------------------------------------------------- /discard/opengl_tmp/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/shader.cpp -------------------------------------------------------------------------------- /discard/opengl_tmp/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/shader.h -------------------------------------------------------------------------------- /discard/opengl_tmp/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/window.cpp -------------------------------------------------------------------------------- /discard/opengl_tmp/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/discard/opengl_tmp/window.h -------------------------------------------------------------------------------- /doc/SceneStructures.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/doc/SceneStructures.vsdx -------------------------------------------------------------------------------- /refs/OpenGex-Import.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/refs/OpenGex-Import.zip -------------------------------------------------------------------------------- /refs/crossguid-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/refs/crossguid-master.zip -------------------------------------------------------------------------------- /refs/matrix.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh29110/PhantomEngine/HEAD/refs/matrix.zip --------------------------------------------------------------------------------