├── .gitignore ├── External ├── GLAD │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── glad.h │ └── src │ │ └── glad.c ├── GLFW │ ├── LICENSE.md │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ └── lib-vc2022 │ │ ├── glfw3.dll │ │ ├── glfw3.lib │ │ ├── glfw3_mt.lib │ │ └── glfw3dll.lib ├── ImGUI-Nodes │ ├── LICENSE │ ├── crude_json.cpp │ ├── crude_json.h │ ├── imgui_bezier_math.h │ ├── imgui_bezier_math.inl │ ├── imgui_canvas.cpp │ ├── imgui_canvas.h │ ├── imgui_extra_math.h │ ├── imgui_extra_math.inl │ ├── imgui_node_editor.cpp │ ├── imgui_node_editor.h │ ├── imgui_node_editor_api.cpp │ ├── imgui_node_editor_internal.h │ └── imgui_node_editor_internal.inl ├── ImGUI │ ├── LICENSE.txt │ ├── backends │ │ ├── imgui_extra_keys.h │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_glfw.cpp │ │ ├── imgui_impl_glfw.h │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── imgui_impl_win32.cpp │ │ └── imgui_impl_win32.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui.natvis │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── NativeFileDialog │ ├── LICENSE │ └── src │ │ ├── include │ │ ├── nfd.h │ │ └── nfd.hpp │ │ ├── nfd_cocoa.m │ │ ├── nfd_gtk.cpp │ │ ├── nfd_portal.cpp │ │ └── nfd_win.cpp ├── ScopeGuard │ └── ScopeGuard.h ├── cgltf │ └── cgltf.h ├── glm │ ├── copying.txt │ └── include │ │ └── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── compute_common.hpp │ │ ├── compute_vector_relational.hpp │ │ ├── func_common.inl │ │ ├── func_common_simd.inl │ │ ├── func_exponential.inl │ │ ├── func_exponential_simd.inl │ │ ├── func_geometric.inl │ │ ├── func_geometric_simd.inl │ │ ├── func_integer.inl │ │ ├── func_integer_simd.inl │ │ ├── func_matrix.inl │ │ ├── func_matrix_simd.inl │ │ ├── func_packing.inl │ │ ├── func_packing_simd.inl │ │ ├── func_trigonometric.inl │ │ ├── func_trigonometric_simd.inl │ │ ├── func_vector_relational.inl │ │ ├── func_vector_relational_simd.inl │ │ ├── glm.cpp │ │ ├── qualifier.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_mat4x4_simd.inl │ │ ├── type_quat.hpp │ │ ├── type_quat.inl │ │ ├── type_quat_simd.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ ├── matrix_clip_space.hpp │ │ ├── matrix_clip_space.inl │ │ ├── matrix_common.hpp │ │ ├── matrix_common.inl │ │ ├── matrix_double2x2.hpp │ │ ├── matrix_double2x2_precision.hpp │ │ ├── matrix_double2x3.hpp │ │ ├── matrix_double2x3_precision.hpp │ │ ├── matrix_double2x4.hpp │ │ ├── matrix_double2x4_precision.hpp │ │ ├── matrix_double3x2.hpp │ │ ├── matrix_double3x2_precision.hpp │ │ ├── matrix_double3x3.hpp │ │ ├── matrix_double3x3_precision.hpp │ │ ├── matrix_double3x4.hpp │ │ ├── matrix_double3x4_precision.hpp │ │ ├── matrix_double4x2.hpp │ │ ├── matrix_double4x2_precision.hpp │ │ ├── matrix_double4x3.hpp │ │ ├── matrix_double4x3_precision.hpp │ │ ├── matrix_double4x4.hpp │ │ ├── matrix_double4x4_precision.hpp │ │ ├── matrix_float2x2.hpp │ │ ├── matrix_float2x2_precision.hpp │ │ ├── matrix_float2x3.hpp │ │ ├── matrix_float2x3_precision.hpp │ │ ├── matrix_float2x4.hpp │ │ ├── matrix_float2x4_precision.hpp │ │ ├── matrix_float3x2.hpp │ │ ├── matrix_float3x2_precision.hpp │ │ ├── matrix_float3x3.hpp │ │ ├── matrix_float3x3_precision.hpp │ │ ├── matrix_float3x4.hpp │ │ ├── matrix_float3x4_precision.hpp │ │ ├── matrix_float4x2.hpp │ │ ├── matrix_float4x2_precision.hpp │ │ ├── matrix_float4x3.hpp │ │ ├── matrix_float4x3_precision.hpp │ │ ├── matrix_float4x4.hpp │ │ ├── matrix_float4x4_precision.hpp │ │ ├── matrix_int2x2.hpp │ │ ├── matrix_int2x2_sized.hpp │ │ ├── matrix_int2x3.hpp │ │ ├── matrix_int2x3_sized.hpp │ │ ├── matrix_int2x4.hpp │ │ ├── matrix_int2x4_sized.hpp │ │ ├── matrix_int3x2.hpp │ │ ├── matrix_int3x2_sized.hpp │ │ ├── matrix_int3x3.hpp │ │ ├── matrix_int3x3_sized.hpp │ │ ├── matrix_int3x4.hpp │ │ ├── matrix_int3x4_sized.hpp │ │ ├── matrix_int4x2.hpp │ │ ├── matrix_int4x2_sized.hpp │ │ ├── matrix_int4x3.hpp │ │ ├── matrix_int4x3_sized.hpp │ │ ├── matrix_int4x4.hpp │ │ ├── matrix_int4x4_sized.hpp │ │ ├── matrix_projection.hpp │ │ ├── matrix_projection.inl │ │ ├── matrix_relational.hpp │ │ ├── matrix_relational.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── matrix_uint2x2.hpp │ │ ├── matrix_uint2x2_sized.hpp │ │ ├── matrix_uint2x3.hpp │ │ ├── matrix_uint2x3_sized.hpp │ │ ├── matrix_uint2x4.hpp │ │ ├── matrix_uint2x4_sized.hpp │ │ ├── matrix_uint3x2.hpp │ │ ├── matrix_uint3x2_sized.hpp │ │ ├── matrix_uint3x3.hpp │ │ ├── matrix_uint3x3_sized.hpp │ │ ├── matrix_uint3x4.hpp │ │ ├── matrix_uint3x4_sized.hpp │ │ ├── matrix_uint4x2.hpp │ │ ├── matrix_uint4x2_sized.hpp │ │ ├── matrix_uint4x3.hpp │ │ ├── matrix_uint4x3_sized.hpp │ │ ├── matrix_uint4x4.hpp │ │ ├── matrix_uint4x4_sized.hpp │ │ ├── quaternion_common.hpp │ │ ├── quaternion_common.inl │ │ ├── quaternion_common_simd.inl │ │ ├── quaternion_double.hpp │ │ ├── quaternion_double_precision.hpp │ │ ├── quaternion_exponential.hpp │ │ ├── quaternion_exponential.inl │ │ ├── quaternion_float.hpp │ │ ├── quaternion_float_precision.hpp │ │ ├── quaternion_geometric.hpp │ │ ├── quaternion_geometric.inl │ │ ├── quaternion_relational.hpp │ │ ├── quaternion_relational.inl │ │ ├── quaternion_transform.hpp │ │ ├── quaternion_transform.inl │ │ ├── quaternion_trigonometric.hpp │ │ ├── quaternion_trigonometric.inl │ │ ├── scalar_common.hpp │ │ ├── scalar_common.inl │ │ ├── scalar_constants.hpp │ │ ├── scalar_constants.inl │ │ ├── scalar_int_sized.hpp │ │ ├── scalar_integer.hpp │ │ ├── scalar_integer.inl │ │ ├── scalar_packing.hpp │ │ ├── scalar_packing.inl │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── scalar_uint_sized.hpp │ │ ├── scalar_ulp.hpp │ │ ├── scalar_ulp.inl │ │ ├── vector_bool1.hpp │ │ ├── vector_bool1_precision.hpp │ │ ├── vector_bool2.hpp │ │ ├── vector_bool2_precision.hpp │ │ ├── vector_bool3.hpp │ │ ├── vector_bool3_precision.hpp │ │ ├── vector_bool4.hpp │ │ ├── vector_bool4_precision.hpp │ │ ├── vector_common.hpp │ │ ├── vector_common.inl │ │ ├── vector_double1.hpp │ │ ├── vector_double1_precision.hpp │ │ ├── vector_double2.hpp │ │ ├── vector_double2_precision.hpp │ │ ├── vector_double3.hpp │ │ ├── vector_double3_precision.hpp │ │ ├── vector_double4.hpp │ │ ├── vector_double4_precision.hpp │ │ ├── vector_float1.hpp │ │ ├── vector_float1_precision.hpp │ │ ├── vector_float2.hpp │ │ ├── vector_float2_precision.hpp │ │ ├── vector_float3.hpp │ │ ├── vector_float3_precision.hpp │ │ ├── vector_float4.hpp │ │ ├── vector_float4_precision.hpp │ │ ├── vector_int1.hpp │ │ ├── vector_int1_sized.hpp │ │ ├── vector_int2.hpp │ │ ├── vector_int2_sized.hpp │ │ ├── vector_int3.hpp │ │ ├── vector_int3_sized.hpp │ │ ├── vector_int4.hpp │ │ ├── vector_int4_sized.hpp │ │ ├── vector_integer.hpp │ │ ├── vector_integer.inl │ │ ├── vector_packing.hpp │ │ ├── vector_packing.inl │ │ ├── vector_relational.hpp │ │ ├── vector_relational.inl │ │ ├── vector_uint1.hpp │ │ ├── vector_uint1_sized.hpp │ │ ├── vector_uint2.hpp │ │ ├── vector_uint2_sized.hpp │ │ ├── vector_uint3.hpp │ │ ├── vector_uint3_sized.hpp │ │ ├── vector_uint4.hpp │ │ ├── vector_uint4_sized.hpp │ │ ├── vector_ulp.hpp │ │ └── vector_ulp.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── quaternion_simd.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_aligned.hpp │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ └── vec1.hpp │ │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_encoding.hpp │ │ ├── color_encoding.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── easing.hpp │ │ ├── easing.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extended_min_max.hpp │ │ ├── extended_min_max.inl │ │ ├── exterior_product.hpp │ │ ├── exterior_product.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── float_notmalize.inl │ │ ├── functions.hpp │ │ ├── functions.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── hash.hpp │ │ ├── hash.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_factorisation.hpp │ │ ├── matrix_factorisation.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── texture.hpp │ │ ├── texture.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── type_trait.hpp │ │ ├── type_trait.inl │ │ ├── vec_swizzle.hpp │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ ├── common.h │ │ ├── exponential.h │ │ ├── geometric.h │ │ ├── integer.h │ │ ├── matrix.h │ │ ├── neon.h │ │ ├── packing.h │ │ ├── platform.h │ │ ├── trigonometric.h │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp └── stb_image │ └── stb_image.h ├── Images ├── Image1.png └── Image2.png ├── LICENSE ├── README.md ├── RenderDoc.cap ├── RenderNodes.sln ├── RenderNodes.vcxproj ├── RenderNodes.vcxproj.filters ├── RenderNodes.vcxproj.user ├── Source ├── App │ ├── App.cpp │ ├── App.h │ ├── AppConsole.cpp │ ├── AppConsole.h │ └── IInputListener.h ├── Common.h ├── DataTypes.h ├── Editor │ ├── Drawing │ │ ├── EditorContextMenu.cpp │ │ ├── EditorContextMenu.h │ │ ├── EditorWidgets.cpp │ │ └── EditorWidgets.h │ ├── EditorErrorHandler.h │ ├── EditorNode.cpp │ ├── EditorNode.h │ ├── EvaluationEditorNode.h │ ├── ExecutorEditorNode.h │ ├── RenderPipelineEditor.cpp │ └── RenderPipelineEditor.h ├── Execution │ ├── ExecuteContext.h │ ├── ExecutorNode.cpp │ ├── ExecutorNode.h │ ├── ExecutorScene.h │ ├── RenderPipelineExecutor.cpp │ ├── RenderPipelineExecutor.h │ └── ValueNode.h ├── IDGen.h ├── NodeGraph │ ├── NodeGraph.cpp │ ├── NodeGraph.h │ ├── NodeGraphCommands.cpp │ ├── NodeGraphCommands.h │ ├── NodeGraphCompiler.cpp │ ├── NodeGraphCompiler.h │ ├── NodeGraphSerializer.cpp │ ├── NodeGraphSerializer.h │ ├── PinEvaluator.cpp │ └── PinEvaluator.h ├── Render │ ├── Buffer.cpp │ ├── Buffer.h │ ├── SceneLoading.cpp │ ├── SceneLoading.h │ ├── Shader.cpp │ ├── Shader.h │ ├── Texture.cpp │ └── Texture.h ├── Util │ ├── FileDialog.cpp │ ├── FileDialog.h │ └── Hash.h ├── imgui_rendernodes.h └── main.cpp └── Tests ├── DrawDragon.json ├── DrawDragon.rn ├── Resources ├── Dragon.bin ├── Dragon.gltf └── checkerboard.jpg └── Shaders └── DrawMeshShader.glsl /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/* 2 | Build/* 3 | 4 | imgui.ini 5 | NodeEditor.json 6 | -------------------------------------------------------------------------------- /External/GLAD/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/GLAD/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /External/GLAD/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/GLAD/include/glad/glad.h -------------------------------------------------------------------------------- /External/GLAD/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/GLAD/src/glad.c -------------------------------------------------------------------------------- /External/GLFW/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/GLFW/LICENSE.md -------------------------------------------------------------------------------- /External/GLFW/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/GLFW/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /External/GLFW/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/GLFW/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /External/GLFW/lib-vc2022/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/GLFW/lib-vc2022/glfw3.dll -------------------------------------------------------------------------------- /External/GLFW/lib-vc2022/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/GLFW/lib-vc2022/glfw3.lib -------------------------------------------------------------------------------- /External/GLFW/lib-vc2022/glfw3_mt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/GLFW/lib-vc2022/glfw3_mt.lib -------------------------------------------------------------------------------- /External/GLFW/lib-vc2022/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/GLFW/lib-vc2022/glfw3dll.lib -------------------------------------------------------------------------------- /External/ImGUI-Nodes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/LICENSE -------------------------------------------------------------------------------- /External/ImGUI-Nodes/crude_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/crude_json.cpp -------------------------------------------------------------------------------- /External/ImGUI-Nodes/crude_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/crude_json.h -------------------------------------------------------------------------------- /External/ImGUI-Nodes/imgui_bezier_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/imgui_bezier_math.h -------------------------------------------------------------------------------- /External/ImGUI-Nodes/imgui_bezier_math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/imgui_bezier_math.inl -------------------------------------------------------------------------------- /External/ImGUI-Nodes/imgui_canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/imgui_canvas.cpp -------------------------------------------------------------------------------- /External/ImGUI-Nodes/imgui_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/imgui_canvas.h -------------------------------------------------------------------------------- /External/ImGUI-Nodes/imgui_extra_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/imgui_extra_math.h -------------------------------------------------------------------------------- /External/ImGUI-Nodes/imgui_extra_math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/imgui_extra_math.inl -------------------------------------------------------------------------------- /External/ImGUI-Nodes/imgui_node_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/imgui_node_editor.cpp -------------------------------------------------------------------------------- /External/ImGUI-Nodes/imgui_node_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/imgui_node_editor.h -------------------------------------------------------------------------------- /External/ImGUI-Nodes/imgui_node_editor_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/imgui_node_editor_api.cpp -------------------------------------------------------------------------------- /External/ImGUI-Nodes/imgui_node_editor_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/imgui_node_editor_internal.h -------------------------------------------------------------------------------- /External/ImGUI-Nodes/imgui_node_editor_internal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI-Nodes/imgui_node_editor_internal.inl -------------------------------------------------------------------------------- /External/ImGUI/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/LICENSE.txt -------------------------------------------------------------------------------- /External/ImGUI/backends/imgui_extra_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/backends/imgui_extra_keys.h -------------------------------------------------------------------------------- /External/ImGUI/backends/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/backends/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /External/ImGUI/backends/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/backends/imgui_impl_dx11.h -------------------------------------------------------------------------------- /External/ImGUI/backends/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/backends/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /External/ImGUI/backends/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/backends/imgui_impl_glfw.h -------------------------------------------------------------------------------- /External/ImGUI/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /External/ImGUI/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /External/ImGUI/backends/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/backends/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /External/ImGUI/backends/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/backends/imgui_impl_win32.h -------------------------------------------------------------------------------- /External/ImGUI/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imconfig.h -------------------------------------------------------------------------------- /External/ImGUI/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imgui.cpp -------------------------------------------------------------------------------- /External/ImGUI/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imgui.h -------------------------------------------------------------------------------- /External/ImGUI/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imgui.natvis -------------------------------------------------------------------------------- /External/ImGUI/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imgui_demo.cpp -------------------------------------------------------------------------------- /External/ImGUI/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imgui_draw.cpp -------------------------------------------------------------------------------- /External/ImGUI/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imgui_internal.h -------------------------------------------------------------------------------- /External/ImGUI/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imgui_tables.cpp -------------------------------------------------------------------------------- /External/ImGUI/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imgui_widgets.cpp -------------------------------------------------------------------------------- /External/ImGUI/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imstb_rectpack.h -------------------------------------------------------------------------------- /External/ImGUI/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imstb_textedit.h -------------------------------------------------------------------------------- /External/ImGUI/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ImGUI/imstb_truetype.h -------------------------------------------------------------------------------- /External/NativeFileDialog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/NativeFileDialog/LICENSE -------------------------------------------------------------------------------- /External/NativeFileDialog/src/include/nfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/NativeFileDialog/src/include/nfd.h -------------------------------------------------------------------------------- /External/NativeFileDialog/src/include/nfd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/NativeFileDialog/src/include/nfd.hpp -------------------------------------------------------------------------------- /External/NativeFileDialog/src/nfd_cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/NativeFileDialog/src/nfd_cocoa.m -------------------------------------------------------------------------------- /External/NativeFileDialog/src/nfd_gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/NativeFileDialog/src/nfd_gtk.cpp -------------------------------------------------------------------------------- /External/NativeFileDialog/src/nfd_portal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/NativeFileDialog/src/nfd_portal.cpp -------------------------------------------------------------------------------- /External/NativeFileDialog/src/nfd_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/NativeFileDialog/src/nfd_win.cpp -------------------------------------------------------------------------------- /External/ScopeGuard/ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/ScopeGuard/ScopeGuard.h -------------------------------------------------------------------------------- /External/cgltf/cgltf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/cgltf/cgltf.h -------------------------------------------------------------------------------- /External/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/copying.txt -------------------------------------------------------------------------------- /External/glm/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /External/glm/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/common.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /External/glm/include/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /External/glm/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/exponential.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int2x2_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int2x3_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int2x4_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int3x2_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int3x3_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int3x4_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int4x2_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int4x3_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_int4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_int4x4_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint2x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint2x2_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint2x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint2x3_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint2x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint2x4_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint3x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint3x2_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint3x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint3x3_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint3x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint3x4_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint4x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint4x2_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint4x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint4x3_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint4x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/matrix_uint4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/matrix_uint4x4_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_packing.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_int1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_int1_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_int2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_int2_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_int3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_int3_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_int4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_int4_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_uint1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_uint1_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_uint2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_uint2_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_uint3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_uint3_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_uint4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_uint4_sized.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /External/glm/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/fwd.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/geometric.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/glm.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/functions.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /External/glm/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/integer.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/matrix.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/packing.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/simd/common.h -------------------------------------------------------------------------------- /External/glm/include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /External/glm/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /External/glm/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/simd/integer.h -------------------------------------------------------------------------------- /External/glm/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /External/glm/include/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/simd/neon.h -------------------------------------------------------------------------------- /External/glm/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/simd/packing.h -------------------------------------------------------------------------------- /External/glm/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/simd/platform.h -------------------------------------------------------------------------------- /External/glm/include/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /External/glm/include/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /External/glm/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/vec2.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/vec3.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/vec4.hpp -------------------------------------------------------------------------------- /External/glm/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/glm/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /External/stb_image/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/External/stb_image/stb_image.h -------------------------------------------------------------------------------- /Images/Image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Images/Image1.png -------------------------------------------------------------------------------- /Images/Image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Images/Image2.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/README.md -------------------------------------------------------------------------------- /RenderDoc.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/RenderDoc.cap -------------------------------------------------------------------------------- /RenderNodes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/RenderNodes.sln -------------------------------------------------------------------------------- /RenderNodes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/RenderNodes.vcxproj -------------------------------------------------------------------------------- /RenderNodes.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/RenderNodes.vcxproj.filters -------------------------------------------------------------------------------- /RenderNodes.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/RenderNodes.vcxproj.user -------------------------------------------------------------------------------- /Source/App/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/App/App.cpp -------------------------------------------------------------------------------- /Source/App/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/App/App.h -------------------------------------------------------------------------------- /Source/App/AppConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/App/AppConsole.cpp -------------------------------------------------------------------------------- /Source/App/AppConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/App/AppConsole.h -------------------------------------------------------------------------------- /Source/App/IInputListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/App/IInputListener.h -------------------------------------------------------------------------------- /Source/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Common.h -------------------------------------------------------------------------------- /Source/DataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/DataTypes.h -------------------------------------------------------------------------------- /Source/Editor/Drawing/EditorContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Editor/Drawing/EditorContextMenu.cpp -------------------------------------------------------------------------------- /Source/Editor/Drawing/EditorContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Editor/Drawing/EditorContextMenu.h -------------------------------------------------------------------------------- /Source/Editor/Drawing/EditorWidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Editor/Drawing/EditorWidgets.cpp -------------------------------------------------------------------------------- /Source/Editor/Drawing/EditorWidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Editor/Drawing/EditorWidgets.h -------------------------------------------------------------------------------- /Source/Editor/EditorErrorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Editor/EditorErrorHandler.h -------------------------------------------------------------------------------- /Source/Editor/EditorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Editor/EditorNode.cpp -------------------------------------------------------------------------------- /Source/Editor/EditorNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Editor/EditorNode.h -------------------------------------------------------------------------------- /Source/Editor/EvaluationEditorNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Editor/EvaluationEditorNode.h -------------------------------------------------------------------------------- /Source/Editor/ExecutorEditorNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Editor/ExecutorEditorNode.h -------------------------------------------------------------------------------- /Source/Editor/RenderPipelineEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Editor/RenderPipelineEditor.cpp -------------------------------------------------------------------------------- /Source/Editor/RenderPipelineEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Editor/RenderPipelineEditor.h -------------------------------------------------------------------------------- /Source/Execution/ExecuteContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Execution/ExecuteContext.h -------------------------------------------------------------------------------- /Source/Execution/ExecutorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Execution/ExecutorNode.cpp -------------------------------------------------------------------------------- /Source/Execution/ExecutorNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Execution/ExecutorNode.h -------------------------------------------------------------------------------- /Source/Execution/ExecutorScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Execution/ExecutorScene.h -------------------------------------------------------------------------------- /Source/Execution/RenderPipelineExecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Execution/RenderPipelineExecutor.cpp -------------------------------------------------------------------------------- /Source/Execution/RenderPipelineExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Execution/RenderPipelineExecutor.h -------------------------------------------------------------------------------- /Source/Execution/ValueNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Execution/ValueNode.h -------------------------------------------------------------------------------- /Source/IDGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/IDGen.h -------------------------------------------------------------------------------- /Source/NodeGraph/NodeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/NodeGraph/NodeGraph.cpp -------------------------------------------------------------------------------- /Source/NodeGraph/NodeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/NodeGraph/NodeGraph.h -------------------------------------------------------------------------------- /Source/NodeGraph/NodeGraphCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/NodeGraph/NodeGraphCommands.cpp -------------------------------------------------------------------------------- /Source/NodeGraph/NodeGraphCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/NodeGraph/NodeGraphCommands.h -------------------------------------------------------------------------------- /Source/NodeGraph/NodeGraphCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/NodeGraph/NodeGraphCompiler.cpp -------------------------------------------------------------------------------- /Source/NodeGraph/NodeGraphCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/NodeGraph/NodeGraphCompiler.h -------------------------------------------------------------------------------- /Source/NodeGraph/NodeGraphSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/NodeGraph/NodeGraphSerializer.cpp -------------------------------------------------------------------------------- /Source/NodeGraph/NodeGraphSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/NodeGraph/NodeGraphSerializer.h -------------------------------------------------------------------------------- /Source/NodeGraph/PinEvaluator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/NodeGraph/PinEvaluator.cpp -------------------------------------------------------------------------------- /Source/NodeGraph/PinEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/NodeGraph/PinEvaluator.h -------------------------------------------------------------------------------- /Source/Render/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Render/Buffer.cpp -------------------------------------------------------------------------------- /Source/Render/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Render/Buffer.h -------------------------------------------------------------------------------- /Source/Render/SceneLoading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Render/SceneLoading.cpp -------------------------------------------------------------------------------- /Source/Render/SceneLoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Render/SceneLoading.h -------------------------------------------------------------------------------- /Source/Render/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Render/Shader.cpp -------------------------------------------------------------------------------- /Source/Render/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Render/Shader.h -------------------------------------------------------------------------------- /Source/Render/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Render/Texture.cpp -------------------------------------------------------------------------------- /Source/Render/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Render/Texture.h -------------------------------------------------------------------------------- /Source/Util/FileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Util/FileDialog.cpp -------------------------------------------------------------------------------- /Source/Util/FileDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Util/FileDialog.h -------------------------------------------------------------------------------- /Source/Util/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/Util/Hash.h -------------------------------------------------------------------------------- /Source/imgui_rendernodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/imgui_rendernodes.h -------------------------------------------------------------------------------- /Source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Source/main.cpp -------------------------------------------------------------------------------- /Tests/DrawDragon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Tests/DrawDragon.json -------------------------------------------------------------------------------- /Tests/DrawDragon.rn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Tests/DrawDragon.rn -------------------------------------------------------------------------------- /Tests/Resources/Dragon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Tests/Resources/Dragon.bin -------------------------------------------------------------------------------- /Tests/Resources/Dragon.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Tests/Resources/Dragon.gltf -------------------------------------------------------------------------------- /Tests/Resources/checkerboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Tests/Resources/checkerboard.jpg -------------------------------------------------------------------------------- /Tests/Shaders/DrawMeshShader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kymani37299/RenderNodes/HEAD/Tests/Shaders/DrawMeshShader.glsl --------------------------------------------------------------------------------