├── .gitignore ├── LICENCE ├── Prebuild.py ├── README.md ├── RealTimeGI.sln ├── RealTimeGI.vcxproj ├── RealTimeGI.vcxproj.filters ├── RealTimeGI.vcxproj.user ├── Resources ├── Models │ └── Sponza │ │ ├── 11474523244911310074.jpg │ │ ├── 11490520546946913238.jpg │ │ ├── 11968150294050148237.jpg │ │ ├── 1219024358953944284.jpg │ │ ├── 13196865903111448057.jpg │ │ ├── 13824894030729245199.jpg │ │ ├── 14650633544276105767.jpg │ │ ├── 15295713303328085182.jpg │ │ ├── 16885566240357350108.jpg │ │ ├── 17556969131407844942.jpg │ │ ├── 17876391417123941155.jpg │ │ ├── 2185409758123873465.jpg │ │ ├── 2411100444841994089.jpg │ │ ├── 2775690330959970771.jpg │ │ ├── 2969916736137545357.jpg │ │ ├── 3371964815757888145.jpg │ │ ├── 3455394979645218238.jpg │ │ ├── 466164707995436622.jpg │ │ ├── 4675343432951571524.jpg │ │ ├── 4871783166746854860.jpg │ │ ├── 4975155472559461469.jpg │ │ ├── 5792855332885324923.jpg │ │ ├── 5823059166183034438.jpg │ │ ├── 6047387724914829168.jpg │ │ ├── 6151467286084645207.jpg │ │ ├── 6772804448157695701.jpg │ │ ├── 7268504077753552595.jpg │ │ ├── 7441062115984513793.jpg │ │ ├── 755318871556304029.jpg │ │ ├── 7815564343179553343.jpg │ │ ├── 8051790464816141987.jpg │ │ ├── 8114461559286000061.jpg │ │ ├── 8481240838833932244.jpg │ │ ├── 8503262930880235456.jpg │ │ ├── 8747919177698443163.jpg │ │ ├── 8750083169368950601.jpg │ │ ├── 8783994986360286082.jpg │ │ ├── 9288698199695299068.jpg │ │ ├── 9916269861720640319.jpg │ │ ├── Sponza.bin │ │ ├── Sponza.gltf │ │ ├── Sponza.rtgi │ │ ├── Sponza_Light_Probes.rtgi │ │ └── copyright.txt ├── Shaders │ ├── Common.glsl │ ├── CommonLighting.glsl │ ├── CubeCaptureFrag.glsl │ ├── CubeCaptureGeom.glsl │ ├── FXAA_3_11.glsl │ ├── FinalBlit.glsl │ ├── IBLFilter.glsl │ ├── IrradianceVolume.glsl │ ├── LightProbe.glsl │ ├── LightingPass.glsl │ ├── MeshFrag.glsl │ ├── MeshVert.glsl │ ├── PostProcess.glsl │ ├── ScreenVert.glsl │ ├── SphereFrag.glsl │ ├── SphereGeom.glsl │ ├── SphereVert.glsl │ └── VisualizePass.glsl └── Textures │ ├── Default_BRDF.png │ └── Default_White.png ├── Source ├── AppUser.cpp ├── AppUser.h ├── AppWindow.cpp ├── AppWindow.h ├── Application.cpp ├── Application.h ├── Core │ ├── Box.h │ ├── Core.cpp │ ├── Core.h │ ├── CoreTypes.h │ ├── Delegate.h │ ├── Frustum.cpp │ ├── Frustum.h │ ├── GISystem.cpp │ ├── GISystem.h │ ├── Image2D.cpp │ ├── Image2D.h │ ├── Material.cpp │ ├── Material.h │ ├── Mesh.cpp │ ├── Mesh.h │ ├── Transform.cpp │ ├── Transform.h │ └── UI │ │ └── ImGUI │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_glfw.cpp │ │ ├── imgui_impl_glfw.h │ │ ├── imgui_impl_vulkan.cpp │ │ ├── imgui_impl_vulkan.h │ │ ├── imgui_internal.h │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h ├── Importers │ ├── GLTFImporter.cpp │ ├── GLTFImporter.h │ ├── OBJImporter.cpp │ ├── OBJImporter.h │ ├── RTGIImporter.cpp │ └── RTGIImporter.h ├── Main.cpp ├── Render │ ├── RenderData │ │ ├── Primitives │ │ │ ├── IRenderPrimitives.h │ │ │ ├── RenderBox.cpp │ │ │ ├── RenderBox.h │ │ │ ├── RenderMesh.cpp │ │ │ ├── RenderMesh.h │ │ │ ├── RenderSphere.cpp │ │ │ └── RenderSphere.h │ │ ├── RenderImage.cpp │ │ ├── RenderImage.h │ │ ├── RenderLight.cpp │ │ ├── RenderLight.h │ │ ├── RenderScene.cpp │ │ ├── RenderScene.h │ │ ├── RenderShadow.cpp │ │ ├── RenderShadow.h │ │ ├── RenderTypes.h │ │ ├── Shaders │ │ │ ├── RenderMaterial.cpp │ │ │ ├── RenderMaterial.h │ │ │ ├── RenderShader.cpp │ │ │ ├── RenderShader.h │ │ │ ├── RenderShaderBlocks.h │ │ │ ├── RenderUniform.cpp │ │ │ └── RenderUniform.h │ │ └── UI │ │ │ ├── RenderImGUI.cpp │ │ │ └── RenderImGUI.h │ ├── RenderStageLightProbes.cpp │ ├── RenderStageLightProbes.h │ ├── Renderer.cpp │ ├── Renderer.h │ ├── RendererPipeline.cpp │ ├── RendererPipeline.h │ └── VKInterface │ │ ├── VKIBuffer.cpp │ │ ├── VKIBuffer.h │ │ ├── VKICommandBuffer.cpp │ │ ├── VKICommandBuffer.h │ │ ├── VKIDescriptor.cpp │ │ ├── VKIDescriptor.h │ │ ├── VKIDevice.cpp │ │ ├── VKIDevice.h │ │ ├── VKIFramebuffer.cpp │ │ ├── VKIFramebuffer.h │ │ ├── VKIGraphicsPipeline.cpp │ │ ├── VKIGraphicsPipeline.h │ │ ├── VKIImage.cpp │ │ ├── VKIImage.h │ │ ├── VKIInstance.cpp │ │ ├── VKIInstance.h │ │ ├── VKIRenderPass.cpp │ │ ├── VKIRenderPass.h │ │ ├── VKISwapChain.cpp │ │ ├── VKISwapChain.h │ │ ├── VKISync.cpp │ │ ├── VKISync.h │ │ └── VKITypes.h └── Scene │ ├── Camera.h │ ├── IrradianceVolumeNode.cpp │ ├── IrradianceVolumeNode.h │ ├── LightNode.cpp │ ├── LightNode.h │ ├── LightProbeNode.cpp │ ├── LightProbeNode.h │ ├── MeshNode.cpp │ ├── MeshNode.h │ ├── Node.cpp │ ├── Node.h │ ├── Scene.cpp │ ├── Scene.h │ └── SceneGlobalSettings.h ├── ThirdParty ├── GLFW │ ├── Include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ └── glfw3.lib ├── ThirdParty_LICENSE_NOTICE.txt ├── glm │ └── Include │ │ └── glm │ │ ├── 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_integer.hpp │ │ ├── matrix_integer.inl │ │ ├── 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_reciprocal.hpp │ │ ├── scalar_reciprocal.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_reciprocal.hpp │ │ ├── vector_reciprocal.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 │ │ ├── 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 ├── json │ └── Include │ │ └── json │ │ └── json.hpp ├── stb │ └── Include │ │ └── stb_image.h ├── tinygltfloader │ ├── json.hpp │ ├── stb_image.h │ ├── stb_image_write.h │ └── tiny_gltf.h └── tinyobjloader │ └── Include │ └── tiny_obj_loader.h └── imgui.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/LICENCE -------------------------------------------------------------------------------- /Prebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Prebuild.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/README.md -------------------------------------------------------------------------------- /RealTimeGI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/RealTimeGI.sln -------------------------------------------------------------------------------- /RealTimeGI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/RealTimeGI.vcxproj -------------------------------------------------------------------------------- /RealTimeGI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/RealTimeGI.vcxproj.filters -------------------------------------------------------------------------------- /RealTimeGI.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/RealTimeGI.vcxproj.user -------------------------------------------------------------------------------- /Resources/Models/Sponza/11474523244911310074.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/11474523244911310074.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/11490520546946913238.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/11490520546946913238.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/11968150294050148237.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/11968150294050148237.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/1219024358953944284.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/1219024358953944284.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/13196865903111448057.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/13196865903111448057.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/13824894030729245199.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/13824894030729245199.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/14650633544276105767.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/14650633544276105767.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/15295713303328085182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/15295713303328085182.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/16885566240357350108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/16885566240357350108.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/17556969131407844942.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/17556969131407844942.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/17876391417123941155.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/17876391417123941155.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/2185409758123873465.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/2185409758123873465.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/2411100444841994089.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/2411100444841994089.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/2775690330959970771.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/2775690330959970771.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/2969916736137545357.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/2969916736137545357.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/3371964815757888145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/3371964815757888145.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/3455394979645218238.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/3455394979645218238.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/466164707995436622.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/466164707995436622.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/4675343432951571524.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/4675343432951571524.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/4871783166746854860.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/4871783166746854860.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/4975155472559461469.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/4975155472559461469.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/5792855332885324923.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/5792855332885324923.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/5823059166183034438.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/5823059166183034438.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/6047387724914829168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/6047387724914829168.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/6151467286084645207.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/6151467286084645207.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/6772804448157695701.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/6772804448157695701.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/7268504077753552595.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/7268504077753552595.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/7441062115984513793.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/7441062115984513793.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/755318871556304029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/755318871556304029.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/7815564343179553343.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/7815564343179553343.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/8051790464816141987.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/8051790464816141987.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/8114461559286000061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/8114461559286000061.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/8481240838833932244.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/8481240838833932244.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/8503262930880235456.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/8503262930880235456.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/8747919177698443163.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/8747919177698443163.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/8750083169368950601.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/8750083169368950601.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/8783994986360286082.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/8783994986360286082.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/9288698199695299068.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/9288698199695299068.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/9916269861720640319.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/9916269861720640319.jpg -------------------------------------------------------------------------------- /Resources/Models/Sponza/Sponza.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/Sponza.bin -------------------------------------------------------------------------------- /Resources/Models/Sponza/Sponza.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/Sponza.gltf -------------------------------------------------------------------------------- /Resources/Models/Sponza/Sponza.rtgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/Sponza.rtgi -------------------------------------------------------------------------------- /Resources/Models/Sponza/Sponza_Light_Probes.rtgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/Sponza_Light_Probes.rtgi -------------------------------------------------------------------------------- /Resources/Models/Sponza/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Models/Sponza/copyright.txt -------------------------------------------------------------------------------- /Resources/Shaders/Common.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/Common.glsl -------------------------------------------------------------------------------- /Resources/Shaders/CommonLighting.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/CommonLighting.glsl -------------------------------------------------------------------------------- /Resources/Shaders/CubeCaptureFrag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/CubeCaptureFrag.glsl -------------------------------------------------------------------------------- /Resources/Shaders/CubeCaptureGeom.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/CubeCaptureGeom.glsl -------------------------------------------------------------------------------- /Resources/Shaders/FXAA_3_11.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/FXAA_3_11.glsl -------------------------------------------------------------------------------- /Resources/Shaders/FinalBlit.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/FinalBlit.glsl -------------------------------------------------------------------------------- /Resources/Shaders/IBLFilter.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/IBLFilter.glsl -------------------------------------------------------------------------------- /Resources/Shaders/IrradianceVolume.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/IrradianceVolume.glsl -------------------------------------------------------------------------------- /Resources/Shaders/LightProbe.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/LightProbe.glsl -------------------------------------------------------------------------------- /Resources/Shaders/LightingPass.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/LightingPass.glsl -------------------------------------------------------------------------------- /Resources/Shaders/MeshFrag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/MeshFrag.glsl -------------------------------------------------------------------------------- /Resources/Shaders/MeshVert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/MeshVert.glsl -------------------------------------------------------------------------------- /Resources/Shaders/PostProcess.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/PostProcess.glsl -------------------------------------------------------------------------------- /Resources/Shaders/ScreenVert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/ScreenVert.glsl -------------------------------------------------------------------------------- /Resources/Shaders/SphereFrag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/SphereFrag.glsl -------------------------------------------------------------------------------- /Resources/Shaders/SphereGeom.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/SphereGeom.glsl -------------------------------------------------------------------------------- /Resources/Shaders/SphereVert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/SphereVert.glsl -------------------------------------------------------------------------------- /Resources/Shaders/VisualizePass.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Shaders/VisualizePass.glsl -------------------------------------------------------------------------------- /Resources/Textures/Default_BRDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Textures/Default_BRDF.png -------------------------------------------------------------------------------- /Resources/Textures/Default_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Resources/Textures/Default_White.png -------------------------------------------------------------------------------- /Source/AppUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/AppUser.cpp -------------------------------------------------------------------------------- /Source/AppUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/AppUser.h -------------------------------------------------------------------------------- /Source/AppWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/AppWindow.cpp -------------------------------------------------------------------------------- /Source/AppWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/AppWindow.h -------------------------------------------------------------------------------- /Source/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Application.cpp -------------------------------------------------------------------------------- /Source/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Application.h -------------------------------------------------------------------------------- /Source/Core/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Box.h -------------------------------------------------------------------------------- /Source/Core/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Core.cpp -------------------------------------------------------------------------------- /Source/Core/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Core.h -------------------------------------------------------------------------------- /Source/Core/CoreTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/CoreTypes.h -------------------------------------------------------------------------------- /Source/Core/Delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Delegate.h -------------------------------------------------------------------------------- /Source/Core/Frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Frustum.cpp -------------------------------------------------------------------------------- /Source/Core/Frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Frustum.h -------------------------------------------------------------------------------- /Source/Core/GISystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/GISystem.cpp -------------------------------------------------------------------------------- /Source/Core/GISystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/GISystem.h -------------------------------------------------------------------------------- /Source/Core/Image2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Image2D.cpp -------------------------------------------------------------------------------- /Source/Core/Image2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Image2D.h -------------------------------------------------------------------------------- /Source/Core/Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Material.cpp -------------------------------------------------------------------------------- /Source/Core/Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Material.h -------------------------------------------------------------------------------- /Source/Core/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Mesh.cpp -------------------------------------------------------------------------------- /Source/Core/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Mesh.h -------------------------------------------------------------------------------- /Source/Core/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Transform.cpp -------------------------------------------------------------------------------- /Source/Core/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/Transform.h -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imconfig.h -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imgui.cpp -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imgui.h -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imgui_demo.cpp -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imgui_draw.cpp -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imgui_impl_glfw.h -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imgui_internal.h -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imgui_widgets.cpp -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imstb_rectpack.h -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imstb_textedit.h -------------------------------------------------------------------------------- /Source/Core/UI/ImGUI/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Core/UI/ImGUI/imstb_truetype.h -------------------------------------------------------------------------------- /Source/Importers/GLTFImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Importers/GLTFImporter.cpp -------------------------------------------------------------------------------- /Source/Importers/GLTFImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Importers/GLTFImporter.h -------------------------------------------------------------------------------- /Source/Importers/OBJImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Importers/OBJImporter.cpp -------------------------------------------------------------------------------- /Source/Importers/OBJImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Importers/OBJImporter.h -------------------------------------------------------------------------------- /Source/Importers/RTGIImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Importers/RTGIImporter.cpp -------------------------------------------------------------------------------- /Source/Importers/RTGIImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Importers/RTGIImporter.h -------------------------------------------------------------------------------- /Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Main.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/Primitives/IRenderPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Primitives/IRenderPrimitives.h -------------------------------------------------------------------------------- /Source/Render/RenderData/Primitives/RenderBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Primitives/RenderBox.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/Primitives/RenderBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Primitives/RenderBox.h -------------------------------------------------------------------------------- /Source/Render/RenderData/Primitives/RenderMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Primitives/RenderMesh.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/Primitives/RenderMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Primitives/RenderMesh.h -------------------------------------------------------------------------------- /Source/Render/RenderData/Primitives/RenderSphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Primitives/RenderSphere.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/Primitives/RenderSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Primitives/RenderSphere.h -------------------------------------------------------------------------------- /Source/Render/RenderData/RenderImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/RenderImage.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/RenderImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/RenderImage.h -------------------------------------------------------------------------------- /Source/Render/RenderData/RenderLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/RenderLight.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/RenderLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/RenderLight.h -------------------------------------------------------------------------------- /Source/Render/RenderData/RenderScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/RenderScene.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/RenderScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/RenderScene.h -------------------------------------------------------------------------------- /Source/Render/RenderData/RenderShadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/RenderShadow.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/RenderShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/RenderShadow.h -------------------------------------------------------------------------------- /Source/Render/RenderData/RenderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/RenderTypes.h -------------------------------------------------------------------------------- /Source/Render/RenderData/Shaders/RenderMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Shaders/RenderMaterial.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/Shaders/RenderMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Shaders/RenderMaterial.h -------------------------------------------------------------------------------- /Source/Render/RenderData/Shaders/RenderShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Shaders/RenderShader.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/Shaders/RenderShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Shaders/RenderShader.h -------------------------------------------------------------------------------- /Source/Render/RenderData/Shaders/RenderShaderBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Shaders/RenderShaderBlocks.h -------------------------------------------------------------------------------- /Source/Render/RenderData/Shaders/RenderUniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Shaders/RenderUniform.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/Shaders/RenderUniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/Shaders/RenderUniform.h -------------------------------------------------------------------------------- /Source/Render/RenderData/UI/RenderImGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/UI/RenderImGUI.cpp -------------------------------------------------------------------------------- /Source/Render/RenderData/UI/RenderImGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderData/UI/RenderImGUI.h -------------------------------------------------------------------------------- /Source/Render/RenderStageLightProbes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderStageLightProbes.cpp -------------------------------------------------------------------------------- /Source/Render/RenderStageLightProbes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RenderStageLightProbes.h -------------------------------------------------------------------------------- /Source/Render/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/Renderer.cpp -------------------------------------------------------------------------------- /Source/Render/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/Renderer.h -------------------------------------------------------------------------------- /Source/Render/RendererPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RendererPipeline.cpp -------------------------------------------------------------------------------- /Source/Render/RendererPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/RendererPipeline.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIBuffer.cpp -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIBuffer.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKICommandBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKICommandBuffer.cpp -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKICommandBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKICommandBuffer.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIDescriptor.cpp -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIDescriptor.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIDevice.cpp -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIDevice.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIFramebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIFramebuffer.cpp -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIFramebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIFramebuffer.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIGraphicsPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIGraphicsPipeline.cpp -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIGraphicsPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIGraphicsPipeline.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIImage.cpp -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIImage.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIInstance.cpp -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIInstance.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIRenderPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIRenderPass.cpp -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKIRenderPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKIRenderPass.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKISwapChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKISwapChain.cpp -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKISwapChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKISwapChain.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKISync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKISync.cpp -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKISync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKISync.h -------------------------------------------------------------------------------- /Source/Render/VKInterface/VKITypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Render/VKInterface/VKITypes.h -------------------------------------------------------------------------------- /Source/Scene/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/Camera.h -------------------------------------------------------------------------------- /Source/Scene/IrradianceVolumeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/IrradianceVolumeNode.cpp -------------------------------------------------------------------------------- /Source/Scene/IrradianceVolumeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/IrradianceVolumeNode.h -------------------------------------------------------------------------------- /Source/Scene/LightNode.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Scene/LightNode.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Scene/LightProbeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/LightProbeNode.cpp -------------------------------------------------------------------------------- /Source/Scene/LightProbeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/LightProbeNode.h -------------------------------------------------------------------------------- /Source/Scene/MeshNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/MeshNode.cpp -------------------------------------------------------------------------------- /Source/Scene/MeshNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/MeshNode.h -------------------------------------------------------------------------------- /Source/Scene/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/Node.cpp -------------------------------------------------------------------------------- /Source/Scene/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/Node.h -------------------------------------------------------------------------------- /Source/Scene/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/Scene.cpp -------------------------------------------------------------------------------- /Source/Scene/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/Scene.h -------------------------------------------------------------------------------- /Source/Scene/SceneGlobalSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/Source/Scene/SceneGlobalSettings.h -------------------------------------------------------------------------------- /ThirdParty/GLFW/Include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/GLFW/Include/GLFW/glfw3.h -------------------------------------------------------------------------------- /ThirdParty/GLFW/Include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/GLFW/Include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /ThirdParty/GLFW/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/GLFW/glfw3.lib -------------------------------------------------------------------------------- /ThirdParty/ThirdParty_LICENSE_NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/ThirdParty_LICENSE_NOTICE.txt -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/common.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/exponential.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int2x2_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int2x3_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int2x4_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int3x2_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int3x3_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int3x4_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int4x2_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int4x3_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_int4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_int4x4_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_integer.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_integer.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint2x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint2x2_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint2x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint2x3_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint2x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint2x4_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint3x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint3x2_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint3x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint3x3_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint3x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint3x4_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint4x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint4x2_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint4x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint4x3_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint4x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/matrix_uint4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/matrix_uint4x4_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_packing.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_reciprocal.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_reciprocal.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_int1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_int1_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_int2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_int2_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_int3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_int3_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_int4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_int4_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_reciprocal.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_reciprocal.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_uint1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_uint1_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_uint2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_uint2_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_uint3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_uint3_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_uint4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_uint4_sized.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/geometric.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/glm.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/random.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/round.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/common.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/functions.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/io.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/integer.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/matrix.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/packing.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/simd/common.h -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/simd/exponential.h -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/simd/geometric.h -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/simd/integer.h -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/simd/matrix.h -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/simd/neon.h -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/simd/packing.h -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/simd/platform.h -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/vec2.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/vec3.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/vec4.hpp -------------------------------------------------------------------------------- /ThirdParty/glm/Include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/glm/Include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /ThirdParty/json/Include/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/json/Include/json/json.hpp -------------------------------------------------------------------------------- /ThirdParty/stb/Include/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/stb/Include/stb_image.h -------------------------------------------------------------------------------- /ThirdParty/tinygltfloader/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/tinygltfloader/json.hpp -------------------------------------------------------------------------------- /ThirdParty/tinygltfloader/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/tinygltfloader/stb_image.h -------------------------------------------------------------------------------- /ThirdParty/tinygltfloader/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/tinygltfloader/stb_image_write.h -------------------------------------------------------------------------------- /ThirdParty/tinygltfloader/tiny_gltf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/tinygltfloader/tiny_gltf.h -------------------------------------------------------------------------------- /ThirdParty/tinyobjloader/Include/tiny_obj_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/ThirdParty/tinyobjloader/Include/tiny_obj_loader.h -------------------------------------------------------------------------------- /imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebuf/RealTimeGI/HEAD/imgui.ini --------------------------------------------------------------------------------