├── .vscode ├── c_cpp_properties.json ├── configurationCache.log ├── launch.json ├── settings.json └── tasks.json ├── Biomes.hpp ├── Block.hpp ├── BufferManager.cpp ├── BufferManager.hpp ├── Camera.cpp ├── Camera.hpp ├── Chunk.cpp ├── Chunk.hpp ├── ChunkManager.cpp ├── ChunkManager.hpp ├── EBO.cpp ├── EBO.hpp ├── FastNoise.dll ├── GUI.cpp ├── GUI.hpp ├── License ├── Player.cpp ├── Player.hpp ├── README.md ├── ShaderManager.cpp ├── ShaderManager.hpp ├── Sky.cpp ├── Sky.hpp ├── TextureArray.cpp ├── TextureArray.hpp ├── VAO.cpp ├── VAO.hpp ├── VBO.cpp ├── VBO.hpp ├── WindowManager.cpp ├── WindowManager.hpp ├── WorldConstants.hpp ├── app ├── app.exe ├── app.ilk ├── app.pdb ├── dependencies ├── include │ ├── FastNoise │ │ ├── FastNoise.h │ │ ├── FastNoise_BuildList.inl │ │ ├── FastNoise_C.h │ │ ├── FastNoise_Config.h │ │ ├── FastNoise_Export.h │ │ ├── Generators │ │ │ ├── BasicGenerators.h │ │ │ ├── BasicGenerators.inl │ │ │ ├── Blends.h │ │ │ ├── Blends.inl │ │ │ ├── Cellular.h │ │ │ ├── Cellular.inl │ │ │ ├── DomainWarp.h │ │ │ ├── DomainWarp.inl │ │ │ ├── DomainWarpFractal.h │ │ │ ├── DomainWarpFractal.inl │ │ │ ├── Fractal.h │ │ │ ├── Fractal.inl │ │ │ ├── Generator.h │ │ │ ├── Generator.inl │ │ │ ├── Modifiers.h │ │ │ ├── Modifiers.inl │ │ │ ├── Perlin.h │ │ │ ├── Perlin.inl │ │ │ ├── Simplex.h │ │ │ ├── Simplex.inl │ │ │ ├── Utils.inl │ │ │ ├── Value.h │ │ │ └── Value.inl │ │ ├── Metadata.h │ │ └── SmartNode.h │ ├── FastSIMD │ │ ├── FastSIMD.h │ │ ├── FastSIMD_Config.h │ │ ├── FastSIMD_Export.h │ │ ├── FunctionList.h │ │ ├── InlInclude.h │ │ └── SIMDTypeList.h │ ├── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h │ ├── KHR │ │ └── khrplatform.h │ ├── glad │ │ └── glad.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_int2x2.hpp │ │ │ ├── matrix_int2x2_sized.hpp │ │ │ ├── matrix_int2x3.hpp │ │ │ ├── matrix_int2x3_sized.hpp │ │ │ ├── matrix_int2x4.hpp │ │ │ ├── matrix_int2x4_sized.hpp │ │ │ ├── matrix_int3x2.hpp │ │ │ ├── matrix_int3x2_sized.hpp │ │ │ ├── matrix_int3x3.hpp │ │ │ ├── matrix_int3x3_sized.hpp │ │ │ ├── matrix_int3x4.hpp │ │ │ ├── matrix_int3x4_sized.hpp │ │ │ ├── matrix_int4x2.hpp │ │ │ ├── matrix_int4x2_sized.hpp │ │ │ ├── matrix_int4x3.hpp │ │ │ ├── matrix_int4x3_sized.hpp │ │ │ ├── matrix_int4x4.hpp │ │ │ ├── matrix_int4x4_sized.hpp │ │ │ ├── matrix_projection.hpp │ │ │ ├── matrix_projection.inl │ │ │ ├── matrix_relational.hpp │ │ │ ├── matrix_relational.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── matrix_uint2x2.hpp │ │ │ ├── matrix_uint2x2_sized.hpp │ │ │ ├── matrix_uint2x3.hpp │ │ │ ├── matrix_uint2x3_sized.hpp │ │ │ ├── matrix_uint2x4.hpp │ │ │ ├── matrix_uint2x4_sized.hpp │ │ │ ├── matrix_uint3x2.hpp │ │ │ ├── matrix_uint3x2_sized.hpp │ │ │ ├── matrix_uint3x3.hpp │ │ │ ├── matrix_uint3x3_sized.hpp │ │ │ ├── matrix_uint3x4.hpp │ │ │ ├── matrix_uint3x4_sized.hpp │ │ │ ├── matrix_uint4x2.hpp │ │ │ ├── matrix_uint4x2_sized.hpp │ │ │ ├── matrix_uint4x3.hpp │ │ │ ├── matrix_uint4x3_sized.hpp │ │ │ ├── matrix_uint4x4.hpp │ │ │ ├── matrix_uint4x4_sized.hpp │ │ │ ├── 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_integer.hpp │ │ │ ├── scalar_integer.inl │ │ │ ├── scalar_packing.hpp │ │ │ ├── scalar_packing.inl │ │ │ ├── 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_sized.hpp │ │ │ ├── vector_int2.hpp │ │ │ ├── vector_int2_sized.hpp │ │ │ ├── vector_int3.hpp │ │ │ ├── vector_int3_sized.hpp │ │ │ ├── vector_int4.hpp │ │ │ ├── vector_int4_sized.hpp │ │ │ ├── vector_integer.hpp │ │ │ ├── vector_integer.inl │ │ │ ├── vector_packing.hpp │ │ │ ├── vector_packing.inl │ │ │ ├── vector_relational.hpp │ │ │ ├── vector_relational.inl │ │ │ ├── vector_uint1.hpp │ │ │ ├── vector_uint1_sized.hpp │ │ │ ├── vector_uint2.hpp │ │ │ ├── vector_uint2_sized.hpp │ │ │ ├── vector_uint3.hpp │ │ │ ├── vector_uint3_sized.hpp │ │ │ ├── vector_uint4.hpp │ │ │ ├── vector_uint4_sized.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 │ │ │ ├── neon.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── nlohmann │ │ └── json.hpp │ └── stb │ │ └── stb_image.h ├── library │ ├── libFastNoise.dylib │ ├── libFastNoiseD.dylib │ └── libglfw.3.3.dylib └── library_windows │ ├── FastNoise.lib │ └── glfw3dll.lib ├── glad.c ├── glfw3.dll ├── main.cpp ├── misc ├── CompressionTest.cpp ├── PackedVectorData.cpp ├── PackedVectorData.hpp ├── PackedVectorData_build.sh ├── PackedVectorData_test.cpp ├── PackerFunction.cpp ├── PackerFunction_build.sh ├── PackerFunction_test.cpp ├── README.md ├── a.exe ├── a.out ├── clone_screenshot.png ├── mac_tasks.json └── windows_tasks.json ├── resources ├── Models │ ├── Light.cpp │ └── README.md ├── Textures │ ├── grass_side.jpeg │ ├── grass_top.jpeg │ ├── ice.png │ ├── leaves.png │ ├── minecraft_dirt.jpeg │ ├── oak_log.jpeg │ ├── oak_planks.png │ ├── sand.png │ ├── snow.jpeg │ ├── stone.png │ └── water.png └── blocks.json └── shaders ├── cube.frag ├── cube.vert ├── gui.frag ├── gui.vert ├── lighting.frag └── lighting.vert /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/configurationCache.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/.vscode/configurationCache.log -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Biomes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/Biomes.hpp -------------------------------------------------------------------------------- /Block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/Block.hpp -------------------------------------------------------------------------------- /BufferManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/BufferManager.cpp -------------------------------------------------------------------------------- /BufferManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/BufferManager.hpp -------------------------------------------------------------------------------- /Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/Camera.cpp -------------------------------------------------------------------------------- /Camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/Camera.hpp -------------------------------------------------------------------------------- /Chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/Chunk.cpp -------------------------------------------------------------------------------- /Chunk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/Chunk.hpp -------------------------------------------------------------------------------- /ChunkManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/ChunkManager.cpp -------------------------------------------------------------------------------- /ChunkManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/ChunkManager.hpp -------------------------------------------------------------------------------- /EBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/EBO.cpp -------------------------------------------------------------------------------- /EBO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/EBO.hpp -------------------------------------------------------------------------------- /FastNoise.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/FastNoise.dll -------------------------------------------------------------------------------- /GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/GUI.cpp -------------------------------------------------------------------------------- /GUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/GUI.hpp -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/License -------------------------------------------------------------------------------- /Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/Player.cpp -------------------------------------------------------------------------------- /Player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/Player.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/README.md -------------------------------------------------------------------------------- /ShaderManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/ShaderManager.cpp -------------------------------------------------------------------------------- /ShaderManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/ShaderManager.hpp -------------------------------------------------------------------------------- /Sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/Sky.cpp -------------------------------------------------------------------------------- /Sky.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/Sky.hpp -------------------------------------------------------------------------------- /TextureArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/TextureArray.cpp -------------------------------------------------------------------------------- /TextureArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/TextureArray.hpp -------------------------------------------------------------------------------- /VAO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/VAO.cpp -------------------------------------------------------------------------------- /VAO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/VAO.hpp -------------------------------------------------------------------------------- /VBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/VBO.cpp -------------------------------------------------------------------------------- /VBO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/VBO.hpp -------------------------------------------------------------------------------- /WindowManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/WindowManager.cpp -------------------------------------------------------------------------------- /WindowManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/WindowManager.hpp -------------------------------------------------------------------------------- /WorldConstants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/WorldConstants.hpp -------------------------------------------------------------------------------- /app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/app -------------------------------------------------------------------------------- /app.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/app.exe -------------------------------------------------------------------------------- /app.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/app.ilk -------------------------------------------------------------------------------- /app.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/app.pdb -------------------------------------------------------------------------------- /dependencies/include/FastNoise/FastNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/FastNoise.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/FastNoise_BuildList.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/FastNoise_BuildList.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/FastNoise_C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/FastNoise_C.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/FastNoise_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/FastNoise_Config.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/FastNoise_Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/FastNoise_Export.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/BasicGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/BasicGenerators.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/BasicGenerators.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/BasicGenerators.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Blends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Blends.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Blends.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Blends.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Cellular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Cellular.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Cellular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Cellular.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/DomainWarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/DomainWarp.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/DomainWarp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/DomainWarp.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/DomainWarpFractal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/DomainWarpFractal.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/DomainWarpFractal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/DomainWarpFractal.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Fractal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Fractal.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Fractal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Fractal.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Generator.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Generator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Generator.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Modifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Modifiers.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Modifiers.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Modifiers.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Perlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Perlin.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Perlin.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Perlin.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Simplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Simplex.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Simplex.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Simplex.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Utils.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Utils.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Value.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Generators/Value.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Generators/Value.inl -------------------------------------------------------------------------------- /dependencies/include/FastNoise/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/Metadata.h -------------------------------------------------------------------------------- /dependencies/include/FastNoise/SmartNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastNoise/SmartNode.h -------------------------------------------------------------------------------- /dependencies/include/FastSIMD/FastSIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastSIMD/FastSIMD.h -------------------------------------------------------------------------------- /dependencies/include/FastSIMD/FastSIMD_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastSIMD/FastSIMD_Config.h -------------------------------------------------------------------------------- /dependencies/include/FastSIMD/FastSIMD_Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastSIMD/FastSIMD_Export.h -------------------------------------------------------------------------------- /dependencies/include/FastSIMD/FunctionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastSIMD/FunctionList.h -------------------------------------------------------------------------------- /dependencies/include/FastSIMD/InlInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastSIMD/InlInclude.h -------------------------------------------------------------------------------- /dependencies/include/FastSIMD/SIMDTypeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/FastSIMD/SIMDTypeList.h -------------------------------------------------------------------------------- /dependencies/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /dependencies/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /dependencies/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /dependencies/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glad/glad.h -------------------------------------------------------------------------------- /dependencies/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/exponential.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int2x2_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int2x3_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int2x4_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int3x2_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int3x3_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int3x4_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int4x2_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int4x3_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_int4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_int4x4_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint2x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint2x2_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint2x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint2x3_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint2x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint2x4_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint3x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint3x2_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint3x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint3x3_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint3x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint3x4_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint4x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint4x2_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint4x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint4x3_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint4x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/matrix_uint4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/matrix_uint4x4_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_packing.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_int1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_int1_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_int2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_int2_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_int3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_int3_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_int4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_int4_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_uint1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_uint1_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_uint2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_uint2_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_uint3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_uint3_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_uint4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_uint4_sized.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /dependencies/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/fwd.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/geometric.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/glm.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/functions.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /dependencies/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/matrix.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/packing.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/simd/common.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/simd/integer.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/simd/neon.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/simd/packing.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/simd/platform.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /dependencies/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/vec2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/vec3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/vec4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /dependencies/include/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/include/stb/stb_image.h -------------------------------------------------------------------------------- /dependencies/library/libFastNoise.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/library/libFastNoise.dylib -------------------------------------------------------------------------------- /dependencies/library/libFastNoiseD.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/library/libFastNoiseD.dylib -------------------------------------------------------------------------------- /dependencies/library/libglfw.3.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/library/libglfw.3.3.dylib -------------------------------------------------------------------------------- /dependencies/library_windows/FastNoise.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/library_windows/FastNoise.lib -------------------------------------------------------------------------------- /dependencies/library_windows/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/dependencies/library_windows/glfw3dll.lib -------------------------------------------------------------------------------- /glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/glad.c -------------------------------------------------------------------------------- /glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/glfw3.dll -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/main.cpp -------------------------------------------------------------------------------- /misc/CompressionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/CompressionTest.cpp -------------------------------------------------------------------------------- /misc/PackedVectorData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/PackedVectorData.cpp -------------------------------------------------------------------------------- /misc/PackedVectorData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/PackedVectorData.hpp -------------------------------------------------------------------------------- /misc/PackedVectorData_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/PackedVectorData_build.sh -------------------------------------------------------------------------------- /misc/PackedVectorData_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/PackedVectorData_test.cpp -------------------------------------------------------------------------------- /misc/PackerFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/PackerFunction.cpp -------------------------------------------------------------------------------- /misc/PackerFunction_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/PackerFunction_build.sh -------------------------------------------------------------------------------- /misc/PackerFunction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/PackerFunction_test.cpp -------------------------------------------------------------------------------- /misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/README.md -------------------------------------------------------------------------------- /misc/a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/a.exe -------------------------------------------------------------------------------- /misc/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/a.out -------------------------------------------------------------------------------- /misc/clone_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/clone_screenshot.png -------------------------------------------------------------------------------- /misc/mac_tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/mac_tasks.json -------------------------------------------------------------------------------- /misc/windows_tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/misc/windows_tasks.json -------------------------------------------------------------------------------- /resources/Models/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Models/Light.cpp -------------------------------------------------------------------------------- /resources/Models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Models/README.md -------------------------------------------------------------------------------- /resources/Textures/grass_side.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Textures/grass_side.jpeg -------------------------------------------------------------------------------- /resources/Textures/grass_top.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Textures/grass_top.jpeg -------------------------------------------------------------------------------- /resources/Textures/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Textures/ice.png -------------------------------------------------------------------------------- /resources/Textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Textures/leaves.png -------------------------------------------------------------------------------- /resources/Textures/minecraft_dirt.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Textures/minecraft_dirt.jpeg -------------------------------------------------------------------------------- /resources/Textures/oak_log.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Textures/oak_log.jpeg -------------------------------------------------------------------------------- /resources/Textures/oak_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Textures/oak_planks.png -------------------------------------------------------------------------------- /resources/Textures/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Textures/sand.png -------------------------------------------------------------------------------- /resources/Textures/snow.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Textures/snow.jpeg -------------------------------------------------------------------------------- /resources/Textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Textures/stone.png -------------------------------------------------------------------------------- /resources/Textures/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/Textures/water.png -------------------------------------------------------------------------------- /resources/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/resources/blocks.json -------------------------------------------------------------------------------- /shaders/cube.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/shaders/cube.frag -------------------------------------------------------------------------------- /shaders/cube.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/shaders/cube.vert -------------------------------------------------------------------------------- /shaders/gui.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/shaders/gui.frag -------------------------------------------------------------------------------- /shaders/gui.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/shaders/gui.vert -------------------------------------------------------------------------------- /shaders/lighting.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/shaders/lighting.frag -------------------------------------------------------------------------------- /shaders/lighting.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finding-Fortune/Minecraft-OpenGL-Open-Fork/HEAD/shaders/lighting.vert --------------------------------------------------------------------------------