├── .gitignore ├── README.md ├── brasstower.sln ├── brasstower ├── brasstower.vcxproj ├── cuda │ ├── cudaglm.cuh │ ├── cudamatrix.cuh │ └── helper.cuh ├── ext │ └── helper_math.h ├── global.h ├── glshaders │ ├── mesh.frag │ ├── mesh.geom │ ├── mesh.vert │ ├── meshshadow.frag │ ├── meshshadow.vert │ ├── particle.frag │ ├── particle.vert │ ├── particlecolorcode.frag │ ├── particlecolorcode.vert │ ├── particleshadow.frag │ ├── particleshadow.vert │ ├── plane.frag │ └── plane.vert ├── imgui.ini ├── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_glfw_gl3.cpp │ ├── imgui_impl_glfw_gl3.h │ ├── imgui_internal.h │ ├── stb_rect_pack.h │ ├── stb_textedit.h │ └── stb_truetype.h ├── kernel │ ├── bending.cuh │ ├── cubrasstower.cuh │ ├── distance.cuh │ ├── fluid.cuh │ ├── grid.cuh │ ├── immovable.cuh │ ├── particleparticle.cuh │ ├── particleplane.cuh │ ├── shapematching.cuh │ ├── util.cuh │ └── wind.cuh ├── main.cu ├── mesh.h ├── opengl │ ├── buffer.h │ ├── framebuffer.h │ └── shader.h ├── particlerenderer.cuh ├── particlesolver.cuh ├── scene.cpp └── scene.h └── dependencies ├── bin ├── assimp-vc140-mt.dll └── glew32.dll ├── include ├── GL │ ├── eglew.h │ ├── glew.h │ ├── glxew.h │ └── wglew.h ├── GLFW │ ├── glfw3.h │ └── glfw3native.h ├── assimp │ ├── .editorconfig │ ├── Compiler │ │ ├── poppack1.h │ │ ├── pstdint.h │ │ └── pushpack1.h │ ├── DefaultLogger.hpp │ ├── Exporter.hpp │ ├── IOStream.hpp │ ├── IOSystem.hpp │ ├── Importer.hpp │ ├── LogStream.hpp │ ├── Logger.hpp │ ├── NullLogger.hpp │ ├── ProgressHandler.hpp │ ├── ai_assert.h │ ├── anim.h │ ├── camera.h │ ├── cexport.h │ ├── cfileio.h │ ├── cimport.h │ ├── color4.h │ ├── color4.inl │ ├── config.h │ ├── defs.h │ ├── importerdesc.h │ ├── light.h │ ├── material.h │ ├── material.inl │ ├── matrix3x3.h │ ├── matrix3x3.inl │ ├── matrix4x4.h │ ├── matrix4x4.inl │ ├── mesh.h │ ├── metadata.h │ ├── port │ │ └── AndroidJNI │ │ │ └── AndroidJNIIOSystem.h │ ├── postprocess.h │ ├── quaternion.h │ ├── quaternion.inl │ ├── scene.h │ ├── texture.h │ ├── types.h │ ├── vector2.h │ ├── vector2.inl │ ├── vector3.h │ ├── vector3.inl │ └── version.h ├── cub │ ├── agent │ │ ├── agent_histogram.cuh │ │ ├── agent_radix_sort_downsweep.cuh │ │ ├── agent_radix_sort_upsweep.cuh │ │ ├── agent_reduce.cuh │ │ ├── agent_reduce_by_key.cuh │ │ ├── agent_rle.cuh │ │ ├── agent_scan.cuh │ │ ├── agent_segment_fixup.cuh │ │ ├── agent_select_if.cuh │ │ ├── agent_spmv_orig.cuh │ │ └── single_pass_scan_operators.cuh │ ├── block │ │ ├── block_adjacent_difference.cuh │ │ ├── block_discontinuity.cuh │ │ ├── block_exchange.cuh │ │ ├── block_histogram.cuh │ │ ├── block_load.cuh │ │ ├── block_radix_rank.cuh │ │ ├── block_radix_sort.cuh │ │ ├── block_raking_layout.cuh │ │ ├── block_reduce.cuh │ │ ├── block_scan.cuh │ │ ├── block_shuffle.cuh │ │ ├── block_store.cuh │ │ └── specializations │ │ │ ├── block_histogram_atomic.cuh │ │ │ ├── block_histogram_sort.cuh │ │ │ ├── block_reduce_raking.cuh │ │ │ ├── block_reduce_raking_commutative_only.cuh │ │ │ ├── block_reduce_warp_reductions.cuh │ │ │ ├── block_scan_raking.cuh │ │ │ ├── block_scan_warp_scans.cuh │ │ │ ├── block_scan_warp_scans2.cuh │ │ │ └── block_scan_warp_scans3.cuh │ ├── cub.cuh │ ├── device │ │ ├── device_histogram.cuh │ │ ├── device_partition.cuh │ │ ├── device_radix_sort.cuh │ │ ├── device_reduce.cuh │ │ ├── device_run_length_encode.cuh │ │ ├── device_scan.cuh │ │ ├── device_segmented_radix_sort.cuh │ │ ├── device_segmented_reduce.cuh │ │ ├── device_select.cuh │ │ ├── device_spmv.cuh │ │ └── dispatch │ │ │ ├── dispatch_histogram.cuh │ │ │ ├── dispatch_radix_sort.cuh │ │ │ ├── dispatch_reduce.cuh │ │ │ ├── dispatch_reduce_by_key.cuh │ │ │ ├── dispatch_rle.cuh │ │ │ ├── dispatch_scan.cuh │ │ │ ├── dispatch_select_if.cuh │ │ │ └── dispatch_spmv_orig.cuh │ ├── grid │ │ ├── grid_barrier.cuh │ │ ├── grid_even_share.cuh │ │ ├── grid_mapping.cuh │ │ └── grid_queue.cuh │ ├── host │ │ └── mutex.cuh │ ├── iterator │ │ ├── arg_index_input_iterator.cuh │ │ ├── cache_modified_input_iterator.cuh │ │ ├── cache_modified_output_iterator.cuh │ │ ├── constant_input_iterator.cuh │ │ ├── counting_input_iterator.cuh │ │ ├── discard_output_iterator.cuh │ │ ├── tex_obj_input_iterator.cuh │ │ ├── tex_ref_input_iterator.cuh │ │ └── transform_input_iterator.cuh │ ├── thread │ │ ├── thread_load.cuh │ │ ├── thread_operators.cuh │ │ ├── thread_reduce.cuh │ │ ├── thread_scan.cuh │ │ ├── thread_search.cuh │ │ └── thread_store.cuh │ ├── util_allocator.cuh │ ├── util_arch.cuh │ ├── util_debug.cuh │ ├── util_device.cuh │ ├── util_macro.cuh │ ├── util_namespace.cuh │ ├── util_ptx.cuh │ ├── util_type.cuh │ └── warp │ │ ├── specializations │ │ ├── warp_reduce_shfl.cuh │ │ ├── warp_reduce_smem.cuh │ │ ├── warp_scan_shfl.cuh │ │ └── warp_scan_smem.cuh │ │ ├── warp_reduce.cuh │ │ └── warp_scan.cuh └── glm │ ├── common.hpp │ ├── detail │ ├── _features.hpp │ ├── _fixes.hpp │ ├── _noise.hpp │ ├── _swizzle.hpp │ ├── _swizzle_func.hpp │ ├── _vectorize.hpp │ ├── compute_vector_relational.hpp │ ├── dummy.cpp │ ├── 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_gentype.hpp │ ├── type_gentype.inl │ ├── type_half.hpp │ ├── type_half.inl │ ├── type_int.hpp │ ├── type_mat.hpp │ ├── type_mat.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_vec.hpp │ ├── type_vec.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 │ ├── vec1.hpp │ ├── vec1.inl │ ├── vector_relational.hpp │ └── vector_relational.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 │ └── vec1.inl │ ├── 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 │ ├── euler_angles.hpp │ ├── euler_angles.inl │ ├── extend.hpp │ ├── extend.inl │ ├── extended_min_max.hpp │ ├── extended_min_max.inl │ ├── exterior_product.hpp │ ├── exterior_product.inl │ ├── fast_exponential.hpp │ ├── fast_exponential.inl │ ├── fast_square_root.hpp │ ├── fast_square_root.inl │ ├── fast_trigonometry.hpp │ ├── fast_trigonometry.inl │ ├── float_notmalize.inl │ ├── functions.hpp │ ├── functions.inl │ ├── gradient_paint.hpp │ ├── gradient_paint.inl │ ├── handed_coordinate_space.hpp │ ├── handed_coordinate_space.inl │ ├── hash.hpp │ ├── hash.inl │ ├── integer.hpp │ ├── integer.inl │ ├── intersect.hpp │ ├── intersect.inl │ ├── io.hpp │ ├── io.inl │ ├── log_base.hpp │ ├── log_base.inl │ ├── matrix_cross_product.hpp │ ├── matrix_cross_product.inl │ ├── matrix_decompose.hpp │ ├── matrix_decompose.inl │ ├── matrix_factorisation.hpp │ ├── matrix_factorisation.inl │ ├── matrix_interpolation.hpp │ ├── matrix_interpolation.inl │ ├── matrix_major_storage.hpp │ ├── matrix_major_storage.inl │ ├── matrix_operation.hpp │ ├── matrix_operation.inl │ ├── matrix_query.hpp │ ├── matrix_query.inl │ ├── matrix_transform_2d.hpp │ ├── matrix_transform_2d.inl │ ├── mixed_product.hpp │ ├── mixed_product.inl │ ├── norm.hpp │ ├── norm.inl │ ├── normal.hpp │ ├── normal.inl │ ├── normalize_dot.hpp │ ├── normalize_dot.inl │ ├── number_precision.hpp │ ├── number_precision.inl │ ├── optimum_pow.hpp │ ├── optimum_pow.inl │ ├── orthonormalize.hpp │ ├── orthonormalize.inl │ ├── perpendicular.hpp │ ├── perpendicular.inl │ ├── polar_coordinates.hpp │ ├── polar_coordinates.inl │ ├── projection.hpp │ ├── projection.inl │ ├── quaternion.hpp │ ├── quaternion.inl │ ├── range.hpp │ ├── raw_data.hpp │ ├── raw_data.inl │ ├── rotate_normalized_axis.hpp │ ├── rotate_normalized_axis.inl │ ├── rotate_vector.hpp │ ├── rotate_vector.inl │ ├── scalar_multiplication.hpp │ ├── scalar_relational.hpp │ ├── scalar_relational.inl │ ├── spline.hpp │ ├── spline.inl │ ├── std_based_type.hpp │ ├── std_based_type.inl │ ├── string_cast.hpp │ ├── string_cast.inl │ ├── texture.hpp │ ├── texture.inl │ ├── transform.hpp │ ├── transform.inl │ ├── transform2.hpp │ ├── transform2.inl │ ├── type_aligned.hpp │ ├── type_aligned.inl │ ├── type_trait.hpp │ ├── type_trait.inl │ ├── vec_swizzle.hpp │ ├── vector_angle.hpp │ ├── vector_angle.inl │ ├── vector_query.hpp │ ├── vector_query.inl │ ├── wrap.hpp │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── simd │ ├── common.h │ ├── exponential.h │ ├── geometric.h │ ├── integer.h │ ├── matrix.h │ ├── packing.h │ ├── platform.h │ ├── trigonometric.h │ └── vector_relational.h │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp └── lib ├── assimp-vc140-mt.lib ├── glew32.lib ├── glew32s.lib ├── glfw3.lib └── glfw3dll.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/README.md -------------------------------------------------------------------------------- /brasstower.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower.sln -------------------------------------------------------------------------------- /brasstower/brasstower.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/brasstower.vcxproj -------------------------------------------------------------------------------- /brasstower/cuda/cudaglm.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/cuda/cudaglm.cuh -------------------------------------------------------------------------------- /brasstower/cuda/cudamatrix.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/cuda/cudamatrix.cuh -------------------------------------------------------------------------------- /brasstower/cuda/helper.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/cuda/helper.cuh -------------------------------------------------------------------------------- /brasstower/ext/helper_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/ext/helper_math.h -------------------------------------------------------------------------------- /brasstower/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/global.h -------------------------------------------------------------------------------- /brasstower/glshaders/mesh.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/mesh.frag -------------------------------------------------------------------------------- /brasstower/glshaders/mesh.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/mesh.geom -------------------------------------------------------------------------------- /brasstower/glshaders/mesh.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/mesh.vert -------------------------------------------------------------------------------- /brasstower/glshaders/meshshadow.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/meshshadow.frag -------------------------------------------------------------------------------- /brasstower/glshaders/meshshadow.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/meshshadow.vert -------------------------------------------------------------------------------- /brasstower/glshaders/particle.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/particle.frag -------------------------------------------------------------------------------- /brasstower/glshaders/particle.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/particle.vert -------------------------------------------------------------------------------- /brasstower/glshaders/particlecolorcode.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/particlecolorcode.frag -------------------------------------------------------------------------------- /brasstower/glshaders/particlecolorcode.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/particlecolorcode.vert -------------------------------------------------------------------------------- /brasstower/glshaders/particleshadow.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/particleshadow.frag -------------------------------------------------------------------------------- /brasstower/glshaders/particleshadow.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/particleshadow.vert -------------------------------------------------------------------------------- /brasstower/glshaders/plane.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/plane.frag -------------------------------------------------------------------------------- /brasstower/glshaders/plane.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/glshaders/plane.vert -------------------------------------------------------------------------------- /brasstower/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui.ini -------------------------------------------------------------------------------- /brasstower/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui/imconfig.h -------------------------------------------------------------------------------- /brasstower/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui/imgui.cpp -------------------------------------------------------------------------------- /brasstower/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui/imgui.h -------------------------------------------------------------------------------- /brasstower/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /brasstower/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /brasstower/imgui/imgui_impl_glfw_gl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui/imgui_impl_glfw_gl3.cpp -------------------------------------------------------------------------------- /brasstower/imgui/imgui_impl_glfw_gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui/imgui_impl_glfw_gl3.h -------------------------------------------------------------------------------- /brasstower/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui/imgui_internal.h -------------------------------------------------------------------------------- /brasstower/imgui/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui/stb_rect_pack.h -------------------------------------------------------------------------------- /brasstower/imgui/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui/stb_textedit.h -------------------------------------------------------------------------------- /brasstower/imgui/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/imgui/stb_truetype.h -------------------------------------------------------------------------------- /brasstower/kernel/bending.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/kernel/bending.cuh -------------------------------------------------------------------------------- /brasstower/kernel/cubrasstower.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/kernel/cubrasstower.cuh -------------------------------------------------------------------------------- /brasstower/kernel/distance.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/kernel/distance.cuh -------------------------------------------------------------------------------- /brasstower/kernel/fluid.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/kernel/fluid.cuh -------------------------------------------------------------------------------- /brasstower/kernel/grid.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/kernel/grid.cuh -------------------------------------------------------------------------------- /brasstower/kernel/immovable.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/kernel/immovable.cuh -------------------------------------------------------------------------------- /brasstower/kernel/particleparticle.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/kernel/particleparticle.cuh -------------------------------------------------------------------------------- /brasstower/kernel/particleplane.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/kernel/particleplane.cuh -------------------------------------------------------------------------------- /brasstower/kernel/shapematching.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/kernel/shapematching.cuh -------------------------------------------------------------------------------- /brasstower/kernel/util.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/kernel/util.cuh -------------------------------------------------------------------------------- /brasstower/kernel/wind.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/kernel/wind.cuh -------------------------------------------------------------------------------- /brasstower/main.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/main.cu -------------------------------------------------------------------------------- /brasstower/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/mesh.h -------------------------------------------------------------------------------- /brasstower/opengl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/opengl/buffer.h -------------------------------------------------------------------------------- /brasstower/opengl/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/opengl/framebuffer.h -------------------------------------------------------------------------------- /brasstower/opengl/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/opengl/shader.h -------------------------------------------------------------------------------- /brasstower/particlerenderer.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/particlerenderer.cuh -------------------------------------------------------------------------------- /brasstower/particlesolver.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/particlesolver.cuh -------------------------------------------------------------------------------- /brasstower/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/scene.cpp -------------------------------------------------------------------------------- /brasstower/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/brasstower/scene.h -------------------------------------------------------------------------------- /dependencies/bin/assimp-vc140-mt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/bin/assimp-vc140-mt.dll -------------------------------------------------------------------------------- /dependencies/bin/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/bin/glew32.dll -------------------------------------------------------------------------------- /dependencies/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/GL/eglew.h -------------------------------------------------------------------------------- /dependencies/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/GL/glew.h -------------------------------------------------------------------------------- /dependencies/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/GL/glxew.h -------------------------------------------------------------------------------- /dependencies/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/GL/wglew.h -------------------------------------------------------------------------------- /dependencies/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /dependencies/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /dependencies/include/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/.editorconfig -------------------------------------------------------------------------------- /dependencies/include/assimp/Compiler/poppack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/Compiler/poppack1.h -------------------------------------------------------------------------------- /dependencies/include/assimp/Compiler/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/Compiler/pstdint.h -------------------------------------------------------------------------------- /dependencies/include/assimp/Compiler/pushpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/Compiler/pushpack1.h -------------------------------------------------------------------------------- /dependencies/include/assimp/DefaultLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/DefaultLogger.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/Exporter.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/IOStream.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/Importer.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/LogStream.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/NullLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/NullLogger.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/ProgressHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/ProgressHandler.hpp -------------------------------------------------------------------------------- /dependencies/include/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/ai_assert.h -------------------------------------------------------------------------------- /dependencies/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/anim.h -------------------------------------------------------------------------------- /dependencies/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/camera.h -------------------------------------------------------------------------------- /dependencies/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/cexport.h -------------------------------------------------------------------------------- /dependencies/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/cfileio.h -------------------------------------------------------------------------------- /dependencies/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/cimport.h -------------------------------------------------------------------------------- /dependencies/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/color4.h -------------------------------------------------------------------------------- /dependencies/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/color4.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/config.h -------------------------------------------------------------------------------- /dependencies/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/defs.h -------------------------------------------------------------------------------- /dependencies/include/assimp/importerdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/importerdesc.h -------------------------------------------------------------------------------- /dependencies/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/light.h -------------------------------------------------------------------------------- /dependencies/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/material.h -------------------------------------------------------------------------------- /dependencies/include/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/material.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/matrix3x3.h -------------------------------------------------------------------------------- /dependencies/include/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/matrix4x4.h -------------------------------------------------------------------------------- /dependencies/include/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/mesh.h -------------------------------------------------------------------------------- /dependencies/include/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/metadata.h -------------------------------------------------------------------------------- /dependencies/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h -------------------------------------------------------------------------------- /dependencies/include/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/postprocess.h -------------------------------------------------------------------------------- /dependencies/include/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/quaternion.h -------------------------------------------------------------------------------- /dependencies/include/assimp/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/quaternion.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/scene.h -------------------------------------------------------------------------------- /dependencies/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/texture.h -------------------------------------------------------------------------------- /dependencies/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/types.h -------------------------------------------------------------------------------- /dependencies/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/vector2.h -------------------------------------------------------------------------------- /dependencies/include/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/vector2.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/vector3.h -------------------------------------------------------------------------------- /dependencies/include/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/vector3.inl -------------------------------------------------------------------------------- /dependencies/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/assimp/version.h -------------------------------------------------------------------------------- /dependencies/include/cub/agent/agent_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/agent/agent_histogram.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/agent/agent_radix_sort_downsweep.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/agent/agent_radix_sort_downsweep.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/agent/agent_radix_sort_upsweep.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/agent/agent_radix_sort_upsweep.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/agent/agent_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/agent/agent_reduce.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/agent/agent_reduce_by_key.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/agent/agent_reduce_by_key.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/agent/agent_rle.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/agent/agent_rle.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/agent/agent_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/agent/agent_scan.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/agent/agent_segment_fixup.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/agent/agent_segment_fixup.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/agent/agent_select_if.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/agent/agent_select_if.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/agent/agent_spmv_orig.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/agent/agent_spmv_orig.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/agent/single_pass_scan_operators.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/agent/single_pass_scan_operators.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_adjacent_difference.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_adjacent_difference.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_discontinuity.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_discontinuity.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_exchange.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_exchange.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_histogram.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_load.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_load.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_radix_rank.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_radix_rank.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_radix_sort.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_raking_layout.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_raking_layout.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_reduce.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_scan.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_shuffle.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_shuffle.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/block_store.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/block_store.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/specializations/block_histogram_atomic.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/specializations/block_histogram_atomic.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/specializations/block_histogram_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/specializations/block_histogram_sort.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/specializations/block_reduce_raking.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/specializations/block_reduce_raking.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/specializations/block_reduce_raking_commutative_only.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/specializations/block_reduce_raking_commutative_only.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/specializations/block_reduce_warp_reductions.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/specializations/block_reduce_warp_reductions.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/specializations/block_scan_raking.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/specializations/block_scan_raking.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/specializations/block_scan_warp_scans.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/specializations/block_scan_warp_scans.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/specializations/block_scan_warp_scans2.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/specializations/block_scan_warp_scans2.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/block/specializations/block_scan_warp_scans3.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/block/specializations/block_scan_warp_scans3.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/cub.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/cub.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/device_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/device_histogram.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/device_partition.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/device_partition.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/device_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/device_radix_sort.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/device_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/device_reduce.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/device_run_length_encode.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/device_run_length_encode.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/device_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/device_scan.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/device_segmented_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/device_segmented_radix_sort.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/device_segmented_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/device_segmented_reduce.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/device_select.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/device_select.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/device_spmv.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/device_spmv.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/dispatch/dispatch_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/dispatch/dispatch_histogram.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/dispatch/dispatch_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/dispatch/dispatch_radix_sort.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/dispatch/dispatch_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/dispatch/dispatch_reduce.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/dispatch/dispatch_reduce_by_key.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/dispatch/dispatch_reduce_by_key.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/dispatch/dispatch_rle.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/dispatch/dispatch_rle.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/dispatch/dispatch_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/dispatch/dispatch_scan.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/dispatch/dispatch_select_if.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/dispatch/dispatch_select_if.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/device/dispatch/dispatch_spmv_orig.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/device/dispatch/dispatch_spmv_orig.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/grid/grid_barrier.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/grid/grid_barrier.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/grid/grid_even_share.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/grid/grid_even_share.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/grid/grid_mapping.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/grid/grid_mapping.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/grid/grid_queue.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/grid/grid_queue.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/host/mutex.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/host/mutex.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/iterator/arg_index_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/iterator/arg_index_input_iterator.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/iterator/cache_modified_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/iterator/cache_modified_input_iterator.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/iterator/cache_modified_output_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/iterator/cache_modified_output_iterator.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/iterator/constant_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/iterator/constant_input_iterator.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/iterator/counting_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/iterator/counting_input_iterator.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/iterator/discard_output_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/iterator/discard_output_iterator.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/iterator/tex_obj_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/iterator/tex_obj_input_iterator.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/iterator/tex_ref_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/iterator/tex_ref_input_iterator.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/iterator/transform_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/iterator/transform_input_iterator.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/thread/thread_load.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/thread/thread_load.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/thread/thread_operators.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/thread/thread_operators.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/thread/thread_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/thread/thread_reduce.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/thread/thread_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/thread/thread_scan.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/thread/thread_search.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/thread/thread_search.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/thread/thread_store.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/thread/thread_store.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/util_allocator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/util_allocator.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/util_arch.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/util_arch.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/util_debug.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/util_debug.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/util_device.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/util_device.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/util_macro.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/util_macro.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/util_namespace.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/util_namespace.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/util_ptx.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/util_ptx.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/util_type.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/util_type.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/warp/specializations/warp_reduce_shfl.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/warp/specializations/warp_reduce_shfl.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/warp/specializations/warp_reduce_smem.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/warp/specializations/warp_reduce_smem.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/warp/specializations/warp_scan_shfl.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/warp/specializations/warp_scan_shfl.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/warp/specializations/warp_scan_smem.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/warp/specializations/warp_scan_smem.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/warp/warp_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/warp/warp_reduce.cuh -------------------------------------------------------------------------------- /dependencies/include/cub/warp/warp_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/cub/warp/warp_scan.cuh -------------------------------------------------------------------------------- /dependencies/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /dependencies/include/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/exponential.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/ext.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/ext/vec1.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vec1.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /dependencies/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/fwd.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/geometric.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/glm.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/quaternion_simd.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/functions.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /dependencies/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/integer.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/matrix.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/packing.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/simd/common.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/simd/integer.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/simd/packing.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/simd/platform.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /dependencies/include/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /dependencies/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/vec2.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/vec3.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/vec4.hpp -------------------------------------------------------------------------------- /dependencies/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /dependencies/lib/assimp-vc140-mt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/lib/assimp-vc140-mt.lib -------------------------------------------------------------------------------- /dependencies/lib/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/lib/glew32.lib -------------------------------------------------------------------------------- /dependencies/lib/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/lib/glew32s.lib -------------------------------------------------------------------------------- /dependencies/lib/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/lib/glfw3.lib -------------------------------------------------------------------------------- /dependencies/lib/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamornsriwasansak/brass-pan/HEAD/dependencies/lib/glfw3dll.lib --------------------------------------------------------------------------------