├── .clang-format ├── .clang-tidy ├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── assets ├── LICENSE.txt ├── bedroom │ ├── Teapot.png │ ├── bedroom.bin │ ├── bedroom.gltf │ ├── panel-wood-3.jpg │ ├── wallpaper-1.jpg │ └── wood4.jpg ├── cornellFixed.bin ├── cornellFixed.gltf ├── cornellsuzanne.bin ├── cornellsuzanne.gltf ├── livingroom │ ├── leaf.png │ ├── livingroom.bin │ ├── livingroom.gltf │ ├── picture8.jpg │ ├── wood.jpg │ └── wood5.jpg ├── occluderscene.bin ├── occluderscene.gltf ├── picapica │ ├── scene.bin │ ├── scene.gltf │ └── textures │ │ ├── Decal_Caution_baseColor.png │ │ ├── Decal_First_Aid_Kit_baseColor.png │ │ ├── Decal_Keyboard_01_baseColor.png │ │ ├── Decal_Note_01_baseColor.png │ │ ├── Metal_Aluminium_metallicRoughness.png │ │ └── Wax_Pastel_Label_02_baseColor.png ├── reflection_new.bin ├── reflection_new.gltf ├── roughness.png ├── shtest.bin └── shtest.gltf ├── data ├── LICENSE.txt ├── blue_noise │ ├── scrambling_ranking_128x128_2d_1spp.png │ └── sobol_256_4d.png └── brdf_lut.bin ├── images ├── bedroom.png ├── causticsdemo1.png ├── cornell.png ├── livingroom.png ├── picapica.png ├── reflectiondemo1.png └── ssrreflections.png ├── precomputation ├── precalculation.AabbReceivers ├── precalculation.ClusterProbes ├── precalculation.ClusterProjectionMatrices ├── precalculation.ClusterReceiverInfos ├── precalculation.ClusterReceiverUvs ├── precalculation.ProbeRaycastBasisFunctions ├── precalculation.ProbeRaycastResult ├── precalculation.Probes ├── precalculation.ReceiverCoefficientMatrices ├── precalculation.ReceiverProbeWeightData ├── precalculation.cfg └── receiver_image.bin ├── shaders ├── brdf.glsl ├── common.glsl ├── debug_unlit.frag ├── debug_unlit.vert ├── deferred.frag ├── diffuse_lightmap_groundtruth │ └── diffusegi_groundtruth.rgen ├── diffuse_probes │ ├── gi_cluster_projection.comp │ ├── gi_probe_projection.comp │ ├── gi_probe_projection_realtime.comp │ ├── gi_receiver_reconstruction.comp │ ├── lightmap.frag │ ├── lightmap.vert │ └── proberaycast_realtime.rgen ├── dilate.frag ├── fullscreen.vert ├── gamma.frag ├── gaussblur.frag ├── gbuffer.frag ├── gbuffer.vert ├── precomputation │ ├── precalculate_construct_receiver_matrix.comp │ ├── precalculate_probe_density_weights.comp │ ├── precalculate_probe_rt.rchit │ ├── precalculate_probe_rt.rgen │ ├── precalculate_probe_rt.rmiss │ ├── precalculate_receiver_rt.rgen │ ├── precalculate_receivers.frag │ └── precalculate_receivers.vert ├── reflections │ ├── reflections_rt.rchit │ ├── reflections_rt.rgen │ └── reflections_rt.rmiss ├── reflections_svgf │ ├── svgf_atrous.comp │ ├── svgf_edge_functions.glsl │ ├── svgf_temporal.comp │ └── svgf_variance.comp ├── restir_gi │ └── restir_initial_buffer.rgen └── shadow_mapping │ ├── evsm.frag │ ├── evsm.vert │ └── shadow.glsl ├── src ├── CMakeLists.txt ├── editor │ ├── editor.cpp │ ├── editor.h │ ├── editor_renderer.cpp │ └── editor_renderer.h ├── file_helper.h ├── gi_brdf.cpp ├── gi_brdf.h ├── gi_deferred.cpp ├── gi_deferred.h ├── gi_diffuse.cpp ├── gi_diffuse.h ├── gi_gbuffer.cpp ├── gi_gbuffer.h ├── gi_glossy.cpp ├── gi_glossy.h ├── gi_glossy_svgf.cpp ├── gi_glossy_svgf.h ├── gi_shadow.cpp ├── gi_shadow.h ├── gltf_scene.cpp ├── gltf_scene.hpp ├── main.cpp ├── memory │ ├── frame_allocator.cpp │ ├── frame_allocator.h │ ├── handle.h │ ├── handle_pool.h │ └── slice.h ├── precalculation.cpp ├── precalculation.h ├── precalculation_types.h ├── redsvd.h ├── triangle_box_intersection.h ├── vk_cache.cpp ├── vk_cache.h ├── vk_compute.cpp ├── vk_compute.h ├── vk_debug_renderer.cpp ├── vk_debug_renderer.h ├── vk_engine.cpp ├── vk_engine.h ├── vk_extensions.cpp ├── vk_extensions.h ├── vk_initializers.cpp ├── vk_initializers.h ├── vk_pipeline.cpp ├── vk_pipeline.h ├── vk_raytracing.cpp ├── vk_raytracing.h ├── vk_rendergraph.cpp ├── vk_rendergraph.h ├── vk_rendergraph_types.h ├── vk_shader.cpp ├── vk_shader.h ├── vk_super_res.cpp ├── vk_super_res.h ├── vk_timer.cpp ├── vk_timer.h ├── vk_types.h ├── vk_utils.cpp └── vk_utils.h └── third_party ├── CMakeLists.txt ├── eigen ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab │ ├── issue_templates │ │ ├── Bug Report.md │ │ └── Feature Request.md │ └── merge_request_templates │ │ └── Merge Request Template.md ├── .hgeol ├── CMakeLists.txt ├── COPYING.APACHE ├── COPYING.BSD ├── COPYING.GPL ├── COPYING.LGPL ├── COPYING.MINPACK ├── COPYING.MPL2 ├── COPYING.README ├── CTestConfig.cmake ├── CTestCustom.cmake.in ├── Eigen │ ├── Cholesky │ ├── CholmodSupport │ ├── Dense │ ├── Eigen │ ├── Eigenvalues │ ├── Geometry │ ├── Householder │ ├── IterativeLinearSolvers │ ├── Jacobi │ ├── KLUSupport │ ├── LU │ ├── MetisSupport │ ├── OrderingMethods │ ├── PaStiXSupport │ ├── PardisoSupport │ ├── QR │ ├── QtAlignedMalloc │ ├── SPQRSupport │ ├── SVD │ ├── Sparse │ ├── SparseCholesky │ ├── SparseCore │ ├── SparseLU │ ├── SparseQR │ ├── StdDeque │ ├── StdList │ ├── StdVector │ ├── SuperLUSupport │ ├── UmfPackSupport │ └── src │ │ ├── Cholesky │ │ ├── LDLT.h │ │ ├── LLT.h │ │ └── LLT_LAPACKE.h │ │ ├── CholmodSupport │ │ └── CholmodSupport.h │ │ ├── Eigenvalues │ │ ├── ComplexEigenSolver.h │ │ ├── ComplexSchur.h │ │ ├── ComplexSchur_LAPACKE.h │ │ ├── EigenSolver.h │ │ ├── GeneralizedEigenSolver.h │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ ├── HessenbergDecomposition.h │ │ ├── MatrixBaseEigenvalues.h │ │ ├── RealQZ.h │ │ ├── RealSchur.h │ │ ├── RealSchur_LAPACKE.h │ │ ├── SelfAdjointEigenSolver.h │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ └── Tridiagonalization.h │ │ ├── Geometry │ │ ├── AlignedBox.h │ │ ├── AngleAxis.h │ │ ├── EulerAngles.h │ │ ├── Homogeneous.h │ │ ├── Hyperplane.h │ │ ├── OrthoMethods.h │ │ ├── ParametrizedLine.h │ │ ├── Quaternion.h │ │ ├── Rotation2D.h │ │ ├── RotationBase.h │ │ ├── Scaling.h │ │ ├── Transform.h │ │ ├── Translation.h │ │ ├── Umeyama.h │ │ └── arch │ │ │ └── Geometry_SIMD.h │ │ ├── Householder │ │ ├── BlockHouseholder.h │ │ ├── Householder.h │ │ └── HouseholderSequence.h │ │ ├── IterativeLinearSolvers │ │ ├── BasicPreconditioners.h │ │ ├── BiCGSTAB.h │ │ ├── ConjugateGradient.h │ │ ├── IncompleteCholesky.h │ │ ├── IncompleteLUT.h │ │ ├── IterativeSolverBase.h │ │ ├── LeastSquareConjugateGradient.h │ │ └── SolveWithGuess.h │ │ ├── Jacobi │ │ └── Jacobi.h │ │ ├── KLUSupport │ │ └── KLUSupport.h │ │ ├── LU │ │ ├── Determinant.h │ │ ├── FullPivLU.h │ │ ├── InverseImpl.h │ │ ├── PartialPivLU.h │ │ ├── PartialPivLU_LAPACKE.h │ │ └── arch │ │ │ └── InverseSize4.h │ │ ├── MetisSupport │ │ └── MetisSupport.h │ │ ├── OrderingMethods │ │ ├── Amd.h │ │ ├── Eigen_Colamd.h │ │ └── Ordering.h │ │ ├── PaStiXSupport │ │ └── PaStiXSupport.h │ │ ├── PardisoSupport │ │ └── PardisoSupport.h │ │ ├── QR │ │ ├── ColPivHouseholderQR.h │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ ├── CompleteOrthogonalDecomposition.h │ │ ├── FullPivHouseholderQR.h │ │ ├── HouseholderQR.h │ │ └── HouseholderQR_LAPACKE.h │ │ ├── SPQRSupport │ │ └── SuiteSparseQRSupport.h │ │ ├── SVD │ │ ├── BDCSVD.h │ │ ├── JacobiSVD.h │ │ ├── JacobiSVD_LAPACKE.h │ │ ├── SVDBase.h │ │ └── UpperBidiagonalization.h │ │ ├── SparseCholesky │ │ ├── SimplicialCholesky.h │ │ └── SimplicialCholesky_impl.h │ │ ├── SparseCore │ │ ├── AmbiVector.h │ │ ├── CompressedStorage.h │ │ ├── ConservativeSparseSparseProduct.h │ │ ├── MappedSparseMatrix.h │ │ ├── SparseAssign.h │ │ ├── SparseBlock.h │ │ ├── SparseColEtree.h │ │ ├── SparseCompressedBase.h │ │ ├── SparseCwiseBinaryOp.h │ │ ├── SparseCwiseUnaryOp.h │ │ ├── SparseDenseProduct.h │ │ ├── SparseDiagonalProduct.h │ │ ├── SparseDot.h │ │ ├── SparseFuzzy.h │ │ ├── SparseMap.h │ │ ├── SparseMatrix.h │ │ ├── SparseMatrixBase.h │ │ ├── SparsePermutation.h │ │ ├── SparseProduct.h │ │ ├── SparseRedux.h │ │ ├── SparseRef.h │ │ ├── SparseSelfAdjointView.h │ │ ├── SparseSolverBase.h │ │ ├── SparseSparseProductWithPruning.h │ │ ├── SparseTranspose.h │ │ ├── SparseTriangularView.h │ │ ├── SparseUtil.h │ │ ├── SparseVector.h │ │ ├── SparseView.h │ │ └── TriangularSolver.h │ │ ├── SparseLU │ │ ├── SparseLU.h │ │ ├── SparseLUImpl.h │ │ ├── SparseLU_Memory.h │ │ ├── SparseLU_Structs.h │ │ ├── SparseLU_SupernodalMatrix.h │ │ ├── SparseLU_Utils.h │ │ ├── SparseLU_column_bmod.h │ │ ├── SparseLU_column_dfs.h │ │ ├── SparseLU_copy_to_ucol.h │ │ ├── SparseLU_gemm_kernel.h │ │ ├── SparseLU_heap_relax_snode.h │ │ ├── SparseLU_kernel_bmod.h │ │ ├── SparseLU_panel_bmod.h │ │ ├── SparseLU_panel_dfs.h │ │ ├── SparseLU_pivotL.h │ │ ├── SparseLU_pruneL.h │ │ └── SparseLU_relax_snode.h │ │ ├── SparseQR │ │ └── SparseQR.h │ │ ├── StlSupport │ │ ├── StdDeque.h │ │ ├── StdList.h │ │ ├── StdVector.h │ │ └── details.h │ │ ├── SuperLUSupport │ │ └── SuperLUSupport.h │ │ ├── UmfPackSupport │ │ └── UmfPackSupport.h │ │ ├── misc │ │ ├── Image.h │ │ ├── Kernel.h │ │ ├── RealSvd2x2.h │ │ ├── blas.h │ │ ├── lapack.h │ │ ├── lapacke.h │ │ └── lapacke_mangling.h │ │ └── plugins │ │ ├── ArrayCwiseBinaryOps.h │ │ ├── ArrayCwiseUnaryOps.h │ │ ├── BlockMethods.h │ │ ├── CommonCwiseBinaryOps.h │ │ ├── CommonCwiseUnaryOps.h │ │ ├── IndexedViewMethods.h │ │ ├── MatrixCwiseBinaryOps.h │ │ ├── MatrixCwiseUnaryOps.h │ │ └── ReshapedMethods.h ├── INSTALL ├── README.md ├── bench │ ├── BenchSparseUtil.h │ ├── BenchTimer.h │ ├── BenchUtil.h │ ├── README.txt │ ├── analyze-blocking-sizes.cpp │ ├── basicbench.cxxlist │ ├── basicbenchmark.cpp │ ├── basicbenchmark.h │ ├── benchBlasGemm.cpp │ ├── benchCholesky.cpp │ ├── benchEigenSolver.cpp │ ├── benchFFT.cpp │ ├── benchGeometry.cpp │ ├── benchVecAdd.cpp │ ├── bench_gemm.cpp │ ├── bench_move_semantics.cpp │ ├── bench_multi_compilers.sh │ ├── bench_norm.cpp │ ├── bench_reverse.cpp │ ├── bench_sum.cpp │ ├── bench_unrolling │ ├── benchmark-blocking-sizes.cpp │ ├── benchmark.cpp │ ├── benchmarkSlice.cpp │ ├── benchmarkX.cpp │ ├── benchmarkXcwise.cpp │ ├── benchmark_suite │ ├── btl │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── README │ │ ├── actions │ │ │ ├── action_aat_product.hh │ │ │ ├── action_ata_product.hh │ │ │ ├── action_atv_product.hh │ │ │ ├── action_axpby.hh │ │ │ ├── action_axpy.hh │ │ │ ├── action_cholesky.hh │ │ │ ├── action_ger.hh │ │ │ ├── action_hessenberg.hh │ │ │ ├── action_lu_decomp.hh │ │ │ ├── action_lu_solve.hh │ │ │ ├── action_matrix_matrix_product.hh │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ ├── action_matrix_vector_product.hh │ │ │ ├── action_partial_lu.hh │ │ │ ├── action_rot.hh │ │ │ ├── action_symv.hh │ │ │ ├── action_syr2.hh │ │ │ ├── action_trisolve.hh │ │ │ ├── action_trisolve_matrix.hh │ │ │ ├── action_trmm.hh │ │ │ └── basic_actions.hh │ │ ├── cmake │ │ │ ├── FindACML.cmake │ │ │ ├── FindATLAS.cmake │ │ │ ├── FindBLAZE.cmake │ │ │ ├── FindBlitz.cmake │ │ │ ├── FindCBLAS.cmake │ │ │ ├── FindGMM.cmake │ │ │ ├── FindMKL.cmake │ │ │ ├── FindMTL4.cmake │ │ │ ├── FindOPENBLAS.cmake │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ ├── FindTvmet.cmake │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ ├── data │ │ │ ├── CMakeLists.txt │ │ │ ├── action_settings.txt │ │ │ ├── gnuplot_common_settings.hh │ │ │ ├── go_mean │ │ │ ├── mean.cxx │ │ │ ├── mk_gnuplot_script.sh │ │ │ ├── mk_mean_script.sh │ │ │ ├── mk_new_gnuplot.sh │ │ │ ├── perlib_plot_settings.txt │ │ │ ├── regularize.cxx │ │ │ ├── smooth.cxx │ │ │ └── smooth_all.sh │ │ ├── generic_bench │ │ │ ├── bench.hh │ │ │ ├── bench_parameter.hh │ │ │ ├── btl.hh │ │ │ ├── init │ │ │ │ ├── init_function.hh │ │ │ │ ├── init_matrix.hh │ │ │ │ └── init_vector.hh │ │ │ ├── static │ │ │ │ ├── bench_static.hh │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ └── static_size_generator.hh │ │ │ ├── timers │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ ├── STL_timer.hh │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ ├── portable_timer.hh │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ └── x86_timer.hh │ │ │ └── utils │ │ │ │ ├── size_lin_log.hh │ │ │ │ ├── size_log.hh │ │ │ │ ├── utilities.h │ │ │ │ └── xy_file.hh │ │ └── libs │ │ │ ├── BLAS │ │ │ ├── CMakeLists.txt │ │ │ ├── blas.h │ │ │ ├── blas_interface.hh │ │ │ ├── blas_interface_impl.hh │ │ │ ├── c_interface_base.h │ │ │ └── main.cpp │ │ │ ├── STL │ │ │ ├── CMakeLists.txt │ │ │ ├── STL_interface.hh │ │ │ └── main.cpp │ │ │ ├── blaze │ │ │ ├── CMakeLists.txt │ │ │ ├── blaze_interface.hh │ │ │ └── main.cpp │ │ │ ├── blitz │ │ │ ├── CMakeLists.txt │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ ├── blitz_interface.hh │ │ │ ├── btl_blitz.cpp │ │ │ ├── btl_tiny_blitz.cpp │ │ │ └── tiny_blitz_interface.hh │ │ │ ├── eigen2 │ │ │ ├── CMakeLists.txt │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ ├── eigen2_interface.hh │ │ │ ├── main_adv.cpp │ │ │ ├── main_linear.cpp │ │ │ ├── main_matmat.cpp │ │ │ └── main_vecmat.cpp │ │ │ ├── eigen3 │ │ │ ├── CMakeLists.txt │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ ├── eigen3_interface.hh │ │ │ ├── main_adv.cpp │ │ │ ├── main_linear.cpp │ │ │ ├── main_matmat.cpp │ │ │ └── main_vecmat.cpp │ │ │ ├── gmm │ │ │ ├── CMakeLists.txt │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ ├── gmm_interface.hh │ │ │ └── main.cpp │ │ │ ├── mtl4 │ │ │ ├── .kdbgrc.main │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ └── mtl4_interface.hh │ │ │ ├── tensors │ │ │ ├── CMakeLists.txt │ │ │ ├── main_linear.cpp │ │ │ ├── main_matmat.cpp │ │ │ ├── main_vecmat.cpp │ │ │ └── tensor_interface.hh │ │ │ ├── tvmet │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── tvmet_interface.hh │ │ │ └── ublas │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── ublas_interface.hh │ ├── check_cache_queries.cpp │ ├── dense_solvers.cpp │ ├── eig33.cpp │ ├── geometry.cpp │ ├── perf_monitoring │ │ ├── changesets.txt │ │ ├── gemm.cpp │ │ ├── gemm_common.h │ │ ├── gemm_settings.txt │ │ ├── gemm_square_settings.txt │ │ ├── gemv.cpp │ │ ├── gemv_common.h │ │ ├── gemv_settings.txt │ │ ├── gemv_square_settings.txt │ │ ├── gemvt.cpp │ │ ├── lazy_gemm.cpp │ │ ├── lazy_gemm_settings.txt │ │ ├── llt.cpp │ │ ├── make_plot.sh │ │ ├── resources │ │ │ ├── chart_footer.html │ │ │ ├── chart_header.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── s1.js │ │ │ └── s2.js │ │ ├── run.sh │ │ ├── runall.sh │ │ ├── trmv_lo.cpp │ │ ├── trmv_lot.cpp │ │ ├── trmv_up.cpp │ │ └── trmv_upt.cpp │ ├── product_threshold.cpp │ ├── quat_slerp.cpp │ ├── quatmul.cpp │ ├── sparse_cholesky.cpp │ ├── sparse_dense_product.cpp │ ├── sparse_lu.cpp │ ├── sparse_product.cpp │ ├── sparse_randomsetter.cpp │ ├── sparse_setter.cpp │ ├── sparse_transpose.cpp │ ├── sparse_trisolver.cpp │ ├── spbench │ │ ├── CMakeLists.txt │ │ ├── sp_solver.cpp │ │ ├── spbench.dtd │ │ ├── spbenchsolver.cpp │ │ ├── spbenchsolver.h │ │ ├── spbenchstyle.h │ │ └── test_sparseLU.cpp │ ├── spmv.cpp │ ├── tensors │ │ ├── README │ │ ├── benchmark.h │ │ ├── benchmark_main.cc │ │ ├── contraction_benchmarks_cpu.cc │ │ ├── eigen_sycl_bench.sh │ │ ├── eigen_sycl_bench_contract.sh │ │ ├── tensor_benchmarks.h │ │ ├── tensor_benchmarks_cpu.cc │ │ ├── tensor_benchmarks_fp16_gpu.cu │ │ ├── tensor_benchmarks_gpu.cu │ │ ├── tensor_benchmarks_sycl.cc │ │ └── tensor_contract_sycl_bench.cc │ └── vdw_new.cpp ├── blas │ ├── BandTriangularSolver.h │ ├── CMakeLists.txt │ ├── GeneralRank1Update.h │ ├── PackedSelfadjointProduct.h │ ├── PackedTriangularMatrixVector.h │ ├── PackedTriangularSolverVector.h │ ├── README.txt │ ├── Rank2Update.h │ ├── common.h │ ├── complex_double.cpp │ ├── complex_single.cpp │ ├── double.cpp │ ├── f2c │ │ ├── chbmv.c │ │ ├── chpmv.c │ │ ├── complexdots.c │ │ ├── ctbmv.c │ │ ├── d_cnjg.c │ │ ├── datatypes.h │ │ ├── drotm.c │ │ ├── drotmg.c │ │ ├── dsbmv.c │ │ ├── dspmv.c │ │ ├── dtbmv.c │ │ ├── lsame.c │ │ ├── r_cnjg.c │ │ ├── srotm.c │ │ ├── srotmg.c │ │ ├── ssbmv.c │ │ ├── sspmv.c │ │ ├── stbmv.c │ │ ├── zhbmv.c │ │ ├── zhpmv.c │ │ └── ztbmv.c │ ├── fortran │ │ └── complexdots.f │ ├── level1_cplx_impl.h │ ├── level1_impl.h │ ├── level1_real_impl.h │ ├── level2_cplx_impl.h │ ├── level2_impl.h │ ├── level2_real_impl.h │ ├── level3_impl.h │ ├── single.cpp │ ├── testing │ │ ├── CMakeLists.txt │ │ ├── cblat1.f │ │ ├── cblat2.dat │ │ ├── cblat2.f │ │ ├── cblat3.dat │ │ ├── cblat3.f │ │ ├── dblat1.f │ │ ├── dblat2.dat │ │ ├── dblat2.f │ │ ├── dblat3.dat │ │ ├── dblat3.f │ │ ├── runblastest.sh │ │ ├── sblat1.f │ │ ├── sblat2.dat │ │ ├── sblat2.f │ │ ├── sblat3.dat │ │ ├── sblat3.f │ │ ├── zblat1.f │ │ ├── zblat2.dat │ │ ├── zblat2.f │ │ ├── zblat3.dat │ │ └── zblat3.f │ └── xerbla.cpp ├── ci │ ├── CTest2JUnit.xsl │ ├── README.md │ ├── build.gitlab-ci.yml │ ├── smoketests.gitlab-ci.yml │ └── test.gitlab-ci.yml ├── cmake │ ├── ComputeCppCompilerChecks.cmake │ ├── ComputeCppIRMap.cmake │ ├── Eigen3Config.cmake.in │ ├── Eigen3ConfigLegacy.cmake.in │ ├── EigenConfigureTesting.cmake │ ├── EigenDetermineOSVersion.cmake │ ├── EigenDetermineVSServicePack.cmake │ ├── EigenSmokeTestList.cmake │ ├── EigenTesting.cmake │ ├── EigenUninstall.cmake │ ├── FindAdolc.cmake │ ├── FindBLAS.cmake │ ├── FindBLASEXT.cmake │ ├── FindCHOLMOD.cmake │ ├── FindComputeCpp.cmake │ ├── FindEigen2.cmake │ ├── FindEigen3.cmake │ ├── FindFFTW.cmake │ ├── FindGLEW.cmake │ ├── FindGMP.cmake │ ├── FindGSL.cmake │ ├── FindGoogleHash.cmake │ ├── FindHWLOC.cmake │ ├── FindKLU.cmake │ ├── FindLAPACK.cmake │ ├── FindMPFR.cmake │ ├── FindMPREAL.cmake │ ├── FindMetis.cmake │ ├── FindPASTIX.cmake │ ├── FindPTSCOTCH.cmake │ ├── FindSCOTCH.cmake │ ├── FindSPQR.cmake │ ├── FindStandardMathLibrary.cmake │ ├── FindSuperLU.cmake │ ├── FindTriSYCL.cmake │ ├── FindUMFPACK.cmake │ ├── RegexUtils.cmake │ └── UseEigen3.cmake ├── debug │ ├── gdb │ │ ├── __init__.py │ │ └── printers.py │ └── msvc │ │ ├── eigen.natvis │ │ └── eigen_autoexp_part.dat ├── demos │ ├── CMakeLists.txt │ ├── mandelbrot │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── mandelbrot.cpp │ │ └── mandelbrot.h │ ├── mix_eigen_and_c │ │ ├── README │ │ ├── binary_library.cpp │ │ ├── binary_library.h │ │ └── example.c │ └── opengl │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── camera.cpp │ │ ├── camera.h │ │ ├── gpuhelper.cpp │ │ ├── gpuhelper.h │ │ ├── icosphere.cpp │ │ ├── icosphere.h │ │ ├── quaternion_demo.cpp │ │ ├── quaternion_demo.h │ │ ├── trackball.cpp │ │ └── trackball.h ├── doc │ ├── AsciiQuickReference.txt │ ├── B01_Experimental.dox │ ├── CMakeLists.txt │ ├── ClassHierarchy.dox │ ├── CoeffwiseMathFunctionsTable.dox │ ├── CustomizingEigen_CustomScalar.dox │ ├── CustomizingEigen_InheritingMatrix.dox │ ├── CustomizingEigen_NullaryExpr.dox │ ├── CustomizingEigen_Plugins.dox │ ├── DenseDecompositionBenchmark.dox │ ├── Doxyfile.in │ ├── Eigen_Silly_Professor_64x64.png │ ├── FixedSizeVectorizable.dox │ ├── FunctionsTakingEigenTypes.dox │ ├── HiPerformance.dox │ ├── InplaceDecomposition.dox │ ├── InsideEigenExample.dox │ ├── LeastSquares.dox │ ├── Manual.dox │ ├── MatrixfreeSolverExample.dox │ ├── NewExpressionType.dox │ ├── Overview.dox │ ├── PassingByValue.dox │ ├── Pitfalls.dox │ ├── PreprocessorDirectives.dox │ ├── QuickReference.dox │ ├── QuickStartGuide.dox │ ├── SparseLinearSystems.dox │ ├── SparseQuickReference.dox │ ├── StlContainers.dox │ ├── StorageOrders.dox │ ├── StructHavingEigenMembers.dox │ ├── TemplateKeyword.dox │ ├── TopicAliasing.dox │ ├── TopicAssertions.dox │ ├── TopicCMakeGuide.dox │ ├── TopicEigenExpressionTemplates.dox │ ├── TopicLazyEvaluation.dox │ ├── TopicLinearAlgebraDecompositions.dox │ ├── TopicMultithreading.dox │ ├── TopicResizing.dox │ ├── TopicScalarTypes.dox │ ├── TopicVectorization.dox │ ├── TutorialAdvancedInitialization.dox │ ├── TutorialArrayClass.dox │ ├── TutorialBlockOperations.dox │ ├── TutorialGeometry.dox │ ├── TutorialLinearAlgebra.dox │ ├── TutorialMapClass.dox │ ├── TutorialMatrixArithmetic.dox │ ├── TutorialMatrixClass.dox │ ├── TutorialReductionsVisitorsBroadcasting.dox │ ├── TutorialReshape.dox │ ├── TutorialSTL.dox │ ├── TutorialSlicingIndexing.dox │ ├── TutorialSparse.dox │ ├── TutorialSparse_example_details.dox │ ├── UnalignedArrayAssert.dox │ ├── UsingBlasLapackBackends.dox │ ├── UsingIntelMKL.dox │ ├── UsingNVCC.dox │ ├── WrongStackAlignment.dox │ ├── eigen_navtree_hacks.js │ ├── eigendoxy.css │ ├── eigendoxy_footer.html.in │ ├── eigendoxy_header.html.in │ ├── eigendoxy_layout.xml.in │ ├── eigendoxy_tabs.css │ ├── examples │ │ ├── .krazy │ │ ├── CMakeLists.txt │ │ ├── CustomizingEigen_Inheritance.cpp │ │ ├── Cwise_erf.cpp │ │ ├── Cwise_erfc.cpp │ │ ├── Cwise_lgamma.cpp │ │ ├── DenseBase_middleCols_int.cpp │ │ ├── DenseBase_middleRows_int.cpp │ │ ├── DenseBase_template_int_middleCols.cpp │ │ ├── DenseBase_template_int_middleRows.cpp │ │ ├── QuickStart_example.cpp │ │ ├── QuickStart_example2_dynamic.cpp │ │ ├── QuickStart_example2_fixed.cpp │ │ ├── TemplateKeyword_flexible.cpp │ │ ├── TemplateKeyword_simple.cpp │ │ ├── TutorialInplaceLU.cpp │ │ ├── TutorialLinAlgComputeTwice.cpp │ │ ├── TutorialLinAlgExComputeSolveError.cpp │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp │ │ ├── TutorialLinAlgExSolveLDLT.cpp │ │ ├── TutorialLinAlgInverseDeterminant.cpp │ │ ├── TutorialLinAlgRankRevealing.cpp │ │ ├── TutorialLinAlgSVDSolve.cpp │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp │ │ ├── TutorialLinAlgSetThreshold.cpp │ │ ├── Tutorial_ArrayClass_accessors.cpp │ │ ├── Tutorial_ArrayClass_addition.cpp │ │ ├── Tutorial_ArrayClass_cwise_other.cpp │ │ ├── Tutorial_ArrayClass_interop.cpp │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp │ │ ├── Tutorial_ArrayClass_mult.cpp │ │ ├── Tutorial_BlockOperations_block_assignment.cpp │ │ ├── Tutorial_BlockOperations_colrow.cpp │ │ ├── Tutorial_BlockOperations_corner.cpp │ │ ├── Tutorial_BlockOperations_print_block.cpp │ │ ├── Tutorial_BlockOperations_vector.cpp │ │ ├── Tutorial_PartialLU_solve.cpp │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp │ │ ├── Tutorial_simple_example_dynamic_size.cpp │ │ ├── Tutorial_simple_example_fixed_size.cpp │ │ ├── class_Block.cpp │ │ ├── class_CwiseBinaryOp.cpp │ │ ├── class_CwiseUnaryOp.cpp │ │ ├── class_CwiseUnaryOp_ptrfun.cpp │ │ ├── class_FixedBlock.cpp │ │ ├── class_FixedReshaped.cpp │ │ ├── class_FixedVectorBlock.cpp │ │ ├── class_Reshaped.cpp │ │ ├── class_VectorBlock.cpp │ │ ├── function_taking_eigenbase.cpp │ │ ├── function_taking_ref.cpp │ │ ├── make_circulant.cpp │ │ ├── make_circulant.cpp.entry │ │ ├── make_circulant.cpp.evaluator │ │ ├── make_circulant.cpp.expression │ │ ├── make_circulant.cpp.main │ │ ├── make_circulant.cpp.preamble │ │ ├── make_circulant.cpp.traits │ │ ├── make_circulant2.cpp │ │ ├── matrixfree_cg.cpp │ │ ├── nullary_indexing.cpp │ │ ├── tut_arithmetic_add_sub.cpp │ │ ├── tut_arithmetic_dot_cross.cpp │ │ ├── tut_arithmetic_matrix_mul.cpp │ │ ├── tut_arithmetic_redux_basic.cpp │ │ ├── tut_arithmetic_scalar_mul_div.cpp │ │ ├── tut_matrix_coefficient_accessors.cpp │ │ ├── tut_matrix_resize.cpp │ │ └── tut_matrix_resize_fixed_size.cpp │ ├── ftv2node.png │ ├── ftv2pnode.png │ ├── snippets │ │ ├── .krazy │ │ ├── AngleAxis_mimic_euler.cpp │ │ ├── Array_initializer_list_23_cxx11.cpp │ │ ├── Array_initializer_list_vector_cxx11.cpp │ │ ├── Array_variadic_ctor_cxx11.cpp │ │ ├── BiCGSTAB_simple.cpp │ │ ├── BiCGSTAB_step_by_step.cpp │ │ ├── CMakeLists.txt │ │ ├── ColPivHouseholderQR_solve.cpp │ │ ├── ComplexEigenSolver_compute.cpp │ │ ├── ComplexEigenSolver_eigenvalues.cpp │ │ ├── ComplexEigenSolver_eigenvectors.cpp │ │ ├── ComplexSchur_compute.cpp │ │ ├── ComplexSchur_matrixT.cpp │ │ ├── ComplexSchur_matrixU.cpp │ │ ├── Cwise_abs.cpp │ │ ├── Cwise_abs2.cpp │ │ ├── Cwise_acos.cpp │ │ ├── Cwise_arg.cpp │ │ ├── Cwise_array_power_array.cpp │ │ ├── Cwise_asin.cpp │ │ ├── Cwise_atan.cpp │ │ ├── Cwise_boolean_and.cpp │ │ ├── Cwise_boolean_not.cpp │ │ ├── Cwise_boolean_or.cpp │ │ ├── Cwise_boolean_xor.cpp │ │ ├── Cwise_ceil.cpp │ │ ├── Cwise_cos.cpp │ │ ├── Cwise_cosh.cpp │ │ ├── Cwise_cube.cpp │ │ ├── Cwise_equal_equal.cpp │ │ ├── Cwise_exp.cpp │ │ ├── Cwise_floor.cpp │ │ ├── Cwise_greater.cpp │ │ ├── Cwise_greater_equal.cpp │ │ ├── Cwise_inverse.cpp │ │ ├── Cwise_isFinite.cpp │ │ ├── Cwise_isInf.cpp │ │ ├── Cwise_isNaN.cpp │ │ ├── Cwise_less.cpp │ │ ├── Cwise_less_equal.cpp │ │ ├── Cwise_log.cpp │ │ ├── Cwise_log10.cpp │ │ ├── Cwise_max.cpp │ │ ├── Cwise_min.cpp │ │ ├── Cwise_minus.cpp │ │ ├── Cwise_minus_equal.cpp │ │ ├── Cwise_not_equal.cpp │ │ ├── Cwise_plus.cpp │ │ ├── Cwise_plus_equal.cpp │ │ ├── Cwise_pow.cpp │ │ ├── Cwise_product.cpp │ │ ├── Cwise_quotient.cpp │ │ ├── Cwise_rint.cpp │ │ ├── Cwise_round.cpp │ │ ├── Cwise_scalar_power_array.cpp │ │ ├── Cwise_sign.cpp │ │ ├── Cwise_sin.cpp │ │ ├── Cwise_sinh.cpp │ │ ├── Cwise_slash_equal.cpp │ │ ├── Cwise_sqrt.cpp │ │ ├── Cwise_square.cpp │ │ ├── Cwise_tan.cpp │ │ ├── Cwise_tanh.cpp │ │ ├── Cwise_times_equal.cpp │ │ ├── DenseBase_LinSpaced.cpp │ │ ├── DenseBase_LinSpacedInt.cpp │ │ ├── DenseBase_LinSpaced_seq_deprecated.cpp │ │ ├── DenseBase_setLinSpaced.cpp │ │ ├── DirectionWise_hnormalized.cpp │ │ ├── DirectionWise_replicate.cpp │ │ ├── DirectionWise_replicate_int.cpp │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp │ │ ├── EigenSolver_compute.cpp │ │ ├── EigenSolver_eigenvalues.cpp │ │ ├── EigenSolver_eigenvectors.cpp │ │ ├── EigenSolver_pseudoEigenvectors.cpp │ │ ├── FullPivHouseholderQR_solve.cpp │ │ ├── FullPivLU_image.cpp │ │ ├── FullPivLU_kernel.cpp │ │ ├── FullPivLU_solve.cpp │ │ ├── GeneralizedEigenSolver.cpp │ │ ├── HessenbergDecomposition_compute.cpp │ │ ├── HessenbergDecomposition_matrixH.cpp │ │ ├── HessenbergDecomposition_packedMatrix.cpp │ │ ├── HouseholderQR_householderQ.cpp │ │ ├── HouseholderQR_solve.cpp │ │ ├── HouseholderSequence_HouseholderSequence.cpp │ │ ├── IOFormat.cpp │ │ ├── JacobiSVD_basic.cpp │ │ ├── Jacobi_makeGivens.cpp │ │ ├── Jacobi_makeJacobi.cpp │ │ ├── LLT_example.cpp │ │ ├── LLT_solve.cpp │ │ ├── LeastSquaresNormalEquations.cpp │ │ ├── LeastSquaresQR.cpp │ │ ├── Map_general_stride.cpp │ │ ├── Map_inner_stride.cpp │ │ ├── Map_outer_stride.cpp │ │ ├── Map_placement_new.cpp │ │ ├── Map_simple.cpp │ │ ├── MatrixBase_adjoint.cpp │ │ ├── MatrixBase_all.cpp │ │ ├── MatrixBase_applyOnTheLeft.cpp │ │ ├── MatrixBase_applyOnTheRight.cpp │ │ ├── MatrixBase_array.cpp │ │ ├── MatrixBase_array_const.cpp │ │ ├── MatrixBase_asDiagonal.cpp │ │ ├── MatrixBase_block_int_int.cpp │ │ ├── MatrixBase_block_int_int_int_int.cpp │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp │ │ ├── MatrixBase_bottomRows_int.cpp │ │ ├── MatrixBase_cast.cpp │ │ ├── MatrixBase_col.cpp │ │ ├── MatrixBase_colwise.cpp │ │ ├── MatrixBase_colwise_iterator_cxx11.cpp │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ ├── MatrixBase_cwiseAbs.cpp │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ ├── MatrixBase_cwiseArg.cpp │ │ ├── MatrixBase_cwiseEqual.cpp │ │ ├── MatrixBase_cwiseInverse.cpp │ │ ├── MatrixBase_cwiseMax.cpp │ │ ├── MatrixBase_cwiseMin.cpp │ │ ├── MatrixBase_cwiseNotEqual.cpp │ │ ├── MatrixBase_cwiseProduct.cpp │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ ├── MatrixBase_cwiseSign.cpp │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ ├── MatrixBase_diagonal.cpp │ │ ├── MatrixBase_diagonal_int.cpp │ │ ├── MatrixBase_diagonal_template_int.cpp │ │ ├── MatrixBase_eigenvalues.cpp │ │ ├── MatrixBase_end_int.cpp │ │ ├── MatrixBase_eval.cpp │ │ ├── MatrixBase_fixedBlock_int_int.cpp │ │ ├── MatrixBase_hnormalized.cpp │ │ ├── MatrixBase_homogeneous.cpp │ │ ├── MatrixBase_identity.cpp │ │ ├── MatrixBase_identity_int_int.cpp │ │ ├── MatrixBase_inverse.cpp │ │ ├── MatrixBase_isDiagonal.cpp │ │ ├── MatrixBase_isIdentity.cpp │ │ ├── MatrixBase_isOnes.cpp │ │ ├── MatrixBase_isOrthogonal.cpp │ │ ├── MatrixBase_isUnitary.cpp │ │ ├── MatrixBase_isZero.cpp │ │ ├── MatrixBase_leftCols_int.cpp │ │ ├── MatrixBase_noalias.cpp │ │ ├── MatrixBase_ones.cpp │ │ ├── MatrixBase_ones_int.cpp │ │ ├── MatrixBase_ones_int_int.cpp │ │ ├── MatrixBase_operatorNorm.cpp │ │ ├── MatrixBase_prod.cpp │ │ ├── MatrixBase_random.cpp │ │ ├── MatrixBase_random_int.cpp │ │ ├── MatrixBase_random_int_int.cpp │ │ ├── MatrixBase_replicate.cpp │ │ ├── MatrixBase_replicate_int_int.cpp │ │ ├── MatrixBase_reshaped_auto.cpp │ │ ├── MatrixBase_reshaped_fixed.cpp │ │ ├── MatrixBase_reshaped_int_int.cpp │ │ ├── MatrixBase_reshaped_to_vector.cpp │ │ ├── MatrixBase_reverse.cpp │ │ ├── MatrixBase_rightCols_int.cpp │ │ ├── MatrixBase_row.cpp │ │ ├── MatrixBase_rowwise.cpp │ │ ├── MatrixBase_segment_int_int.cpp │ │ ├── MatrixBase_select.cpp │ │ ├── MatrixBase_selfadjointView.cpp │ │ ├── MatrixBase_set.cpp │ │ ├── MatrixBase_setIdentity.cpp │ │ ├── MatrixBase_setOnes.cpp │ │ ├── MatrixBase_setRandom.cpp │ │ ├── MatrixBase_setZero.cpp │ │ ├── MatrixBase_start_int.cpp │ │ ├── MatrixBase_template_int_bottomRows.cpp │ │ ├── MatrixBase_template_int_end.cpp │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp │ │ ├── MatrixBase_template_int_leftCols.cpp │ │ ├── MatrixBase_template_int_rightCols.cpp │ │ ├── MatrixBase_template_int_segment.cpp │ │ ├── MatrixBase_template_int_start.cpp │ │ ├── MatrixBase_template_int_topRows.cpp │ │ ├── MatrixBase_topLeftCorner_int_int.cpp │ │ ├── MatrixBase_topRightCorner_int_int.cpp │ │ ├── MatrixBase_topRows_int.cpp │ │ ├── MatrixBase_transpose.cpp │ │ ├── MatrixBase_triangularView.cpp │ │ ├── MatrixBase_zero.cpp │ │ ├── MatrixBase_zero_int.cpp │ │ ├── MatrixBase_zero_int_int.cpp │ │ ├── Matrix_Map_stride.cpp │ │ ├── Matrix_initializer_list_23_cxx11.cpp │ │ ├── Matrix_initializer_list_vector_cxx11.cpp │ │ ├── Matrix_resize_NoChange_int.cpp │ │ ├── Matrix_resize_int.cpp │ │ ├── Matrix_resize_int_NoChange.cpp │ │ ├── Matrix_resize_int_int.cpp │ │ ├── Matrix_setConstant_int.cpp │ │ ├── Matrix_setConstant_int_int.cpp │ │ ├── Matrix_setIdentity_int_int.cpp │ │ ├── Matrix_setOnes_int.cpp │ │ ├── Matrix_setOnes_int_int.cpp │ │ ├── Matrix_setRandom_int.cpp │ │ ├── Matrix_setRandom_int_int.cpp │ │ ├── Matrix_setZero_int.cpp │ │ ├── Matrix_setZero_int_int.cpp │ │ ├── Matrix_variadic_ctor_cxx11.cpp │ │ ├── PartialPivLU_solve.cpp │ │ ├── PartialRedux_count.cpp │ │ ├── PartialRedux_maxCoeff.cpp │ │ ├── PartialRedux_minCoeff.cpp │ │ ├── PartialRedux_norm.cpp │ │ ├── PartialRedux_prod.cpp │ │ ├── PartialRedux_squaredNorm.cpp │ │ ├── PartialRedux_sum.cpp │ │ ├── RealQZ_compute.cpp │ │ ├── RealSchur_RealSchur_MatrixType.cpp │ │ ├── RealSchur_compute.cpp │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp │ │ ├── SelfAdjointView_eigenvalues.cpp │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ ├── Slicing_arrayexpr.cpp │ │ ├── Slicing_custom_padding_cxx11.cpp │ │ ├── Slicing_rawarray_cxx11.cpp │ │ ├── Slicing_stdvector_cxx11.cpp │ │ ├── SparseMatrix_coeffs.cpp │ │ ├── TopicAliasing_block.cpp │ │ ├── TopicAliasing_block_correct.cpp │ │ ├── TopicAliasing_cwise.cpp │ │ ├── TopicAliasing_mult1.cpp │ │ ├── TopicAliasing_mult2.cpp │ │ ├── TopicAliasing_mult3.cpp │ │ ├── TopicAliasing_mult4.cpp │ │ ├── TopicAliasing_mult5.cpp │ │ ├── TopicStorageOrders_example.cpp │ │ ├── Triangular_solve.cpp │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp │ │ ├── Tridiagonalization_compute.cpp │ │ ├── Tridiagonalization_decomposeInPlace.cpp │ │ ├── Tridiagonalization_diagonal.cpp │ │ ├── Tridiagonalization_householderCoefficients.cpp │ │ ├── Tridiagonalization_packedMatrix.cpp │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp │ │ ├── Tutorial_AdvancedInitialization_Join.cpp │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp │ │ ├── Tutorial_Map_rowmajor.cpp │ │ ├── Tutorial_Map_using.cpp │ │ ├── Tutorial_ReshapeMat2Mat.cpp │ │ ├── Tutorial_ReshapeMat2Vec.cpp │ │ ├── Tutorial_SlicingCol.cpp │ │ ├── Tutorial_SlicingVec.cpp │ │ ├── Tutorial_commainit_01.cpp │ │ ├── Tutorial_commainit_01b.cpp │ │ ├── Tutorial_commainit_02.cpp │ │ ├── Tutorial_range_for_loop_1d_cxx11.cpp │ │ ├── Tutorial_range_for_loop_2d_cxx11.cpp │ │ ├── Tutorial_reshaped_vs_resize_1.cpp │ │ ├── Tutorial_reshaped_vs_resize_2.cpp │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ ├── Tutorial_solve_multiple_rhs.cpp │ │ ├── Tutorial_solve_reuse_decomposition.cpp │ │ ├── Tutorial_solve_singular.cpp │ │ ├── Tutorial_solve_triangular.cpp │ │ ├── Tutorial_solve_triangular_inplace.cpp │ │ ├── Tutorial_std_sort.cpp │ │ ├── Tutorial_std_sort_rows_cxx11.cpp │ │ ├── VectorwiseOp_homogeneous.cpp │ │ ├── Vectorwise_reverse.cpp │ │ ├── class_FullPivLU.cpp │ │ ├── compile_snippet.cpp.in │ │ ├── tut_arithmetic_redux_minmax.cpp │ │ ├── tut_arithmetic_transpose_aliasing.cpp │ │ ├── tut_arithmetic_transpose_conjugate.cpp │ │ ├── tut_arithmetic_transpose_inplace.cpp │ │ └── tut_matrix_assignment_resizing.cpp │ ├── special_examples │ │ ├── CMakeLists.txt │ │ ├── Tutorial_sparse_example.cpp │ │ ├── Tutorial_sparse_example_details.cpp │ │ └── random_cpp11.cpp │ └── tutorial.cpp ├── eigen3.pc.in ├── failtest │ ├── CMakeLists.txt │ ├── bdcsvd_int.cpp │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ ├── block_on_const_type_actually_const_0.cpp │ ├── block_on_const_type_actually_const_1.cpp │ ├── colpivqr_int.cpp │ ├── const_qualified_block_method_retval_0.cpp │ ├── const_qualified_block_method_retval_1.cpp │ ├── const_qualified_diagonal_method_retval.cpp │ ├── const_qualified_transpose_method_retval.cpp │ ├── cwiseunaryview_nonconst_ctor_on_const_xpr.cpp │ ├── cwiseunaryview_on_const_type_actually_const.cpp │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ ├── diagonal_on_const_type_actually_const.cpp │ ├── eigensolver_cplx.cpp │ ├── eigensolver_int.cpp │ ├── failtest_sanity_check.cpp │ ├── fullpivlu_int.cpp │ ├── fullpivqr_int.cpp │ ├── initializer_list_1.cpp │ ├── initializer_list_2.cpp │ ├── jacobisvd_int.cpp │ ├── ldlt_int.cpp │ ├── llt_int.cpp │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ ├── map_on_const_type_actually_const_0.cpp │ ├── map_on_const_type_actually_const_1.cpp │ ├── partialpivlu_int.cpp │ ├── qr_int.cpp │ ├── ref_1.cpp │ ├── ref_2.cpp │ ├── ref_3.cpp │ ├── ref_4.cpp │ ├── ref_5.cpp │ ├── selfadjointview_nonconst_ctor_on_const_xpr.cpp │ ├── selfadjointview_on_const_type_actually_const.cpp │ ├── sparse_ref_1.cpp │ ├── sparse_ref_2.cpp │ ├── sparse_ref_3.cpp │ ├── sparse_ref_4.cpp │ ├── sparse_ref_5.cpp │ ├── sparse_storage_mismatch.cpp │ ├── swap_1.cpp │ ├── swap_2.cpp │ ├── ternary_1.cpp │ ├── ternary_2.cpp │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ ├── transpose_on_const_type_actually_const.cpp │ ├── triangularview_nonconst_ctor_on_const_xpr.cpp │ └── triangularview_on_const_type_actually_const.cpp ├── lapack │ ├── CMakeLists.txt │ ├── cholesky.cpp │ ├── clacgv.f │ ├── cladiv.f │ ├── clarf.f │ ├── clarfb.f │ ├── clarfg.f │ ├── clarft.f │ ├── complex_double.cpp │ ├── complex_single.cpp │ ├── dladiv.f │ ├── dlamch.f │ ├── dlapy2.f │ ├── dlapy3.f │ ├── dlarf.f │ ├── dlarfb.f │ ├── dlarfg.f │ ├── dlarft.f │ ├── double.cpp │ ├── dsecnd_NONE.f │ ├── eigenvalues.cpp │ ├── ilaclc.f │ ├── ilaclr.f │ ├── iladlc.f │ ├── iladlr.f │ ├── ilaslc.f │ ├── ilaslr.f │ ├── ilazlc.f │ ├── ilazlr.f │ ├── lapack_common.h │ ├── lu.cpp │ ├── second_NONE.f │ ├── single.cpp │ ├── sladiv.f │ ├── slamch.f │ ├── slapy2.f │ ├── slapy3.f │ ├── slarf.f │ ├── slarfb.f │ ├── slarfg.f │ ├── slarft.f │ ├── svd.cpp │ ├── zlacgv.f │ ├── zladiv.f │ ├── zlarf.f │ ├── zlarfb.f │ ├── zlarfg.f │ └── zlarft.f ├── scripts │ ├── CMakeLists.txt │ ├── cdashtesting.cmake.in │ ├── check.in │ ├── debug.in │ ├── eigen_gen_credits.cpp │ ├── eigen_gen_docs │ ├── eigen_gen_split_test_help.cmake │ ├── eigen_monitor_perf.sh │ ├── release.in │ └── relicense.py ├── signature_of_eigen3_matrix_library ├── test │ ├── AnnoyingScalar.h │ ├── CMakeLists.txt │ ├── MovableScalar.h │ ├── SafeScalar.h │ ├── adjoint.cpp │ ├── array_cwise.cpp │ ├── array_for_matrix.cpp │ ├── array_of_string.cpp │ ├── array_replicate.cpp │ ├── array_reverse.cpp │ ├── bandmatrix.cpp │ ├── basicstuff.cpp │ ├── bdcsvd.cpp │ ├── bfloat16_float.cpp │ ├── bicgstab.cpp │ ├── blasutil.cpp │ ├── block.cpp │ ├── boostmultiprec.cpp │ ├── bug1213.cpp │ ├── bug1213.h │ ├── bug1213_main.cpp │ ├── cholesky.cpp │ ├── cholmod_support.cpp │ ├── commainitializer.cpp │ ├── conjugate_gradient.cpp │ ├── conservative_resize.cpp │ ├── constructor.cpp │ ├── corners.cpp │ ├── ctorleak.cpp │ ├── denseLM.cpp │ ├── dense_storage.cpp │ ├── determinant.cpp │ ├── diagonal.cpp │ ├── diagonal_matrix_variadic_ctor.cpp │ ├── diagonalmatrices.cpp │ ├── dontalign.cpp │ ├── dynalloc.cpp │ ├── eigen2support.cpp │ ├── eigensolver_complex.cpp │ ├── eigensolver_generalized_real.cpp │ ├── eigensolver_generic.cpp │ ├── eigensolver_selfadjoint.cpp │ ├── evaluator_common.h │ ├── evaluators.cpp │ ├── exceptions.cpp │ ├── fastmath.cpp │ ├── first_aligned.cpp │ ├── geo_alignedbox.cpp │ ├── geo_eulerangles.cpp │ ├── geo_homogeneous.cpp │ ├── geo_hyperplane.cpp │ ├── geo_orthomethods.cpp │ ├── geo_parametrizedline.cpp │ ├── geo_quaternion.cpp │ ├── geo_transformations.cpp │ ├── gpu_basic.cu │ ├── gpu_common.h │ ├── half_float.cpp │ ├── hessenberg.cpp │ ├── householder.cpp │ ├── incomplete_cholesky.cpp │ ├── indexed_view.cpp │ ├── initializer_list_construction.cpp │ ├── inplace_decomposition.cpp │ ├── integer_types.cpp │ ├── inverse.cpp │ ├── io.cpp │ ├── is_same_dense.cpp │ ├── jacobi.cpp │ ├── jacobisvd.cpp │ ├── klu_support.cpp │ ├── linearstructure.cpp │ ├── lscg.cpp │ ├── lu.cpp │ ├── main.h │ ├── mapped_matrix.cpp │ ├── mapstaticmethods.cpp │ ├── mapstride.cpp │ ├── meta.cpp │ ├── metis_support.cpp │ ├── miscmatrices.cpp │ ├── mixingtypes.cpp │ ├── mpl2only.cpp │ ├── nestbyvalue.cpp │ ├── nesting_ops.cpp │ ├── nomalloc.cpp │ ├── nullary.cpp │ ├── num_dimensions.cpp │ ├── numext.cpp │ ├── packetmath.cpp │ ├── packetmath_test_shared.h │ ├── pardiso_support.cpp │ ├── pastix_support.cpp │ ├── permutationmatrices.cpp │ ├── prec_inverse_4x4.cpp │ ├── product.h │ ├── product_extra.cpp │ ├── product_large.cpp │ ├── product_mmtr.cpp │ ├── product_notemporary.cpp │ ├── product_selfadjoint.cpp │ ├── product_small.cpp │ ├── product_symm.cpp │ ├── product_syrk.cpp │ ├── product_trmm.cpp │ ├── product_trmv.cpp │ ├── product_trsolve.cpp │ ├── qr.cpp │ ├── qr_colpivoting.cpp │ ├── qr_fullpivoting.cpp │ ├── qtvector.cpp │ ├── rand.cpp │ ├── random_without_cast_overflow.h │ ├── real_qz.cpp │ ├── redux.cpp │ ├── ref.cpp │ ├── reshape.cpp │ ├── resize.cpp │ ├── rvalue_types.cpp │ ├── schur_complex.cpp │ ├── schur_real.cpp │ ├── selfadjoint.cpp │ ├── simplicial_cholesky.cpp │ ├── sizeof.cpp │ ├── sizeoverflow.cpp │ ├── smallvectors.cpp │ ├── solverbase.h │ ├── sparse.h │ ├── sparseLM.cpp │ ├── sparse_basic.cpp │ ├── sparse_block.cpp │ ├── sparse_permutations.cpp │ ├── sparse_product.cpp │ ├── sparse_ref.cpp │ ├── sparse_solver.h │ ├── sparse_solvers.cpp │ ├── sparse_vector.cpp │ ├── sparselu.cpp │ ├── sparseqr.cpp │ ├── special_numbers.cpp │ ├── split_test_helper.h │ ├── spqr_support.cpp │ ├── stable_norm.cpp │ ├── stddeque.cpp │ ├── stddeque_overload.cpp │ ├── stdlist.cpp │ ├── stdlist_overload.cpp │ ├── stdvector.cpp │ ├── stdvector_overload.cpp │ ├── stl_iterators.cpp │ ├── superlu_support.cpp │ ├── svd_common.h │ ├── svd_fill.h │ ├── swap.cpp │ ├── symbolic_index.cpp │ ├── triangular.cpp │ ├── type_alias.cpp │ ├── umeyama.cpp │ ├── umfpack_support.cpp │ ├── unalignedcount.cpp │ ├── upperbidiagonalization.cpp │ ├── vectorization_logic.cpp │ ├── vectorwiseop.cpp │ ├── visitor.cpp │ └── zerosized.cpp └── unsupported │ ├── CMakeLists.txt │ ├── Eigen │ ├── AdolcForward │ ├── AlignedVector3 │ ├── ArpackSupport │ ├── AutoDiff │ ├── BVH │ ├── CMakeLists.txt │ ├── CXX11 │ │ ├── CMakeLists.txt │ │ ├── Tensor │ │ ├── TensorSymmetry │ │ ├── ThreadPool │ │ └── src │ │ │ ├── Tensor │ │ │ ├── README.md │ │ │ ├── Tensor.h │ │ │ ├── TensorArgMax.h │ │ │ ├── TensorAssign.h │ │ │ ├── TensorBase.h │ │ │ ├── TensorBlock.h │ │ │ ├── TensorBroadcasting.h │ │ │ ├── TensorChipping.h │ │ │ ├── TensorConcatenation.h │ │ │ ├── TensorContraction.h │ │ │ ├── TensorContractionBlocking.h │ │ │ ├── TensorContractionCuda.h │ │ │ ├── TensorContractionGpu.h │ │ │ ├── TensorContractionMapper.h │ │ │ ├── TensorContractionSycl.h │ │ │ ├── TensorContractionThreadPool.h │ │ │ ├── TensorConversion.h │ │ │ ├── TensorConvolution.h │ │ │ ├── TensorConvolutionSycl.h │ │ │ ├── TensorCostModel.h │ │ │ ├── TensorCustomOp.h │ │ │ ├── TensorDevice.h │ │ │ ├── TensorDeviceCuda.h │ │ │ ├── TensorDeviceDefault.h │ │ │ ├── TensorDeviceGpu.h │ │ │ ├── TensorDeviceSycl.h │ │ │ ├── TensorDeviceThreadPool.h │ │ │ ├── TensorDimensionList.h │ │ │ ├── TensorDimensions.h │ │ │ ├── TensorEvalTo.h │ │ │ ├── TensorEvaluator.h │ │ │ ├── TensorExecutor.h │ │ │ ├── TensorExpr.h │ │ │ ├── TensorFFT.h │ │ │ ├── TensorFixedSize.h │ │ │ ├── TensorForcedEval.h │ │ │ ├── TensorForwardDeclarations.h │ │ │ ├── TensorFunctors.h │ │ │ ├── TensorGenerator.h │ │ │ ├── TensorGlobalFunctions.h │ │ │ ├── TensorGpuHipCudaDefines.h │ │ │ ├── TensorGpuHipCudaUndefines.h │ │ │ ├── TensorIO.h │ │ │ ├── TensorImagePatch.h │ │ │ ├── TensorIndexList.h │ │ │ ├── TensorInflation.h │ │ │ ├── TensorInitializer.h │ │ │ ├── TensorIntDiv.h │ │ │ ├── TensorLayoutSwap.h │ │ │ ├── TensorMacros.h │ │ │ ├── TensorMap.h │ │ │ ├── TensorMeta.h │ │ │ ├── TensorMorphing.h │ │ │ ├── TensorPadding.h │ │ │ ├── TensorPatch.h │ │ │ ├── TensorRandom.h │ │ │ ├── TensorReduction.h │ │ │ ├── TensorReductionCuda.h │ │ │ ├── TensorReductionGpu.h │ │ │ ├── TensorReductionSycl.h │ │ │ ├── TensorRef.h │ │ │ ├── TensorReverse.h │ │ │ ├── TensorScan.h │ │ │ ├── TensorScanSycl.h │ │ │ ├── TensorShuffling.h │ │ │ ├── TensorStorage.h │ │ │ ├── TensorStriding.h │ │ │ ├── TensorTrace.h │ │ │ ├── TensorTraits.h │ │ │ ├── TensorUInt128.h │ │ │ └── TensorVolumePatch.h │ │ │ ├── TensorSymmetry │ │ │ ├── DynamicSymmetry.h │ │ │ ├── StaticSymmetry.h │ │ │ ├── Symmetry.h │ │ │ └── util │ │ │ │ └── TemplateGroupTheory.h │ │ │ ├── ThreadPool │ │ │ ├── Barrier.h │ │ │ ├── EventCount.h │ │ │ ├── NonBlockingThreadPool.h │ │ │ ├── RunQueue.h │ │ │ ├── ThreadCancel.h │ │ │ ├── ThreadEnvironment.h │ │ │ ├── ThreadLocal.h │ │ │ ├── ThreadPoolInterface.h │ │ │ └── ThreadYield.h │ │ │ └── util │ │ │ ├── CXX11Meta.h │ │ │ ├── CXX11Workarounds.h │ │ │ ├── EmulateArray.h │ │ │ └── MaxSizeVector.h │ ├── EulerAngles │ ├── FFT │ ├── IterativeSolvers │ ├── KroneckerProduct │ ├── LevenbergMarquardt │ ├── MPRealSupport │ ├── MatrixFunctions │ ├── MoreVectorization │ ├── NonLinearOptimization │ ├── NumericalDiff │ ├── OpenGLSupport │ ├── Polynomials │ ├── Skyline │ ├── SparseExtra │ ├── SpecialFunctions │ ├── Splines │ └── src │ │ ├── AutoDiff │ │ ├── AutoDiffJacobian.h │ │ ├── AutoDiffScalar.h │ │ └── AutoDiffVector.h │ │ ├── BVH │ │ ├── BVAlgorithms.h │ │ └── KdBVH.h │ │ ├── Eigenvalues │ │ └── ArpackSelfAdjointEigenSolver.h │ │ ├── EulerAngles │ │ ├── CMakeLists.txt │ │ ├── EulerAngles.h │ │ └── EulerSystem.h │ │ ├── FFT │ │ ├── ei_fftw_impl.h │ │ └── ei_kissfft_impl.h │ │ ├── IterativeSolvers │ │ ├── ConstrainedConjGrad.h │ │ ├── DGMRES.h │ │ ├── GMRES.h │ │ ├── IDRS.h │ │ ├── IncompleteLU.h │ │ ├── IterationController.h │ │ ├── MINRES.h │ │ └── Scaling.h │ │ ├── KroneckerProduct │ │ └── KroneckerTensorProduct.h │ │ ├── LevenbergMarquardt │ │ ├── CopyrightMINPACK.txt │ │ ├── LMcovar.h │ │ ├── LMonestep.h │ │ ├── LMpar.h │ │ ├── LMqrsolv.h │ │ └── LevenbergMarquardt.h │ │ ├── MatrixFunctions │ │ ├── MatrixExponential.h │ │ ├── MatrixFunction.h │ │ ├── MatrixLogarithm.h │ │ ├── MatrixPower.h │ │ ├── MatrixSquareRoot.h │ │ └── StemFunction.h │ │ ├── MoreVectorization │ │ └── MathFunctions.h │ │ ├── NonLinearOptimization │ │ ├── HybridNonLinearSolver.h │ │ ├── LevenbergMarquardt.h │ │ ├── chkder.h │ │ ├── covar.h │ │ ├── dogleg.h │ │ ├── fdjac1.h │ │ ├── lmpar.h │ │ ├── qrsolv.h │ │ ├── r1mpyq.h │ │ ├── r1updt.h │ │ └── rwupdt.h │ │ ├── NumericalDiff │ │ └── NumericalDiff.h │ │ ├── Polynomials │ │ ├── Companion.h │ │ ├── PolynomialSolver.h │ │ └── PolynomialUtils.h │ │ ├── Skyline │ │ ├── SkylineInplaceLU.h │ │ ├── SkylineMatrix.h │ │ ├── SkylineMatrixBase.h │ │ ├── SkylineProduct.h │ │ ├── SkylineStorage.h │ │ └── SkylineUtil.h │ │ ├── SparseExtra │ │ ├── BlockOfDynamicSparseMatrix.h │ │ ├── BlockSparseMatrix.h │ │ ├── DynamicSparseMatrix.h │ │ ├── MarketIO.h │ │ ├── MatrixMarketIterator.h │ │ └── RandomSetter.h │ │ ├── SpecialFunctions │ │ ├── BesselFunctionsArrayAPI.h │ │ ├── BesselFunctionsBFloat16.h │ │ ├── BesselFunctionsFunctors.h │ │ ├── BesselFunctionsHalf.h │ │ ├── BesselFunctionsImpl.h │ │ ├── BesselFunctionsPacketMath.h │ │ ├── HipVectorCompatibility.h │ │ ├── SpecialFunctionsArrayAPI.h │ │ ├── SpecialFunctionsBFloat16.h │ │ ├── SpecialFunctionsFunctors.h │ │ ├── SpecialFunctionsHalf.h │ │ ├── SpecialFunctionsImpl.h │ │ ├── SpecialFunctionsPacketMath.h │ │ └── arch │ │ │ ├── AVX │ │ │ ├── BesselFunctions.h │ │ │ └── SpecialFunctions.h │ │ │ ├── AVX512 │ │ │ ├── BesselFunctions.h │ │ │ └── SpecialFunctions.h │ │ │ ├── GPU │ │ │ └── SpecialFunctions.h │ │ │ └── NEON │ │ │ ├── BesselFunctions.h │ │ │ └── SpecialFunctions.h │ │ └── Splines │ │ ├── Spline.h │ │ ├── SplineFitting.h │ │ └── SplineFwd.h │ ├── README.txt │ ├── bench │ └── bench_svd.cpp │ ├── doc │ ├── CMakeLists.txt │ ├── Overview.dox │ ├── SYCL.dox │ ├── eigendoxy_layout.xml.in │ ├── examples │ │ ├── BVH_Example.cpp │ │ ├── CMakeLists.txt │ │ ├── EulerAngles.cpp │ │ ├── FFT.cpp │ │ ├── MatrixExponential.cpp │ │ ├── MatrixFunction.cpp │ │ ├── MatrixLogarithm.cpp │ │ ├── MatrixPower.cpp │ │ ├── MatrixPower_optimal.cpp │ │ ├── MatrixSine.cpp │ │ ├── MatrixSinh.cpp │ │ ├── MatrixSquareRoot.cpp │ │ ├── PolynomialSolver1.cpp │ │ ├── PolynomialUtils1.cpp │ │ └── SYCL │ │ │ ├── CMakeLists.txt │ │ │ └── CwiseMul.cpp │ └── snippets │ │ └── CMakeLists.txt │ └── test │ ├── BVH.cpp │ ├── CMakeLists.txt │ ├── EulerAngles.cpp │ ├── FFT.cpp │ ├── FFTW.cpp │ ├── NonLinearOptimization.cpp │ ├── NumericalDiff.cpp │ ├── alignedvector3.cpp │ ├── autodiff.cpp │ ├── autodiff_scalar.cpp │ ├── bessel_functions.cpp │ ├── cxx11_eventcount.cpp │ ├── cxx11_maxsizevector.cpp │ ├── cxx11_meta.cpp │ ├── cxx11_non_blocking_thread_pool.cpp │ ├── cxx11_runqueue.cpp │ ├── cxx11_tensor_argmax.cpp │ ├── cxx11_tensor_argmax_gpu.cu │ ├── cxx11_tensor_argmax_sycl.cpp │ ├── cxx11_tensor_assign.cpp │ ├── cxx11_tensor_block_access.cpp │ ├── cxx11_tensor_block_eval.cpp │ ├── cxx11_tensor_block_io.cpp │ ├── cxx11_tensor_broadcast_sycl.cpp │ ├── cxx11_tensor_broadcasting.cpp │ ├── cxx11_tensor_builtins_sycl.cpp │ ├── cxx11_tensor_cast_float16_gpu.cu │ ├── cxx11_tensor_casts.cpp │ ├── cxx11_tensor_chipping.cpp │ ├── cxx11_tensor_chipping_sycl.cpp │ ├── cxx11_tensor_comparisons.cpp │ ├── cxx11_tensor_complex_cwise_ops_gpu.cu │ ├── cxx11_tensor_complex_gpu.cu │ ├── cxx11_tensor_concatenation.cpp │ ├── cxx11_tensor_concatenation_sycl.cpp │ ├── cxx11_tensor_const.cpp │ ├── cxx11_tensor_contract_gpu.cu │ ├── cxx11_tensor_contract_sycl.cpp │ ├── cxx11_tensor_contraction.cpp │ ├── cxx11_tensor_convolution.cpp │ ├── cxx11_tensor_convolution_sycl.cpp │ ├── cxx11_tensor_custom_index.cpp │ ├── cxx11_tensor_custom_op.cpp │ ├── cxx11_tensor_custom_op_sycl.cpp │ ├── cxx11_tensor_device.cu │ ├── cxx11_tensor_device_sycl.cpp │ ├── cxx11_tensor_dimension.cpp │ ├── cxx11_tensor_empty.cpp │ ├── cxx11_tensor_executor.cpp │ ├── cxx11_tensor_expr.cpp │ ├── cxx11_tensor_fft.cpp │ ├── cxx11_tensor_fixed_size.cpp │ ├── cxx11_tensor_forced_eval.cpp │ ├── cxx11_tensor_forced_eval_sycl.cpp │ ├── cxx11_tensor_generator.cpp │ ├── cxx11_tensor_generator_sycl.cpp │ ├── cxx11_tensor_gpu.cu │ ├── cxx11_tensor_ifft.cpp │ ├── cxx11_tensor_image_op_sycl.cpp │ ├── cxx11_tensor_image_patch.cpp │ ├── cxx11_tensor_image_patch_sycl.cpp │ ├── cxx11_tensor_index_list.cpp │ ├── cxx11_tensor_inflation.cpp │ ├── cxx11_tensor_inflation_sycl.cpp │ ├── cxx11_tensor_intdiv.cpp │ ├── cxx11_tensor_io.cpp │ ├── cxx11_tensor_layout_swap.cpp │ ├── cxx11_tensor_layout_swap_sycl.cpp │ ├── cxx11_tensor_lvalue.cpp │ ├── cxx11_tensor_map.cpp │ ├── cxx11_tensor_math.cpp │ ├── cxx11_tensor_math_sycl.cpp │ ├── cxx11_tensor_mixed_indices.cpp │ ├── cxx11_tensor_morphing.cpp │ ├── cxx11_tensor_morphing_sycl.cpp │ ├── cxx11_tensor_move.cpp │ ├── cxx11_tensor_notification.cpp │ ├── cxx11_tensor_of_complex.cpp │ ├── cxx11_tensor_of_const_values.cpp │ ├── cxx11_tensor_of_float16_gpu.cu │ ├── cxx11_tensor_of_strings.cpp │ ├── cxx11_tensor_padding.cpp │ ├── cxx11_tensor_padding_sycl.cpp │ ├── cxx11_tensor_patch.cpp │ ├── cxx11_tensor_patch_sycl.cpp │ ├── cxx11_tensor_random.cpp │ ├── cxx11_tensor_random_gpu.cu │ ├── cxx11_tensor_random_sycl.cpp │ ├── cxx11_tensor_reduction.cpp │ ├── cxx11_tensor_reduction_gpu.cu │ ├── cxx11_tensor_reduction_sycl.cpp │ ├── cxx11_tensor_ref.cpp │ ├── cxx11_tensor_reverse.cpp │ ├── cxx11_tensor_reverse_sycl.cpp │ ├── cxx11_tensor_roundings.cpp │ ├── cxx11_tensor_scan.cpp │ ├── cxx11_tensor_scan_gpu.cu │ ├── cxx11_tensor_scan_sycl.cpp │ ├── cxx11_tensor_shuffling.cpp │ ├── cxx11_tensor_shuffling_sycl.cpp │ ├── cxx11_tensor_simple.cpp │ ├── cxx11_tensor_striding.cpp │ ├── cxx11_tensor_striding_sycl.cpp │ ├── cxx11_tensor_sugar.cpp │ ├── cxx11_tensor_sycl.cpp │ ├── cxx11_tensor_symmetry.cpp │ ├── cxx11_tensor_thread_local.cpp │ ├── cxx11_tensor_thread_pool.cpp │ ├── cxx11_tensor_trace.cpp │ ├── cxx11_tensor_uint128.cpp │ ├── cxx11_tensor_volume_patch.cpp │ ├── cxx11_tensor_volume_patch_sycl.cpp │ ├── dgmres.cpp │ ├── forward_adolc.cpp │ ├── gmres.cpp │ ├── idrs.cpp │ ├── kronecker_product.cpp │ ├── levenberg_marquardt.cpp │ ├── matrix_exponential.cpp │ ├── matrix_function.cpp │ ├── matrix_functions.h │ ├── matrix_power.cpp │ ├── matrix_square_root.cpp │ ├── minres.cpp │ ├── mpreal_support.cpp │ ├── openglsupport.cpp │ ├── polynomialsolver.cpp │ ├── polynomialutils.cpp │ ├── sparse_extra.cpp │ ├── special_functions.cpp │ ├── special_packetmath.cpp │ └── splines.cpp ├── fsr2 ├── CMakeLists.txt ├── ffx_assert.cpp ├── ffx_assert.h ├── ffx_error.h ├── ffx_fsr2.cpp ├── ffx_fsr2.h ├── ffx_fsr2_interface.h ├── ffx_fsr2_maximum_bias.h ├── ffx_fsr2_private.h ├── ffx_types.h ├── ffx_util.h ├── shaders │ ├── ffx_common_types.h │ ├── ffx_core.h │ ├── ffx_core_cpu.h │ ├── ffx_core_glsl.h │ ├── ffx_core_gpu_common.h │ ├── ffx_core_gpu_common_half.h │ ├── ffx_core_hlsl.h │ ├── ffx_core_portability.h │ ├── ffx_fsr1.h │ ├── ffx_fsr2_accumulate.h │ ├── ffx_fsr2_accumulate_pass.glsl │ ├── ffx_fsr2_accumulate_pass.hlsl │ ├── ffx_fsr2_autogen_reactive_pass.glsl │ ├── ffx_fsr2_autogen_reactive_pass.hlsl │ ├── ffx_fsr2_callbacks_glsl.h │ ├── ffx_fsr2_callbacks_hlsl.h │ ├── ffx_fsr2_common.h │ ├── ffx_fsr2_compute_luminance_pyramid.h │ ├── ffx_fsr2_compute_luminance_pyramid_pass.glsl │ ├── ffx_fsr2_compute_luminance_pyramid_pass.hlsl │ ├── ffx_fsr2_depth_clip.h │ ├── ffx_fsr2_depth_clip_pass.glsl │ ├── ffx_fsr2_depth_clip_pass.hlsl │ ├── ffx_fsr2_lock.h │ ├── ffx_fsr2_lock_pass.glsl │ ├── ffx_fsr2_lock_pass.hlsl │ ├── ffx_fsr2_postprocess_lock_status.h │ ├── ffx_fsr2_prepare_input_color.h │ ├── ffx_fsr2_prepare_input_color_pass.glsl │ ├── ffx_fsr2_prepare_input_color_pass.hlsl │ ├── ffx_fsr2_rcas.h │ ├── ffx_fsr2_rcas_pass.glsl │ ├── ffx_fsr2_rcas_pass.hlsl │ ├── ffx_fsr2_reconstruct_dilated_velocity_and_previous_depth.h │ ├── ffx_fsr2_reconstruct_previous_depth_pass.glsl │ ├── ffx_fsr2_reconstruct_previous_depth_pass.hlsl │ ├── ffx_fsr2_reproject.h │ ├── ffx_fsr2_resources.h │ ├── ffx_fsr2_sample.h │ ├── ffx_fsr2_upsample.h │ └── ffx_spd.h ├── tools │ └── sc │ │ ├── FidelityFX_SC.exe │ │ ├── dxcompiler.dll │ │ ├── dxil.dll │ │ └── glslangValidator.exe └── vk │ ├── CMakeLists.txt │ ├── ffx_fsr2_vk.cpp │ ├── ffx_fsr2_vk.h │ └── shaders │ ├── ffx_fsr2_shaders_vk.cpp │ └── ffx_fsr2_shaders_vk.h ├── glm └── glm │ ├── CMakeLists.txt │ ├── LICENSE │ ├── common.hpp │ ├── detail │ ├── _features.hpp │ ├── _fixes.hpp │ ├── _noise.hpp │ ├── _swizzle.hpp │ ├── _swizzle_func.hpp │ ├── _vectorize.hpp │ ├── compute_common.hpp │ ├── compute_vector_relational.hpp │ ├── func_common.inl │ ├── func_common_simd.inl │ ├── func_exponential.inl │ ├── func_exponential_simd.inl │ ├── func_geometric.inl │ ├── func_geometric_simd.inl │ ├── func_integer.inl │ ├── func_integer_simd.inl │ ├── func_matrix.inl │ ├── func_matrix_simd.inl │ ├── func_packing.inl │ ├── func_packing_simd.inl │ ├── func_trigonometric.inl │ ├── func_trigonometric_simd.inl │ ├── func_vector_relational.inl │ ├── func_vector_relational_simd.inl │ ├── glm.cpp │ ├── qualifier.hpp │ ├── setup.hpp │ ├── type_float.hpp │ ├── type_half.hpp │ ├── type_half.inl │ ├── type_mat2x2.hpp │ ├── type_mat2x2.inl │ ├── type_mat2x3.hpp │ ├── type_mat2x3.inl │ ├── type_mat2x4.hpp │ ├── type_mat2x4.inl │ ├── type_mat3x2.hpp │ ├── type_mat3x2.inl │ ├── type_mat3x3.hpp │ ├── type_mat3x3.inl │ ├── type_mat3x4.hpp │ ├── type_mat3x4.inl │ ├── type_mat4x2.hpp │ ├── type_mat4x2.inl │ ├── type_mat4x3.hpp │ ├── type_mat4x3.inl │ ├── type_mat4x4.hpp │ ├── type_mat4x4.inl │ ├── type_mat4x4_simd.inl │ ├── type_quat.hpp │ ├── type_quat.inl │ ├── type_quat_simd.inl │ ├── type_vec1.hpp │ ├── type_vec1.inl │ ├── type_vec2.hpp │ ├── type_vec2.inl │ ├── type_vec3.hpp │ ├── type_vec3.inl │ ├── type_vec4.hpp │ ├── type_vec4.inl │ └── type_vec4_simd.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── ext │ ├── matrix_clip_space.hpp │ ├── matrix_clip_space.inl │ ├── matrix_common.hpp │ ├── matrix_common.inl │ ├── matrix_double2x2.hpp │ ├── matrix_double2x2_precision.hpp │ ├── matrix_double2x3.hpp │ ├── matrix_double2x3_precision.hpp │ ├── matrix_double2x4.hpp │ ├── matrix_double2x4_precision.hpp │ ├── matrix_double3x2.hpp │ ├── matrix_double3x2_precision.hpp │ ├── matrix_double3x3.hpp │ ├── matrix_double3x3_precision.hpp │ ├── matrix_double3x4.hpp │ ├── matrix_double3x4_precision.hpp │ ├── matrix_double4x2.hpp │ ├── matrix_double4x2_precision.hpp │ ├── matrix_double4x3.hpp │ ├── matrix_double4x3_precision.hpp │ ├── matrix_double4x4.hpp │ ├── matrix_double4x4_precision.hpp │ ├── matrix_float2x2.hpp │ ├── matrix_float2x2_precision.hpp │ ├── matrix_float2x3.hpp │ ├── matrix_float2x3_precision.hpp │ ├── matrix_float2x4.hpp │ ├── matrix_float2x4_precision.hpp │ ├── matrix_float3x2.hpp │ ├── matrix_float3x2_precision.hpp │ ├── matrix_float3x3.hpp │ ├── matrix_float3x3_precision.hpp │ ├── matrix_float3x4.hpp │ ├── matrix_float3x4_precision.hpp │ ├── matrix_float4x2.hpp │ ├── matrix_float4x2_precision.hpp │ ├── matrix_float4x3.hpp │ ├── matrix_float4x3_precision.hpp │ ├── matrix_float4x4.hpp │ ├── matrix_float4x4_precision.hpp │ ├── matrix_projection.hpp │ ├── matrix_projection.inl │ ├── matrix_relational.hpp │ ├── matrix_relational.inl │ ├── matrix_transform.hpp │ ├── matrix_transform.inl │ ├── quaternion_common.hpp │ ├── quaternion_common.inl │ ├── quaternion_common_simd.inl │ ├── quaternion_double.hpp │ ├── quaternion_double_precision.hpp │ ├── quaternion_exponential.hpp │ ├── quaternion_exponential.inl │ ├── quaternion_float.hpp │ ├── quaternion_float_precision.hpp │ ├── quaternion_geometric.hpp │ ├── quaternion_geometric.inl │ ├── quaternion_relational.hpp │ ├── quaternion_relational.inl │ ├── quaternion_transform.hpp │ ├── quaternion_transform.inl │ ├── quaternion_trigonometric.hpp │ ├── quaternion_trigonometric.inl │ ├── scalar_common.hpp │ ├── scalar_common.inl │ ├── scalar_constants.hpp │ ├── scalar_constants.inl │ ├── scalar_int_sized.hpp │ ├── scalar_integer.hpp │ ├── scalar_integer.inl │ ├── scalar_relational.hpp │ ├── scalar_relational.inl │ ├── scalar_uint_sized.hpp │ ├── scalar_ulp.hpp │ ├── scalar_ulp.inl │ ├── vector_bool1.hpp │ ├── vector_bool1_precision.hpp │ ├── vector_bool2.hpp │ ├── vector_bool2_precision.hpp │ ├── vector_bool3.hpp │ ├── vector_bool3_precision.hpp │ ├── vector_bool4.hpp │ ├── vector_bool4_precision.hpp │ ├── vector_common.hpp │ ├── vector_common.inl │ ├── vector_double1.hpp │ ├── vector_double1_precision.hpp │ ├── vector_double2.hpp │ ├── vector_double2_precision.hpp │ ├── vector_double3.hpp │ ├── vector_double3_precision.hpp │ ├── vector_double4.hpp │ ├── vector_double4_precision.hpp │ ├── vector_float1.hpp │ ├── vector_float1_precision.hpp │ ├── vector_float2.hpp │ ├── vector_float2_precision.hpp │ ├── vector_float3.hpp │ ├── vector_float3_precision.hpp │ ├── vector_float4.hpp │ ├── vector_float4_precision.hpp │ ├── vector_int1.hpp │ ├── vector_int1_precision.hpp │ ├── vector_int2.hpp │ ├── vector_int2_precision.hpp │ ├── vector_int3.hpp │ ├── vector_int3_precision.hpp │ ├── vector_int4.hpp │ ├── vector_int4_precision.hpp │ ├── vector_integer.hpp │ ├── vector_integer.inl │ ├── vector_relational.hpp │ ├── vector_relational.inl │ ├── vector_uint1.hpp │ ├── vector_uint1_precision.hpp │ ├── vector_uint2.hpp │ ├── vector_uint2_precision.hpp │ ├── vector_uint3.hpp │ ├── vector_uint3_precision.hpp │ ├── vector_uint4.hpp │ ├── vector_uint4_precision.hpp │ ├── vector_ulp.hpp │ └── vector_ulp.inl │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ ├── bitfield.hpp │ ├── bitfield.inl │ ├── color_space.hpp │ ├── color_space.inl │ ├── constants.hpp │ ├── constants.inl │ ├── epsilon.hpp │ ├── epsilon.inl │ ├── integer.hpp │ ├── integer.inl │ ├── matrix_access.hpp │ ├── matrix_access.inl │ ├── matrix_integer.hpp │ ├── matrix_inverse.hpp │ ├── matrix_inverse.inl │ ├── matrix_transform.hpp │ ├── matrix_transform.inl │ ├── noise.hpp │ ├── noise.inl │ ├── packing.hpp │ ├── packing.inl │ ├── quaternion.hpp │ ├── quaternion.inl │ ├── quaternion_simd.inl │ ├── random.hpp │ ├── random.inl │ ├── reciprocal.hpp │ ├── reciprocal.inl │ ├── round.hpp │ ├── round.inl │ ├── type_aligned.hpp │ ├── type_precision.hpp │ ├── type_precision.inl │ ├── type_ptr.hpp │ ├── type_ptr.inl │ ├── ulp.hpp │ ├── ulp.inl │ └── vec1.hpp │ ├── gtx │ ├── associated_min_max.hpp │ ├── associated_min_max.inl │ ├── bit.hpp │ ├── bit.inl │ ├── closest_point.hpp │ ├── closest_point.inl │ ├── color_encoding.hpp │ ├── color_encoding.inl │ ├── color_space.hpp │ ├── color_space.inl │ ├── color_space_YCoCg.hpp │ ├── color_space_YCoCg.inl │ ├── common.hpp │ ├── common.inl │ ├── compatibility.hpp │ ├── compatibility.inl │ ├── component_wise.hpp │ ├── component_wise.inl │ ├── dual_quaternion.hpp │ ├── dual_quaternion.inl │ ├── easing.hpp │ ├── easing.inl │ ├── euler_angles.hpp │ ├── euler_angles.inl │ ├── extend.hpp │ ├── extend.inl │ ├── extended_min_max.hpp │ ├── extended_min_max.inl │ ├── exterior_product.hpp │ ├── exterior_product.inl │ ├── fast_exponential.hpp │ ├── fast_exponential.inl │ ├── fast_square_root.hpp │ ├── fast_square_root.inl │ ├── fast_trigonometry.hpp │ ├── fast_trigonometry.inl │ ├── float_notmalize.inl │ ├── functions.hpp │ ├── functions.inl │ ├── gradient_paint.hpp │ ├── gradient_paint.inl │ ├── handed_coordinate_space.hpp │ ├── handed_coordinate_space.inl │ ├── hash.hpp │ ├── hash.inl │ ├── integer.hpp │ ├── integer.inl │ ├── intersect.hpp │ ├── intersect.inl │ ├── io.hpp │ ├── io.inl │ ├── log_base.hpp │ ├── log_base.inl │ ├── matrix_cross_product.hpp │ ├── matrix_cross_product.inl │ ├── matrix_decompose.hpp │ ├── matrix_decompose.inl │ ├── matrix_factorisation.hpp │ ├── matrix_factorisation.inl │ ├── matrix_interpolation.hpp │ ├── matrix_interpolation.inl │ ├── matrix_major_storage.hpp │ ├── matrix_major_storage.inl │ ├── matrix_operation.hpp │ ├── matrix_operation.inl │ ├── matrix_query.hpp │ ├── matrix_query.inl │ ├── matrix_transform_2d.hpp │ ├── matrix_transform_2d.inl │ ├── mixed_product.hpp │ ├── mixed_product.inl │ ├── norm.hpp │ ├── norm.inl │ ├── normal.hpp │ ├── normal.inl │ ├── normalize_dot.hpp │ ├── normalize_dot.inl │ ├── number_precision.hpp │ ├── number_precision.inl │ ├── optimum_pow.hpp │ ├── optimum_pow.inl │ ├── orthonormalize.hpp │ ├── orthonormalize.inl │ ├── perpendicular.hpp │ ├── perpendicular.inl │ ├── polar_coordinates.hpp │ ├── polar_coordinates.inl │ ├── projection.hpp │ ├── projection.inl │ ├── quaternion.hpp │ ├── quaternion.inl │ ├── range.hpp │ ├── raw_data.hpp │ ├── raw_data.inl │ ├── rotate_normalized_axis.hpp │ ├── rotate_normalized_axis.inl │ ├── rotate_vector.hpp │ ├── rotate_vector.inl │ ├── scalar_multiplication.hpp │ ├── scalar_relational.hpp │ ├── scalar_relational.inl │ ├── spline.hpp │ ├── spline.inl │ ├── std_based_type.hpp │ ├── std_based_type.inl │ ├── string_cast.hpp │ ├── string_cast.inl │ ├── texture.hpp │ ├── texture.inl │ ├── transform.hpp │ ├── transform.inl │ ├── transform2.hpp │ ├── transform2.inl │ ├── type_aligned.hpp │ ├── type_aligned.inl │ ├── type_trait.hpp │ ├── type_trait.inl │ ├── vec_swizzle.hpp │ ├── vector_angle.hpp │ ├── vector_angle.inl │ ├── vector_query.hpp │ ├── vector_query.inl │ ├── wrap.hpp │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── simd │ ├── common.h │ ├── exponential.h │ ├── geometric.h │ ├── integer.h │ ├── matrix.h │ ├── neon.h │ ├── packing.h │ ├── platform.h │ ├── trigonometric.h │ └── vector_relational.h │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── glslang ├── .appveyor.yml ├── .clang-format ├── .gitattributes ├── .github │ └── workflows │ │ ├── continuous_deployment.yml │ │ ├── continuous_integration.yml │ │ └── deploy.js ├── .gitignore ├── .gn ├── Android.mk ├── BUILD.bazel ├── BUILD.gn ├── CHANGES.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── ChooseMSVCCRT.cmake ├── DEPS ├── External │ └── CMakeLists.txt ├── LICENSE.txt ├── OGLCompilersDLL │ ├── CMakeLists.txt │ ├── InitializeDll.cpp │ └── InitializeDll.h ├── README-spirv-remap.txt ├── README.md ├── SPIRV │ ├── CInterface │ │ └── spirv_c_interface.cpp │ ├── CMakeLists.txt │ ├── GLSL.ext.AMD.h │ ├── GLSL.ext.ARM.h │ ├── GLSL.ext.EXT.h │ ├── GLSL.ext.KHR.h │ ├── GLSL.ext.NV.h │ ├── GLSL.std.450.h │ ├── GlslangToSpv.cpp │ ├── GlslangToSpv.h │ ├── InReadableOrder.cpp │ ├── Logger.cpp │ ├── Logger.h │ ├── NonSemanticDebugPrintf.h │ ├── NonSemanticShaderDebugInfo100.h │ ├── SPVRemapper.cpp │ ├── SPVRemapper.h │ ├── SpvBuilder.cpp │ ├── SpvBuilder.h │ ├── SpvPostProcess.cpp │ ├── SpvTools.cpp │ ├── SpvTools.h │ ├── bitutils.h │ ├── disassemble.cpp │ ├── disassemble.h │ ├── doc.cpp │ ├── doc.h │ ├── hex_float.h │ ├── spirv.hpp │ └── spvIR.h ├── StandAlone │ ├── CMakeLists.txt │ ├── DirStackFileIncluder.h │ ├── StandAlone.cpp │ ├── Worklist.h │ └── spirv-remap.cpp ├── Test │ ├── 100.conf │ ├── 100.frag │ ├── 100Limits.vert │ ├── 100samplerExternal.frag │ ├── 100scope.vert │ ├── 110scope.vert │ ├── 120.frag │ ├── 120.vert │ ├── 130.frag │ ├── 130.vert │ ├── 140.frag │ ├── 140.vert │ ├── 150.frag │ ├── 150.geom │ ├── 150.tesc │ ├── 150.tese │ ├── 150.vert │ ├── 300.frag │ ├── 300.vert │ ├── 300BuiltIns.frag │ ├── 300block.frag │ ├── 300layout.frag │ ├── 300layout.vert │ ├── 300link.frag │ ├── 300link2.frag │ ├── 300link3.frag │ ├── 300operations.frag │ ├── 300samplerExternal.frag │ ├── 300samplerExternalYUV.frag │ ├── 300scope.vert │ ├── 310.comp │ ├── 310.frag │ ├── 310.geom │ ├── 310.inheritMemory.frag │ ├── 310.tesc │ ├── 310.tese │ ├── 310.vert │ ├── 310AofA.vert │ ├── 310implicitSizeArrayError.vert │ ├── 310runtimeArray.vert │ ├── 320.comp │ ├── 320.frag │ ├── 320.geom │ ├── 320.tesc │ ├── 320.tese │ ├── 320.vert │ ├── 330.frag │ ├── 330comp.frag │ ├── 400.frag │ ├── 400.geom │ ├── 400.tesc │ ├── 400.tese │ ├── 400.vert │ ├── 410.geom │ ├── 410.tesc │ ├── 410.vert │ ├── 420.comp │ ├── 420.frag │ ├── 420.geom │ ├── 420.tesc │ ├── 420.tese │ ├── 420.vert │ ├── 420_size_gl_in.geom │ ├── 430.comp │ ├── 430.vert │ ├── 430AofA.frag │ ├── 430scope.vert │ ├── 435.vert │ ├── 440.frag │ ├── 440.vert │ ├── 450.comp │ ├── 450.frag │ ├── 450.geom │ ├── 450.tesc │ ├── 450.tese │ ├── 450.vert │ ├── 460.frag │ ├── 460.vert │ ├── BestMatchFunction.vert │ ├── EndStreamPrimitive.geom │ ├── GL_ARB_bindless_texture.frag │ ├── GL_ARB_draw_instanced.vert │ ├── GL_ARB_fragment_coord_conventions.vert │ ├── GL_ARB_gpu_shader5.u2i.vert │ ├── GL_EXT_shader_integer_mix.vert │ ├── Operations.frag │ ├── aggOps.frag │ ├── always-discard.frag │ ├── always-discard2.frag │ ├── array.frag │ ├── array100.frag │ ├── atomicAdd.comp │ ├── atomicCounterARBOps.vert │ ├── atomic_uint.frag │ ├── badChars.frag │ ├── badMacroArgs.frag │ ├── bar.h │ ├── baseLegalResults │ │ ├── hlsl.aliasOpaque.frag.out │ │ ├── hlsl.flattenOpaque.frag.out │ │ ├── hlsl.flattenOpaqueInit.vert.out │ │ ├── hlsl.flattenOpaqueInitMix.vert.out │ │ ├── hlsl.flattenSubset.frag.out │ │ ├── hlsl.flattenSubset2.frag.out │ │ ├── hlsl.intrinsics.evalfns.frag.out │ │ ├── hlsl.partialFlattenLocal.vert.out │ │ └── hlsl.partialFlattenMixed.vert.out │ ├── baseResults │ │ ├── 100.frag.out │ │ ├── 100Limits.vert.out │ │ ├── 100LimitsConf.vert.out │ │ ├── 100samplerExternal.frag.out │ │ ├── 100scope.vert.out │ │ ├── 110scope.vert.out │ │ ├── 120.frag.out │ │ ├── 120.vert.out │ │ ├── 130.frag.out │ │ ├── 130.vert.out │ │ ├── 140.frag.out │ │ ├── 140.vert.out │ │ ├── 150.frag.out │ │ ├── 150.geom.out │ │ ├── 150.tesc.out │ │ ├── 150.vert.out │ │ ├── 300.frag.out │ │ ├── 300.vert.out │ │ ├── 300BuiltIns.frag.out │ │ ├── 300block.frag.out │ │ ├── 300layout.frag.out │ │ ├── 300layout.vert.out │ │ ├── 300link.frag.out │ │ ├── 300link2.frag.out │ │ ├── 300link3.frag.out │ │ ├── 300operations.frag.out │ │ ├── 300samplerExternal.frag.out │ │ ├── 300samplerExternalYUV.frag.out │ │ ├── 300scope.vert.out │ │ ├── 310.comp.out │ │ ├── 310.frag.out │ │ ├── 310.geom.out │ │ ├── 310.inheritMemory.frag.out │ │ ├── 310.tesc.out │ │ ├── 310.tese.out │ │ ├── 310.vert.out │ │ ├── 310AofA.vert.out │ │ ├── 310implicitSizeArrayError.vert.out │ │ ├── 310runtimeArray.vert.out │ │ ├── 320.comp.out │ │ ├── 320.frag.out │ │ ├── 320.geom.out │ │ ├── 320.tesc.out │ │ ├── 320.tese.out │ │ ├── 320.vert.out │ │ ├── 330.frag.out │ │ ├── 330comp.frag.out │ │ ├── 400.frag.out │ │ ├── 400.geom.out │ │ ├── 400.tesc.out │ │ ├── 400.tese.out │ │ ├── 400.vert.out │ │ ├── 410.geom.out │ │ ├── 410.tesc.out │ │ ├── 410.vert.out │ │ ├── 420.comp.out │ │ ├── 420.frag.out │ │ ├── 420.geom.out │ │ ├── 420.tesc.out │ │ ├── 420.tese.out │ │ ├── 420.vert.out │ │ ├── 420_size_gl_in.geom.out │ │ ├── 430.comp.out │ │ ├── 430.vert.out │ │ ├── 430AofA.frag.out │ │ ├── 430scope.vert.out │ │ ├── 435.vert.out │ │ ├── 440.frag.out │ │ ├── 440.vert.out │ │ ├── 450.comp.out │ │ ├── 450.frag.out │ │ ├── 450.geom.out │ │ ├── 450.tesc.out │ │ ├── 450.tese.out │ │ ├── 450.vert.out │ │ ├── 460.frag.out │ │ ├── 460.vert.out │ │ ├── BestMatchFunction.vert.out │ │ ├── EndStreamPrimitive.geom.out │ │ ├── GL_ARB_bindless_texture.frag.out │ │ ├── GL_ARB_draw_instanced.vert.out │ │ ├── GL_ARB_fragment_coord_conventions.vert.out │ │ ├── GL_ARB_gpu_shader5.u2i.vert.out │ │ ├── GL_EXT_shader_integer_mix.vert.out │ │ ├── Operations.frag.out │ │ ├── aggOps.frag.out │ │ ├── always-discard.frag.out │ │ ├── always-discard2.frag.out │ │ ├── array.frag.out │ │ ├── array100.frag.out │ │ ├── atomicAdd.comp.out │ │ ├── atomicCounterARBOps.vert.out │ │ ├── atomic_uint.frag.out │ │ ├── badChars.frag.out │ │ ├── badMacroArgs.frag.out │ │ ├── comment.frag.out │ │ ├── compoundsuffix.frag.hlsl │ │ ├── compoundsuffix.vert.glsl │ │ ├── conditionalDiscard.frag.out │ │ ├── constErrors.frag.out │ │ ├── constFold.frag.out │ │ ├── constFoldIntMin.frag.out │ │ ├── constantUnaryConversion.comp.out │ │ ├── contradict_0.geom.out │ │ ├── conversion.frag.out │ │ ├── coord_conventions.frag.out │ │ ├── cppBad.vert.out │ │ ├── cppBad2.vert.out │ │ ├── cppBad3.vert.out │ │ ├── cppBad4.vert.out │ │ ├── cppBad5.vert.out │ │ ├── cppComplexExpr.vert.out │ │ ├── cppDeepNest.frag.out │ │ ├── cppIndent.vert.out │ │ ├── cppIntMinOverNegativeOne.frag.out │ │ ├── cppMerge.frag.out │ │ ├── cppNest.vert.out │ │ ├── cppPassMacroName.frag.out │ │ ├── cppRelaxSkipTokensErrors.vert.out │ │ ├── cppSimple.vert.out │ │ ├── dataOut.frag.out │ │ ├── dataOutIndirect.frag.out │ │ ├── dce.frag.out │ │ ├── decls.frag.out │ │ ├── deepRvalue.frag.out │ │ ├── depthOut.frag.out │ │ ├── discard-dce.frag.out │ │ ├── doWhileLoop.frag.out │ │ ├── earlyReturnDiscard.frag.out │ │ ├── empty.frag.out │ │ ├── enhanced.0.frag.out │ │ ├── enhanced.1.frag.out │ │ ├── enhanced.2.frag.out │ │ ├── enhanced.3.link.out │ │ ├── enhanced.4.link.out │ │ ├── enhanced.5.link.out │ │ ├── enhanced.6.link.out │ │ ├── enhanced.7.link.out │ │ ├── errors.frag.out │ │ ├── es-link1.frag.out │ │ ├── findFunction.frag.out │ │ ├── floatBitsToInt.vert.out │ │ ├── flowControl.frag.out │ │ ├── forLoop.frag.out │ │ ├── forwardRef.frag.out │ │ ├── functionCall.frag.out │ │ ├── functionSemantics.frag.out │ │ ├── gl_FragCoord.frag.out │ │ ├── glsl.-D-U.frag.out │ │ ├── glsl.140.layoutOffset.error.vert.out │ │ ├── glsl.430.layoutOffset.error.vert.out │ │ ├── glsl.450.subgroup.frag.out │ │ ├── glsl.450.subgroup.geom.out │ │ ├── glsl.450.subgroup.tesc.out │ │ ├── glsl.450.subgroup.tese.out │ │ ├── glsl.450.subgroup.vert.out │ │ ├── glsl.450.subgroupArithmetic.comp.out │ │ ├── glsl.450.subgroupBallot.comp.out │ │ ├── glsl.450.subgroupBallotNeg.comp.out │ │ ├── glsl.450.subgroupBasic.comp.out │ │ ├── glsl.450.subgroupClustered.comp.out │ │ ├── glsl.450.subgroupClusteredNeg.comp.out │ │ ├── glsl.450.subgroupPartitioned.comp.out │ │ ├── glsl.450.subgroupQuad.comp.out │ │ ├── glsl.450.subgroupShuffle.comp.out │ │ ├── glsl.450.subgroupShuffleRelative.comp.out │ │ ├── glsl.450.subgroupVote.comp.out │ │ ├── glsl.460.subgroup.mesh.out │ │ ├── glsl.460.subgroup.rahit.out │ │ ├── glsl.460.subgroup.rcall.out │ │ ├── glsl.460.subgroup.rchit.out │ │ ├── glsl.460.subgroup.rgen.out │ │ ├── glsl.460.subgroup.rint.out │ │ ├── glsl.460.subgroup.rmiss.out │ │ ├── glsl.460.subgroup.task.out │ │ ├── glsl.460.subgroupEXT.mesh.out │ │ ├── glsl.460.subgroupEXT.task.out │ │ ├── glsl.autosampledtextures.frag.out │ │ ├── glsl.entryPointRename.vert.bad.out │ │ ├── glsl.entryPointRename.vert.out │ │ ├── glsl.entryPointRename2.vert.out │ │ ├── glsl.es300.layoutOffset.error.vert.out │ │ ├── glsl.es320.subgroup.frag.out │ │ ├── glsl.es320.subgroup.geom.out │ │ ├── glsl.es320.subgroup.tesc.out │ │ ├── glsl.es320.subgroup.tese.out │ │ ├── glsl.es320.subgroup.vert.out │ │ ├── glsl.es320.subgroupArithmetic.comp.out │ │ ├── glsl.es320.subgroupBallot.comp.out │ │ ├── glsl.es320.subgroupBallotNeg.comp.out │ │ ├── glsl.es320.subgroupBasic.comp.out │ │ ├── glsl.es320.subgroupClustered.comp.out │ │ ├── glsl.es320.subgroupClusteredNeg.comp.out │ │ ├── glsl.es320.subgroupPartitioned.comp.out │ │ ├── glsl.es320.subgroupQuad.comp.out │ │ ├── glsl.es320.subgroupShuffle.comp.out │ │ ├── glsl.es320.subgroupShuffleRelative.comp.out │ │ ├── glsl.es320.subgroupVote.comp.out │ │ ├── glsl.versionOverride.comp.out │ │ ├── glsl.versionOverride.frag.out │ │ ├── glsl.versionOverride.geom.out │ │ ├── glsl.versionOverride.tesc.out │ │ ├── glsl.versionOverride.tese.out │ │ ├── glsl.versionOverride.vert.out │ │ ├── glspv.esversion.vert.out │ │ ├── glspv.frag.out │ │ ├── glspv.version.frag.out │ │ ├── glspv.version.vert.out │ │ ├── glspv.vert.out │ │ ├── hlsl.-D-U.frag.out │ │ ├── hlsl.PointSize.geom.out │ │ ├── hlsl.PointSize.vert.out │ │ ├── hlsl.aliasOpaque.frag.out │ │ ├── hlsl.amend.frag.out │ │ ├── hlsl.array.flatten.frag.out │ │ ├── hlsl.array.frag.out │ │ ├── hlsl.array.implicit-size.frag.out │ │ ├── hlsl.array.multidim.frag.out │ │ ├── hlsl.assoc.frag.out │ │ ├── hlsl.attribute.expression.comp.out │ │ ├── hlsl.attribute.frag.out │ │ ├── hlsl.attributeC11.frag.out │ │ ├── hlsl.attributeGlobalBuffer.frag.out │ │ ├── hlsl.automap.frag.out │ │ ├── hlsl.autosampledtextures.frag.out │ │ ├── hlsl.basic.comp.out │ │ ├── hlsl.basic.geom.out │ │ ├── hlsl.boolConv.vert.out │ │ ├── hlsl.buffer.frag.out │ │ ├── hlsl.calculatelod.dx10.frag.out │ │ ├── hlsl.calculatelodunclamped.dx10.frag.out │ │ ├── hlsl.cast.frag.out │ │ ├── hlsl.cbuffer-identifier.vert.out │ │ ├── hlsl.charLit.vert.out │ │ ├── hlsl.clip.frag.out │ │ ├── hlsl.clipdistance-1.frag.out │ │ ├── hlsl.clipdistance-1.geom.out │ │ ├── hlsl.clipdistance-1.vert.out │ │ ├── hlsl.clipdistance-2.frag.out │ │ ├── hlsl.clipdistance-2.geom.out │ │ ├── hlsl.clipdistance-2.vert.out │ │ ├── hlsl.clipdistance-3.frag.out │ │ ├── hlsl.clipdistance-3.geom.out │ │ ├── hlsl.clipdistance-3.vert.out │ │ ├── hlsl.clipdistance-4.frag.out │ │ ├── hlsl.clipdistance-4.geom.out │ │ ├── hlsl.clipdistance-4.vert.out │ │ ├── hlsl.clipdistance-5.frag.out │ │ ├── hlsl.clipdistance-5.vert.out │ │ ├── hlsl.clipdistance-6.frag.out │ │ ├── hlsl.clipdistance-6.vert.out │ │ ├── hlsl.clipdistance-7.frag.out │ │ ├── hlsl.clipdistance-7.vert.out │ │ ├── hlsl.clipdistance-8.frag.out │ │ ├── hlsl.clipdistance-8.vert.out │ │ ├── hlsl.clipdistance-9.frag.out │ │ ├── hlsl.clipdistance-9.vert.out │ │ ├── hlsl.color.hull.tesc.out │ │ ├── hlsl.comparison.vec.frag.out │ │ ├── hlsl.conditional.frag.out │ │ ├── hlsl.constantbuffer.frag.out │ │ ├── hlsl.constructArray.vert.out │ │ ├── hlsl.constructexpr.frag.out │ │ ├── hlsl.constructimat.frag.out │ │ ├── hlsl.coverage.frag.out │ │ ├── hlsl.dashI.vert.d.out │ │ ├── hlsl.dashI.vert.out │ │ ├── hlsl.deadFunctionMissingBody.vert.out │ │ ├── hlsl.depthGreater.frag.out │ │ ├── hlsl.depthLess.frag.out │ │ ├── hlsl.discard.frag.out │ │ ├── hlsl.doLoop.frag.out │ │ ├── hlsl.domain.1.tese.out │ │ ├── hlsl.domain.2.tese.out │ │ ├── hlsl.domain.3.tese.out │ │ ├── hlsl.earlydepthstencil.frag.out │ │ ├── hlsl.emptystruct.init.vert.out │ │ ├── hlsl.emptystructreturn.frag.out │ │ ├── hlsl.emptystructreturn.vert.out │ │ ├── hlsl.entry-in.frag.out │ │ ├── hlsl.entry-out.frag.out │ │ ├── hlsl.entry.rename.frag.out │ │ ├── hlsl.explicitDescriptorSet-2.frag.out │ │ ├── hlsl.explicitDescriptorSet.frag.out │ │ ├── hlsl.flatten.return.frag.out │ │ ├── hlsl.flattenOpaque.frag.out │ │ ├── hlsl.flattenOpaqueInit.vert.out │ │ ├── hlsl.flattenOpaqueInitMix.vert.out │ │ ├── hlsl.flattenSubset.frag.out │ │ ├── hlsl.flattenSubset2.frag.out │ │ ├── hlsl.float1.frag.out │ │ ├── hlsl.float4.frag.out │ │ ├── hlsl.forLoop.frag.out │ │ ├── hlsl.format.rwtexture.frag.out │ │ ├── hlsl.frag.out │ │ ├── hlsl.fraggeom.frag.out │ │ ├── hlsl.function.frag.out │ │ ├── hlsl.gather.array.dx10.frag.out │ │ ├── hlsl.gather.basic.dx10.frag.out │ │ ├── hlsl.gather.basic.dx10.vert.out │ │ ├── hlsl.gather.offset.dx10.frag.out │ │ ├── hlsl.gather.offsetarray.dx10.frag.out │ │ ├── hlsl.gatherRGBA.array.dx10.frag.out │ │ ├── hlsl.gatherRGBA.basic.dx10.frag.out │ │ ├── hlsl.gatherRGBA.offset.dx10.frag.out │ │ ├── hlsl.gatherRGBA.offsetarray.dx10.frag.out │ │ ├── hlsl.gathercmpRGBA.offset.dx10.frag.out │ │ ├── hlsl.getdimensions.dx10.frag.out │ │ ├── hlsl.getdimensions.dx10.vert.out │ │ ├── hlsl.getdimensions.rw.dx10.frag.out │ │ ├── hlsl.getsampleposition.dx10.frag.out │ │ ├── hlsl.global-const-init.frag.out │ │ ├── hlsl.groupid.comp.out │ │ ├── hlsl.gs-hs-mix.tesc.out │ │ ├── hlsl.hlslOffset.vert.out │ │ ├── hlsl.hull.1.tesc.out │ │ ├── hlsl.hull.2.tesc.out │ │ ├── hlsl.hull.3.tesc.out │ │ ├── hlsl.hull.4.tesc.out │ │ ├── hlsl.hull.5.tesc.out │ │ ├── hlsl.hull.6.tesc.out │ │ ├── hlsl.hull.ctrlpt-1.tesc.out │ │ ├── hlsl.hull.ctrlpt-2.tesc.out │ │ ├── hlsl.hull.void.tesc.out │ │ ├── hlsl.identifier.sample.frag.out │ │ ├── hlsl.if.frag.out │ │ ├── hlsl.imagefetch-subvec4.comp.out │ │ ├── hlsl.imageload-subvec4.comp.out │ │ ├── hlsl.implicitBool.frag.out │ │ ├── hlsl.include.vert.d.out │ │ ├── hlsl.include.vert.out │ │ ├── hlsl.includeNegative.vert.out │ │ ├── hlsl.inf.vert.out │ │ ├── hlsl.init.frag.out │ │ ├── hlsl.init2.frag.out │ │ ├── hlsl.inoutquals.frag.out │ │ ├── hlsl.inoutquals.negative.frag.out │ │ ├── hlsl.instance.geom.out │ │ ├── hlsl.int.dot.frag.out │ │ ├── hlsl.intrinsic.frexp.frag.out │ │ ├── hlsl.intrinsic.frexp.vert.out │ │ ├── hlsl.intrinsics.barriers.comp.out │ │ ├── hlsl.intrinsics.comp.out │ │ ├── hlsl.intrinsics.d3dcolortoubyte4.frag.out │ │ ├── hlsl.intrinsics.double.frag.out │ │ ├── hlsl.intrinsics.f1632.frag.out │ │ ├── hlsl.intrinsics.f3216.frag.out │ │ ├── hlsl.intrinsics.frag.out │ │ ├── hlsl.intrinsics.lit.frag.out │ │ ├── hlsl.intrinsics.negative.comp.out │ │ ├── hlsl.intrinsics.negative.frag.out │ │ ├── hlsl.intrinsics.negative.vert.out │ │ ├── hlsl.intrinsics.promote.down.frag.out │ │ ├── hlsl.intrinsics.promote.frag.out │ │ ├── hlsl.intrinsics.promote.outputs.frag.out │ │ ├── hlsl.intrinsics.vert.out │ │ ├── hlsl.isfinite.frag.out │ │ ├── hlsl.layout.frag.out │ │ ├── hlsl.layoutOverride.vert.out │ │ ├── hlsl.load.2dms.dx10.frag.out │ │ ├── hlsl.load.array.dx10.frag.out │ │ ├── hlsl.load.basic.dx10.frag.out │ │ ├── hlsl.load.basic.dx10.vert.out │ │ ├── hlsl.load.buffer.dx10.frag.out │ │ ├── hlsl.load.buffer.float.dx10.frag.out │ │ ├── hlsl.load.offset.dx10.frag.out │ │ ├── hlsl.load.offsetarray.dx10.frag.out │ │ ├── hlsl.load.rwbuffer.dx10.frag.out │ │ ├── hlsl.load.rwtexture.array.dx10.frag.out │ │ ├── hlsl.load.rwtexture.dx10.frag.out │ │ ├── hlsl.localStructuredBuffer.comp.out │ │ ├── hlsl.logical.binary.frag.out │ │ ├── hlsl.logical.binary.vec.frag.out │ │ ├── hlsl.logical.unary.frag.out │ │ ├── hlsl.logicalConvert.frag.out │ │ ├── hlsl.loopattr.frag.out │ │ ├── hlsl.matNx1.frag.out │ │ ├── hlsl.matType.bool.frag.out │ │ ├── hlsl.matType.frag.out │ │ ├── hlsl.matType.int.frag.out │ │ ├── hlsl.matpack-1.frag.out │ │ ├── hlsl.matpack-pragma-global.frag.out │ │ ├── hlsl.matpack-pragma.frag.out │ │ ├── hlsl.matrixSwizzle.vert.out │ │ ├── hlsl.matrixindex.frag.out │ │ ├── hlsl.max.frag.out │ │ ├── hlsl.memberFunCall.frag.out │ │ ├── hlsl.mintypes.frag.out │ │ ├── hlsl.mip.negative.frag.out │ │ ├── hlsl.mip.negative2.frag.out │ │ ├── hlsl.mip.operator.frag.out │ │ ├── hlsl.mul-truncate.frag.out │ │ ├── hlsl.multiDescriptorSet.frag.out │ │ ├── hlsl.multiEntry.vert.out │ │ ├── hlsl.multiReturn.frag.out │ │ ├── hlsl.namespace.frag.out │ │ ├── hlsl.nested-runtimeArray.frag.out │ │ ├── hlsl.noSemantic.functionality1.comp.out │ │ ├── hlsl.nonint-index.frag.out │ │ ├── hlsl.nonstaticMemberFunction.frag.out │ │ ├── hlsl.numericsuffixes.frag.out │ │ ├── hlsl.numthreads.comp.out │ │ ├── hlsl.opaque-type-bug.frag.out │ │ ├── hlsl.overload.frag.out │ │ ├── hlsl.params.default.frag.out │ │ ├── hlsl.params.default.negative.frag.out │ │ ├── hlsl.partialFlattenLocal.vert.out │ │ ├── hlsl.partialFlattenMixed.vert.out │ │ ├── hlsl.partialInit.frag.out │ │ ├── hlsl.pp.expand.frag.err │ │ ├── hlsl.pp.expand.frag.out │ │ ├── hlsl.pp.line.frag.out │ │ ├── hlsl.pp.line2.frag.out │ │ ├── hlsl.pp.line3.frag.out │ │ ├── hlsl.pp.line4.frag.out │ │ ├── hlsl.pp.vert.out │ │ ├── hlsl.precedence.frag.out │ │ ├── hlsl.precedence2.frag.out │ │ ├── hlsl.precise.frag.out │ │ ├── hlsl.preprocessor.frag.out │ │ ├── hlsl.printf.comp.out │ │ ├── hlsl.promote.atomic.frag.out │ │ ├── hlsl.promote.binary.frag.out │ │ ├── hlsl.promote.vec1.frag.out │ │ ├── hlsl.promotions.frag.out │ │ ├── hlsl.reflection.binding.frag.out │ │ ├── hlsl.reflection.binding.vert.out │ │ ├── hlsl.reflection.vert.out │ │ ├── hlsl.round.dx10.frag.out │ │ ├── hlsl.round.dx9.frag.out │ │ ├── hlsl.rw.atomics.frag.out │ │ ├── hlsl.rw.bracket.frag.out │ │ ├── hlsl.rw.register.frag.out │ │ ├── hlsl.rw.scalar.bracket.frag.out │ │ ├── hlsl.rw.swizzle.frag.out │ │ ├── hlsl.rw.vec2.bracket.frag.out │ │ ├── hlsl.sample.array.dx10.frag.out │ │ ├── hlsl.sample.basic.dx10.frag.out │ │ ├── hlsl.sample.dx9.frag.out │ │ ├── hlsl.sample.dx9.vert.out │ │ ├── hlsl.sample.offset.dx10.frag.out │ │ ├── hlsl.sample.offsetarray.dx10.frag.out │ │ ├── hlsl.sample.sub-vec4.dx10.frag.out │ │ ├── hlsl.samplebias.array.dx10.frag.out │ │ ├── hlsl.samplebias.basic.dx10.frag.out │ │ ├── hlsl.samplebias.offset.dx10.frag.out │ │ ├── hlsl.samplebias.offsetarray.dx10.frag.out │ │ ├── hlsl.samplecmp.array.dx10.frag.out │ │ ├── hlsl.samplecmp.basic.dx10.frag.out │ │ ├── hlsl.samplecmp.dualmode.frag.out │ │ ├── hlsl.samplecmp.negative.frag.out │ │ ├── hlsl.samplecmp.negative2.frag.out │ │ ├── hlsl.samplecmp.offset.dx10.frag.out │ │ ├── hlsl.samplecmp.offsetarray.dx10.frag.out │ │ ├── hlsl.samplecmplevelzero.array.dx10.frag.out │ │ ├── hlsl.samplecmplevelzero.basic.dx10.frag.out │ │ ├── hlsl.samplecmplevelzero.offset.dx10.frag.out │ │ ├── hlsl.samplecmplevelzero.offsetarray.dx10.frag.out │ │ ├── hlsl.samplegrad.array.dx10.frag.out │ │ ├── hlsl.samplegrad.basic.dx10.frag.out │ │ ├── hlsl.samplegrad.basic.dx10.vert.out │ │ ├── hlsl.samplegrad.offset.dx10.frag.out │ │ ├── hlsl.samplegrad.offsetarray.dx10.frag.out │ │ ├── hlsl.samplelevel.array.dx10.frag.out │ │ ├── hlsl.samplelevel.basic.dx10.frag.out │ │ ├── hlsl.samplelevel.basic.dx10.vert.out │ │ ├── hlsl.samplelevel.offset.dx10.frag.out │ │ ├── hlsl.samplelevel.offsetarray.dx10.frag.out │ │ ├── hlsl.scalar-length.frag.out │ │ ├── hlsl.scalar2matrix.frag.out │ │ ├── hlsl.scalarCast.vert.out │ │ ├── hlsl.scope.frag.out │ │ ├── hlsl.self_cast.frag.out │ │ ├── hlsl.semantic-1.vert.out │ │ ├── hlsl.semantic.geom.out │ │ ├── hlsl.semantic.vert.out │ │ ├── hlsl.semicolons.frag.out │ │ ├── hlsl.shapeConv.frag.out │ │ ├── hlsl.shapeConvRet.frag.out │ │ ├── hlsl.shift.per-set.frag.out │ │ ├── hlsl.sin.frag.out │ │ ├── hlsl.singleArgIntPromo.vert.out │ │ ├── hlsl.snorm.uav.comp.out │ │ ├── hlsl.specConstant.frag.out │ │ ├── hlsl.spv.1.6.discard.frag.out │ │ ├── hlsl.staticFuncInit.frag.out │ │ ├── hlsl.staticMemberFunction.frag.out │ │ ├── hlsl.store.rwbyteaddressbuffer.type.comp.out │ │ ├── hlsl.string.frag.out │ │ ├── hlsl.stringtoken.frag.out │ │ ├── hlsl.struct.frag.out │ │ ├── hlsl.struct.split-1.vert.out │ │ ├── hlsl.struct.split.array.geom.out │ │ ├── hlsl.struct.split.assign.frag.out │ │ ├── hlsl.struct.split.call.vert.out │ │ ├── hlsl.struct.split.nested.geom.out │ │ ├── hlsl.struct.split.trivial.geom.out │ │ ├── hlsl.struct.split.trivial.vert.out │ │ ├── hlsl.structIoFourWay.frag.out │ │ ├── hlsl.structStructName.frag.out │ │ ├── hlsl.structarray.flatten.frag.out │ │ ├── hlsl.structarray.flatten.geom.out │ │ ├── hlsl.structbuffer.append.fn.frag.out │ │ ├── hlsl.structbuffer.append.frag.out │ │ ├── hlsl.structbuffer.atomics.frag.out │ │ ├── hlsl.structbuffer.byte.frag.out │ │ ├── hlsl.structbuffer.coherent.frag.out │ │ ├── hlsl.structbuffer.floatidx.comp.out │ │ ├── hlsl.structbuffer.fn.frag.out │ │ ├── hlsl.structbuffer.fn2.comp.out │ │ ├── hlsl.structbuffer.frag.out │ │ ├── hlsl.structbuffer.incdec.frag.hlslfun1.out │ │ ├── hlsl.structbuffer.incdec.frag.out │ │ ├── hlsl.structbuffer.rw.frag.out │ │ ├── hlsl.structbuffer.rwbyte.frag.out │ │ ├── hlsl.structbuffer.rwbyte2.comp.out │ │ ├── hlsl.structin.vert.out │ │ ├── hlsl.subpass.frag.out │ │ ├── hlsl.switch.frag.out │ │ ├── hlsl.swizzle.frag.out │ │ ├── hlsl.synthesizeInput.frag.out │ │ ├── hlsl.target.frag.out │ │ ├── hlsl.targetStruct1.frag.out │ │ ├── hlsl.targetStruct2.frag.out │ │ ├── hlsl.templatetypes.frag.out │ │ ├── hlsl.texture.struct.frag.out │ │ ├── hlsl.texture.subvec4.frag.out │ │ ├── hlsl.texturebuffer.frag.out │ │ ├── hlsl.this.frag.out │ │ ├── hlsl.tristream-append.geom.out │ │ ├── hlsl.tx.bracket.frag.out │ │ ├── hlsl.tx.overload.frag.out │ │ ├── hlsl.type.half.frag.out │ │ ├── hlsl.type.identifier.frag.out │ │ ├── hlsl.type.type.conversion.all.frag.out │ │ ├── hlsl.type.type.conversion.valid.frag.out │ │ ├── hlsl.typeGraphCopy.vert.out │ │ ├── hlsl.typedef.frag.out │ │ ├── hlsl.void.frag.out │ │ ├── hlsl.w-recip.frag.out │ │ ├── hlsl.w-recip2.frag.out │ │ ├── hlsl.wavebroadcast.comp.out │ │ ├── hlsl.waveprefix.comp.out │ │ ├── hlsl.wavequad.comp.out │ │ ├── hlsl.wavequery.comp.out │ │ ├── hlsl.wavequery.frag.out │ │ ├── hlsl.wavereduction.comp.out │ │ ├── hlsl.wavevote.comp.out │ │ ├── hlsl.whileLoop.frag.out │ │ ├── hlsl.y-negate-1.vert.out │ │ ├── hlsl.y-negate-2.vert.out │ │ ├── hlsl.y-negate-3.vert.out │ │ ├── implicitArraySize.vert.out │ │ ├── implicitArraySize1.geom.out │ │ ├── implicitArraySizeBuiltin.vert.out │ │ ├── implicitInnerAtomicUint.frag.out │ │ ├── include.vert.out │ │ ├── invalidSwizzle.vert.out │ │ ├── iomap.blockOutVariableIn.2.vert.out │ │ ├── iomap.blockOutVariableIn.vert.out │ │ ├── iomap.crossStage.2.vert.out │ │ ├── iomap.crossStage.vert.out │ │ ├── iomap.crossStage.vk.vert.out │ │ ├── iomap.variableOutBlockIn.2.vert.out │ │ ├── iomap.variableOutBlockIn.vert.out │ │ ├── length.frag.out │ │ ├── lineContinuation.vert.out │ │ ├── lineContinuation100.vert.out │ │ ├── link.multiAnonBlocksInvalid.0.0.vert.out │ │ ├── link.multiAnonBlocksValid.0.0.vert.out │ │ ├── link.multiBlocksInvalid.0.0.vert.out │ │ ├── link.multiBlocksValid.1.0.vert.out │ │ ├── link.redeclareBuiltin.vert.out │ │ ├── link.tesselation.tese.out │ │ ├── link.tesselation.vert.out │ │ ├── link.vk.differentPC.0.0.frag.out │ │ ├── link.vk.differentPC.1.0.frag.out │ │ ├── link.vk.inconsistentGLPerVertex.0.vert.out │ │ ├── link.vk.matchingPC.0.0.frag.out │ │ ├── link.vk.multiBlocksValid.0.0.vert.out │ │ ├── link.vk.multiBlocksValid.1.0.geom.out │ │ ├── link.vk.pcNamingInvalid.0.0.vert.out │ │ ├── link.vk.pcNamingValid.0.0.vert.out │ │ ├── link1.frag.out │ │ ├── link1.vk.frag.out │ │ ├── localAggregates.frag.out │ │ ├── loops.frag.out │ │ ├── loopsArtificial.frag.out │ │ ├── mains1.frag.out │ │ ├── matrix.frag.out │ │ ├── matrix2.frag.out │ │ ├── matrixError.vert.out │ │ ├── maxClipDistances.vert.out │ │ ├── max_vertices_0.geom.out │ │ ├── missingBodies.vert.out │ │ ├── mixedArrayDecls.frag.out │ │ ├── negativeArraySize.comp.out │ │ ├── negativeWorkGroupSize.comp.out │ │ ├── newTexture.frag.out │ │ ├── noMain.vert.out │ │ ├── noMatchingFunction.frag.out │ │ ├── nonSquare.vert.out │ │ ├── nonVulkan.frag.out │ │ ├── nonuniform.frag.out │ │ ├── nosuffix.out │ │ ├── numeral.frag.out │ │ ├── nvShaderNoperspectiveInterpolation.frag.out │ │ ├── overlongLiteral.frag.out │ │ ├── pointCoord.frag.out │ │ ├── precise.tesc.out │ │ ├── precise_struct_block.vert.out │ │ ├── precision.frag.out │ │ ├── precision.vert.out │ │ ├── prepost.frag.out │ │ ├── preprocessor.bad_arg.vert.err │ │ ├── preprocessor.bad_arg.vert.out │ │ ├── preprocessor.cpp_style___FILE__.vert.err │ │ ├── preprocessor.cpp_style___FILE__.vert.out │ │ ├── preprocessor.cpp_style_line_directive.vert.err │ │ ├── preprocessor.cpp_style_line_directive.vert.out │ │ ├── preprocessor.defined.vert.err │ │ ├── preprocessor.defined.vert.out │ │ ├── preprocessor.edge_cases.vert.err │ │ ├── preprocessor.edge_cases.vert.out │ │ ├── preprocessor.eof_missing.vert.err │ │ ├── preprocessor.eof_missing.vert.out │ │ ├── preprocessor.errors.vert.err │ │ ├── preprocessor.errors.vert.out │ │ ├── preprocessor.extensions.vert.err │ │ ├── preprocessor.extensions.vert.out │ │ ├── preprocessor.function_macro.vert.err │ │ ├── preprocessor.function_macro.vert.out │ │ ├── preprocessor.include.disabled.vert.err │ │ ├── preprocessor.include.disabled.vert.out │ │ ├── preprocessor.include.enabled.vert.err │ │ ├── preprocessor.include.enabled.vert.out │ │ ├── preprocessor.line.frag.err │ │ ├── preprocessor.line.frag.out │ │ ├── preprocessor.line.vert.err │ │ ├── preprocessor.line.vert.out │ │ ├── preprocessor.many.endif.vert.err │ │ ├── preprocessor.many.endif.vert.out │ │ ├── preprocessor.pragma.vert.err │ │ ├── preprocessor.pragma.vert.out │ │ ├── preprocessor.simple.vert.err │ │ ├── preprocessor.simple.vert.out │ │ ├── preprocessor.success_if_parse_would_fail.vert.err │ │ ├── preprocessor.success_if_parse_would_fail.vert.out │ │ ├── rayQuery-OpConvertUToAccelerationStructureKHR.comp.out │ │ ├── rayQuery-allOps.Error.rgen.out │ │ ├── rayQuery-allOps.comp.out │ │ ├── rayQuery-allOps.frag.out │ │ ├── rayQuery-allOps.rgen.out │ │ ├── rayQuery-committed.Error.rgen.out │ │ ├── rayQuery-global.rgen.out │ │ ├── rayQuery-initialization.Error.comp.out │ │ ├── rayQuery-initialize.rgen.out │ │ ├── rayQuery-no-cse.rgen.out │ │ ├── rayQuery-types.comp.out │ │ ├── rayQuery.rgen.out │ │ ├── recurse1.vert.out │ │ ├── reflection.frag.out │ │ ├── reflection.linked.options.out │ │ ├── reflection.linked.out │ │ ├── reflection.options.frag.out │ │ ├── reflection.options.geom.out │ │ ├── reflection.options.vert.out │ │ ├── reflection.vert.out │ │ ├── remap.basic.dcefunc.frag.out │ │ ├── remap.basic.dcevartype.frag.out │ │ ├── remap.basic.everything.frag.out │ │ ├── remap.basic.none.frag.out │ │ ├── remap.basic.strip.frag.out │ │ ├── remap.hlsl.sample.basic.everything.frag.out │ │ ├── remap.hlsl.sample.basic.none.frag.out │ │ ├── remap.hlsl.sample.basic.strip.frag.out │ │ ├── remap.hlsl.templatetypes.everything.frag.out │ │ ├── remap.hlsl.templatetypes.none.frag.out │ │ ├── remap.if.everything.frag.out │ │ ├── remap.if.none.frag.out │ │ ├── remap.invalid-spirv-1.out │ │ ├── remap.invalid-spirv-2.out │ │ ├── remap.literal64.everything.spv.out │ │ ├── remap.literal64.none.spv.out │ │ ├── remap.similar_1a.everything.frag.out │ │ ├── remap.similar_1a.none.frag.out │ │ ├── remap.similar_1b.everything.frag.out │ │ ├── remap.similar_1b.none.frag.out │ │ ├── remap.specconst.comp.out │ │ ├── remap.switch.everything.frag.out │ │ ├── remap.switch.none.frag.out │ │ ├── remap.uniformarray.everything.frag.out │ │ ├── remap.uniformarray.none.frag.out │ │ ├── runtimeArray.vert.out │ │ ├── sample.frag.out │ │ ├── sample.vert.out │ │ ├── samplerlessTextureFunctions.frag.out │ │ ├── simpleFunctionCall.frag.out │ │ ├── size │ │ ├── specExamples.frag.out │ │ ├── specExamples.vert.out │ │ ├── specExamplesConf.vert.out │ │ ├── spv.1.3.8bitstorage-ssbo.vert.out │ │ ├── spv.1.3.8bitstorage-ubo.vert.out │ │ ├── spv.1.3.coopmat.comp.out │ │ ├── spv.1.4.LoopControl.frag.out │ │ ├── spv.1.4.NonWritable.frag.out │ │ ├── spv.1.4.OpCopyLogical.comp.out │ │ ├── spv.1.4.OpCopyLogical.funcall.frag.out │ │ ├── spv.1.4.OpCopyLogicalBool.comp.out │ │ ├── spv.1.4.OpEntryPoint.frag.out │ │ ├── spv.1.4.OpEntryPoint.opaqueParams.vert.out │ │ ├── spv.1.4.OpSelect.frag.out │ │ ├── spv.1.4.constructComposite.comp.out │ │ ├── spv.1.4.funcall.array.frag.out │ │ ├── spv.1.4.image.frag.out │ │ ├── spv.1.4.load.bool.array.interface.block.frag.out │ │ ├── spv.1.4.sparseTexture.frag.out │ │ ├── spv.1.4.texture.frag.out │ │ ├── spv.1.6.conditionalDiscard.frag.out │ │ ├── spv.1.6.helperInvocation.frag.out │ │ ├── spv.1.6.helperInvocation.memmodel.frag.out │ │ ├── spv.1.6.samplerBuffer.frag.out │ │ ├── spv.1.6.separate.frag.out │ │ ├── spv.1.6.specConstant.comp.out │ │ ├── spv.100ops.frag.out │ │ ├── spv.130.frag.out │ │ ├── spv.140.frag.out │ │ ├── spv.150.geom.out │ │ ├── spv.150.vert.out │ │ ├── spv.16bitstorage-int.frag.out │ │ ├── spv.16bitstorage-uint.frag.out │ │ ├── spv.16bitstorage.frag.out │ │ ├── spv.16bitstorage_Error-int.frag.out │ │ ├── spv.16bitstorage_Error-uint.frag.out │ │ ├── spv.16bitstorage_Error.frag.out │ │ ├── spv.16bitxfb.vert.out │ │ ├── spv.300BuiltIns.vert.out │ │ ├── spv.300layout.frag.out │ │ ├── spv.300layout.vert.out │ │ ├── spv.300layoutp.vert.out │ │ ├── spv.310.bitcast.frag.out │ │ ├── spv.310.comp.out │ │ ├── spv.320.meshShaderUserDefined.mesh.out │ │ ├── spv.330.geom.out │ │ ├── spv.400.frag.nanclamp.out │ │ ├── spv.400.frag.out │ │ ├── spv.400.tesc.out │ │ ├── spv.400.tese.out │ │ ├── spv.420.geom.out │ │ ├── spv.430.frag.out │ │ ├── spv.430.vert.out │ │ ├── spv.450.geom.out │ │ ├── spv.450.noRedecl.tesc.out │ │ ├── spv.450.tesc.out │ │ ├── spv.460.comp.out │ │ ├── spv.460.frag.out │ │ ├── spv.460.subgroupEXT.mesh.out │ │ ├── spv.460.subgroupEXT.task.out │ │ ├── spv.460.vert.out │ │ ├── spv.8bit-16bit-construction.frag.out │ │ ├── spv.8bitstorage-int.frag.out │ │ ├── spv.8bitstorage-ssbo.vert.out │ │ ├── spv.8bitstorage-ubo.vert.out │ │ ├── spv.8bitstorage-uint.frag.out │ │ ├── spv.8bitstorage_Error-int.frag.out │ │ ├── spv.8bitstorage_Error-uint.frag.out │ │ ├── spv.ARMCoreBuiltIns.frag.out │ │ ├── spv.ARMCoreBuiltIns.vert.out │ │ ├── spv.AnyHitShader.rahit.out │ │ ├── spv.AnyHitShaderMotion.rahit.out │ │ ├── spv.AnyHitShader_Errors.rahit.out │ │ ├── spv.AofA.frag.out │ │ ├── spv.ClosestHitShader.rchit.out │ │ ├── spv.ClosestHitShaderMotion.rchit.out │ │ ├── spv.ClosestHitShader_Errors.rchit.out │ │ ├── spv.GeometryShaderPassthrough.geom.out │ │ ├── spv.IntersectShader.rint.out │ │ ├── spv.IntersectShaderMotion.rint.out │ │ ├── spv.IntersectShader_Errors.rint.out │ │ ├── spv.MissShader.rmiss.out │ │ ├── spv.MissShaderMotion.rmiss.out │ │ ├── spv.MissShader_Errors.rmiss.out │ │ ├── spv.OVR_multiview.vert.out │ │ ├── spv.Operations.frag.out │ │ ├── spv.RayCallable.rcall.out │ │ ├── spv.RayCallable_Errors.rcall.out │ │ ├── spv.RayConstants.rgen.out │ │ ├── spv.RayGenShader.rgen.out │ │ ├── spv.RayGenShader11.rgen.out │ │ ├── spv.RayGenShaderArray.rgen.out │ │ ├── spv.RayGenShaderMotion.rgen.out │ │ ├── spv.RayGenShader_Errors.rgen.out │ │ ├── spv.WorkgroupMemoryExplicitLayout.16BitAccess.comp.out │ │ ├── spv.WorkgroupMemoryExplicitLayout.8BitAccess.comp.out │ │ ├── spv.WorkgroupMemoryExplicitLayout.MixBlockNonBlock_Errors.comp.out │ │ ├── spv.WorkgroupMemoryExplicitLayout.MultiBlock.comp.out │ │ ├── spv.WorkgroupMemoryExplicitLayout.NonBlock.comp.out │ │ ├── spv.WorkgroupMemoryExplicitLayout.SingleBlock.comp.out │ │ ├── spv.WorkgroupMemoryExplicitLayout.scalar.comp.out │ │ ├── spv.WorkgroupMemoryExplicitLayout.std140.comp.out │ │ ├── spv.WorkgroupMemoryExplicitLayout.std430.comp.out │ │ ├── spv.accessChain.frag.out │ │ ├── spv.aggOps.frag.out │ │ ├── spv.always-discard.frag.out │ │ ├── spv.always-discard2.frag.out │ │ ├── spv.arbPostDepthCoverage.frag.out │ │ ├── spv.arbPostDepthCoverage_Error.frag.out │ │ ├── spv.atomiAddEXT.error.mesh.out │ │ ├── spv.atomiAddEXT.task.out │ │ ├── spv.atomic.comp.out │ │ ├── spv.atomicAdd.bufferReference.comp.out │ │ ├── spv.atomicCounter.comp.out │ │ ├── spv.atomicFloat.comp.out │ │ ├── spv.atomicFloat_Error.comp.out │ │ ├── spv.atomicInt64.comp.out │ │ ├── spv.atomicStoreInt64.comp.out │ │ ├── spv.barrier.vert.out │ │ ├── spv.bitCast.frag.out │ │ ├── spv.bool.vert.out │ │ ├── spv.boolInBlock.frag.out │ │ ├── spv.branch-return.vert.out │ │ ├── spv.buffer.autoassign.frag.out │ │ ├── spv.bufferhandle1.frag.out │ │ ├── spv.bufferhandle10.frag.out │ │ ├── spv.bufferhandle11.frag.out │ │ ├── spv.bufferhandle12.frag.out │ │ ├── spv.bufferhandle13.frag.out │ │ ├── spv.bufferhandle14.frag.out │ │ ├── spv.bufferhandle15.frag.out │ │ ├── spv.bufferhandle16.frag.out │ │ ├── spv.bufferhandle17_Errors.frag.out │ │ ├── spv.bufferhandle18.frag.out │ │ ├── spv.bufferhandle19_Errors.frag.out │ │ ├── spv.bufferhandle2.frag.out │ │ ├── spv.bufferhandle3.frag.out │ │ ├── spv.bufferhandle4.frag.out │ │ ├── spv.bufferhandle5.frag.out │ │ ├── spv.bufferhandle6.frag.out │ │ ├── spv.bufferhandle7.frag.out │ │ ├── spv.bufferhandle8.frag.out │ │ ├── spv.bufferhandle9.frag.out │ │ ├── spv.bufferhandleUvec2.frag.out │ │ ├── spv.bufferhandle_Error.frag.out │ │ ├── spv.builtInXFB.vert.out │ │ ├── spv.builtin.PrimitiveShadingRateEXT.vert.out │ │ ├── spv.builtin.ShadingRateEXT.frag.out │ │ ├── spv.computeShaderDerivatives.comp.out │ │ ├── spv.computeShaderDerivatives2.comp.out │ │ ├── spv.conditionalDemote.frag.out │ │ ├── spv.conditionalDiscard.frag.out │ │ ├── spv.constConstruct.vert.out │ │ ├── spv.constStruct.vert.out │ │ ├── spv.constructComposite.comp.out │ │ ├── spv.controlFlowAttributes.frag.out │ │ ├── spv.conversion.frag.out │ │ ├── spv.coopmat.comp.out │ │ ├── spv.coopmat_Error.comp.out │ │ ├── spv.dataOut.frag.out │ │ ├── spv.dataOutIndirect.frag.out │ │ ├── spv.dataOutIndirect.vert.out │ │ ├── spv.dead-after-continue.vert.out │ │ ├── spv.dead-after-discard.frag.out │ │ ├── spv.dead-after-loop-break.vert.out │ │ ├── spv.dead-after-return.vert.out │ │ ├── spv.dead-after-switch-break.vert.out │ │ ├── spv.dead-complex-continue-after-return.vert.out │ │ ├── spv.dead-complex-merge-after-return.vert.out │ │ ├── spv.debugInfo.1.1.frag.out │ │ ├── spv.debugInfo.frag.out │ │ ├── spv.debugPrintf.frag.out │ │ ├── spv.debugPrintf_Error.frag.out │ │ ├── spv.debuginfo.const_params.glsl.comp.out │ │ ├── spv.debuginfo.glsl.comp.out │ │ ├── spv.debuginfo.glsl.frag.out │ │ ├── spv.debuginfo.glsl.geom.out │ │ ├── spv.debuginfo.glsl.tesc.out │ │ ├── spv.debuginfo.glsl.tese.out │ │ ├── spv.debuginfo.glsl.vert.out │ │ ├── spv.debuginfo.hlsl.comp.out │ │ ├── spv.debuginfo.hlsl.frag.out │ │ ├── spv.debuginfo.hlsl.geom.out │ │ ├── spv.debuginfo.hlsl.tesc.out │ │ ├── spv.debuginfo.hlsl.tese.out │ │ ├── spv.debuginfo.hlsl.vert.out │ │ ├── spv.deepRvalue.frag.out │ │ ├── spv.demoteDisabled.frag.out │ │ ├── spv.depthOut.frag.out │ │ ├── spv.depthUnchanged.frag.out │ │ ├── spv.deviceGroup.frag.out │ │ ├── spv.discard-dce.frag.out │ │ ├── spv.do-simple.vert.out │ │ ├── spv.do-while-continue-break.vert.out │ │ ├── spv.doWhileLoop.frag.out │ │ ├── spv.double.comp.out │ │ ├── spv.drawParams.vert.out │ │ ├── spv.earlyAndlateFragmentTests.frag.out │ │ ├── spv.earlyReturnDiscard.frag.out │ │ ├── spv.explicittypes.frag.out │ │ ├── spv.ext.AccelDecl.frag.out │ │ ├── spv.ext.AnyHitShader.rahit.out │ │ ├── spv.ext.AnyHitShader_Errors.rahit.out │ │ ├── spv.ext.ClosestHitShader.rchit.out │ │ ├── spv.ext.ClosestHitShader_Errors.rchit.out │ │ ├── spv.ext.ClosestHitShader_Subgroup.rchit.out │ │ ├── spv.ext.IntersectShader.rint.out │ │ ├── spv.ext.IntersectShader_Errors.rint.out │ │ ├── spv.ext.MissShader.rmiss.out │ │ ├── spv.ext.MissShader_Errors.rmiss.out │ │ ├── spv.ext.RayCallable.rcall.out │ │ ├── spv.ext.RayCallable_Errors.rcall.out │ │ ├── spv.ext.RayConstants.rgen.out │ │ ├── spv.ext.RayGenSBTlayout.rgen.out │ │ ├── spv.ext.RayGenSBTlayout140.rgen.out │ │ ├── spv.ext.RayGenSBTlayout430.rgen.out │ │ ├── spv.ext.RayGenSBTlayoutscalar.rgen.out │ │ ├── spv.ext.RayGenShader.rgen.out │ │ ├── spv.ext.RayGenShader11.rgen.out │ │ ├── spv.ext.RayGenShaderArray.rgen.out │ │ ├── spv.ext.RayGenShader_Errors.rgen.out │ │ ├── spv.ext.RayPrimCull_Errors.rgen.out │ │ ├── spv.ext.RayQueryDecl.frag.out │ │ ├── spv.ext.World3x4.rahit.out │ │ ├── spv.ext.meshShaderBuiltins.mesh.out │ │ ├── spv.ext.meshShaderRedeclBuiltins.mesh.out │ │ ├── spv.ext.meshShaderTaskMem.mesh.out │ │ ├── spv.ext.meshShaderUserDefined.mesh.out │ │ ├── spv.ext.meshTaskShader.task.out │ │ ├── spv.extPostDepthCoverage.frag.out │ │ ├── spv.extPostDepthCoverage_Error.frag.out │ │ ├── spv.float16.frag.out │ │ ├── spv.float16Fetch.frag.out │ │ ├── spv.float16NoRelaxed.vert.out │ │ ├── spv.float16convertonlyarith.comp.out │ │ ├── spv.float16convertonlystorage.comp.out │ │ ├── spv.float32.frag.out │ │ ├── spv.float64.frag.out │ │ ├── spv.flowControl.frag.out │ │ ├── spv.for-complex-condition.vert.out │ │ ├── spv.for-continue-break.vert.out │ │ ├── spv.for-nobody.vert.out │ │ ├── spv.for-notest.vert.out │ │ ├── spv.for-simple.vert.out │ │ ├── spv.forLoop.frag.out │ │ ├── spv.forwardFun.frag.out │ │ ├── spv.fragmentDensity-es.frag.out │ │ ├── spv.fragmentDensity-neg.frag.out │ │ ├── spv.fragmentDensity.frag.out │ │ ├── spv.fragmentDensity.vert.out │ │ ├── spv.fragmentShaderBarycentric.frag.out │ │ ├── spv.fragmentShaderBarycentric2.frag.out │ │ ├── spv.fragmentShaderBarycentric3.frag.out │ │ ├── spv.fragmentShaderBarycentric4.frag.out │ │ ├── spv.fsi.frag.out │ │ ├── spv.fsi_Error.frag.out │ │ ├── spv.fullyCovered.frag.out │ │ ├── spv.funcall.array.frag.out │ │ ├── spv.functionCall.frag.out │ │ ├── spv.functionNestedOpaque.vert.out │ │ ├── spv.functionParameterTypes.frag.out │ │ ├── spv.functionSemantics.frag.out │ │ ├── spv.glFragColor.frag.out │ │ ├── spv.glsl.register.autoassign.frag.out │ │ ├── spv.glsl.register.noautoassign.frag.out │ │ ├── spv.hlslDebugInfo.frag.out │ │ ├── spv.hlslOffsets.vert.out │ │ ├── spv.image.frag.out │ │ ├── spv.image.load-formatted.frag.out │ │ ├── spv.imageAtomic64.comp.out │ │ ├── spv.imageAtomic64.frag.out │ │ ├── spv.imageLoadStoreLod.frag.out │ │ ├── spv.int16.amd.frag.out │ │ ├── spv.int16.frag.out │ │ ├── spv.int32.frag.out │ │ ├── spv.int64.frag.out │ │ ├── spv.int8.frag.out │ │ ├── spv.intOps.vert.out │ │ ├── spv.intcoopmat.comp.out │ │ ├── spv.interpOps.frag.out │ │ ├── spv.intrinsicsSpirvByReference.vert.out │ │ ├── spv.intrinsicsSpirvDecorate.frag.out │ │ ├── spv.intrinsicsSpirvExecutionMode.frag.out │ │ ├── spv.intrinsicsSpirvInstruction.vert.out │ │ ├── spv.intrinsicsSpirvLiteral.vert.out │ │ ├── spv.intrinsicsSpirvStorageClass.rchit.out │ │ ├── spv.intrinsicsSpirvType.rgen.out │ │ ├── spv.intrinsicsSpirvTypeLocalVar.vert.out │ │ ├── spv.invariantAll.vert.out │ │ ├── spv.layer.tese.out │ │ ├── spv.layoutNested.vert.out │ │ ├── spv.length.frag.out │ │ ├── spv.load.bool.array.interface.block.frag.out │ │ ├── spv.localAggregates.frag.out │ │ ├── spv.loops.frag.out │ │ ├── spv.loopsArtificial.frag.out │ │ ├── spv.looseUniformNoLoc.vert.out │ │ ├── spv.matFun.vert.out │ │ ├── spv.matrix.frag.out │ │ ├── spv.matrix2.frag.out │ │ ├── spv.memoryQualifier.frag.out │ │ ├── spv.memoryScopeSemantics.comp.out │ │ ├── spv.memoryScopeSemantics_Error.comp.out │ │ ├── spv.merge-unreachable.frag.out │ │ ├── spv.meshShaderBuiltins.mesh.out │ │ ├── spv.meshShaderPerViewBuiltins.mesh.out │ │ ├── spv.meshShaderPerViewUserDefined.mesh.out │ │ ├── spv.meshShaderPerView_Errors.mesh.out │ │ ├── spv.meshShaderRedeclBuiltins.mesh.out │ │ ├── spv.meshShaderRedeclPerViewBuiltins.mesh.out │ │ ├── spv.meshShaderSharedMem.mesh.out │ │ ├── spv.meshShaderTaskMem.mesh.out │ │ ├── spv.meshShaderUserDefined.mesh.out │ │ ├── spv.meshTaskShader.task.out │ │ ├── spv.multiStruct.comp.out │ │ ├── spv.multiStructFuncall.frag.out │ │ ├── spv.multiView.frag.out │ │ ├── spv.multiviewPerViewAttributes.tesc.out │ │ ├── spv.multiviewPerViewAttributes.vert.out │ │ ├── spv.newTexture.frag.out │ │ ├── spv.noBuiltInLoc.vert.out │ │ ├── spv.noDeadDecorations.vert.out │ │ ├── spv.noLocation.vert.out │ │ ├── spv.noWorkgroup.comp.out │ │ ├── spv.nonSquare.vert.out │ │ ├── spv.nonuniform.frag.out │ │ ├── spv.nonuniform2.frag.out │ │ ├── spv.nonuniform3.frag.out │ │ ├── spv.nonuniform4.frag.out │ │ ├── spv.nonuniform5.frag.out │ │ ├── spv.nullInit.comp.out │ │ ├── spv.nv.hitobject-allops.rchit.out │ │ ├── spv.nv.hitobject-allops.rgen.out │ │ ├── spv.nv.hitobject-allops.rmiss.out │ │ ├── spv.offsets.frag.out │ │ ├── spv.paramMemory.420.frag.out │ │ ├── spv.paramMemory.frag.out │ │ ├── spv.perprimitiveNV.frag.out │ │ ├── spv.pp.line.frag.out │ │ ├── spv.precise.tesc.out │ │ ├── spv.precise.tese.out │ │ ├── spv.precision.frag.out │ │ ├── spv.precisionArgs.frag.out │ │ ├── spv.precisionNonESSamp.frag.out │ │ ├── spv.precisionTexture.frag.out │ │ ├── spv.prepost.frag.out │ │ ├── spv.privateVariableTypes.frag.out │ │ ├── spv.pushConstant.vert.out │ │ ├── spv.pushConstantAnon.vert.out │ │ ├── spv.qualifiers.vert.out │ │ ├── spv.queryL.frag.out │ │ ├── spv.queueFamilyScope.comp.out │ │ ├── spv.rankShift.comp.out │ │ ├── spv.register.autoassign-2.frag.out │ │ ├── spv.register.autoassign.frag.out │ │ ├── spv.register.autoassign.rangetest.frag.out │ │ ├── spv.register.noautoassign.frag.out │ │ ├── spv.register.subpass.frag.out │ │ ├── spv.rw.autoassign.frag.out │ │ ├── spv.sample.frag.out │ │ ├── spv.sampleId.frag.out │ │ ├── spv.sampleMaskOverrideCoverage.frag.out │ │ ├── spv.samplePosition.frag.out │ │ ├── spv.samplerlessTextureFunctions.frag.out │ │ ├── spv.scalarlayout.frag.out │ │ ├── spv.scalarlayoutfloat16.frag.out │ │ ├── spv.separate.frag.out │ │ ├── spv.set.vert.out │ │ ├── spv.shaderBallot.comp.out │ │ ├── spv.shaderBallotAMD.comp.out │ │ ├── spv.shaderDrawParams.vert.out │ │ ├── spv.shaderFragMaskAMD.frag.out │ │ ├── spv.shaderGroupVote.comp.out │ │ ├── spv.shaderImageFootprint.frag.out │ │ ├── spv.shaderStencilExport.frag.out │ │ ├── spv.shadingRate.frag.out │ │ ├── spv.shiftOps.frag.out │ │ ├── spv.shortCircuit.frag.out │ │ ├── spv.simpleFunctionCall.frag.out │ │ ├── spv.simpleMat.vert.out │ │ ├── spv.smBuiltins.frag.out │ │ ├── spv.smBuiltins.vert.out │ │ ├── spv.sparseTexture.frag.out │ │ ├── spv.sparseTextureClamp.frag.out │ │ ├── spv.specConst.vert.out │ │ ├── spv.specConstArrayCheck.vert.out │ │ ├── spv.specConstant.comp.out │ │ ├── spv.specConstant.float16.comp.out │ │ ├── spv.specConstant.int16.comp.out │ │ ├── spv.specConstant.int8.comp.out │ │ ├── spv.specConstant.vert.out │ │ ├── spv.specConstantComposite.vert.out │ │ ├── spv.specConstantOperations.vert.out │ │ ├── spv.specTexture.frag.out │ │ ├── spv.ssbo.autoassign.frag.out │ │ ├── spv.ssboAlias.frag.out │ │ ├── spv.stereoViewRendering.tesc.out │ │ ├── spv.stereoViewRendering.vert.out │ │ ├── spv.storageBuffer.vert.out │ │ ├── spv.structAssignment.frag.out │ │ ├── spv.structDeref.frag.out │ │ ├── spv.structure.frag.out │ │ ├── spv.subgroup.frag.out │ │ ├── spv.subgroup.geom.out │ │ ├── spv.subgroup.tesc.out │ │ ├── spv.subgroup.tese.out │ │ ├── spv.subgroup.vert.out │ │ ├── spv.subgroupArithmetic.comp.out │ │ ├── spv.subgroupBallot.comp.out │ │ ├── spv.subgroupBallotNeg.comp.out │ │ ├── spv.subgroupBasic.comp.out │ │ ├── spv.subgroupClustered.comp.out │ │ ├── spv.subgroupClusteredNeg.comp.out │ │ ├── spv.subgroupExtendedTypesArithmetic.comp.out │ │ ├── spv.subgroupExtendedTypesArithmeticNeg.comp.out │ │ ├── spv.subgroupExtendedTypesBallot.comp.out │ │ ├── spv.subgroupExtendedTypesBallotNeg.comp.out │ │ ├── spv.subgroupExtendedTypesBasic.comp.out │ │ ├── spv.subgroupExtendedTypesClustered.comp.out │ │ ├── spv.subgroupExtendedTypesClusteredNeg.comp.out │ │ ├── spv.subgroupExtendedTypesPartitioned.comp.out │ │ ├── spv.subgroupExtendedTypesPartitionedNeg.comp.out │ │ ├── spv.subgroupExtendedTypesQuad.comp.out │ │ ├── spv.subgroupExtendedTypesQuadNeg.comp.out │ │ ├── spv.subgroupExtendedTypesShuffle.comp.out │ │ ├── spv.subgroupExtendedTypesShuffleNeg.comp.out │ │ ├── spv.subgroupExtendedTypesShuffleRelative.comp.out │ │ ├── spv.subgroupExtendedTypesShuffleRelativeNeg.comp.out │ │ ├── spv.subgroupExtendedTypesVote.comp.out │ │ ├── spv.subgroupExtendedTypesVoteNeg.comp.out │ │ ├── spv.subgroupPartitioned.comp.out │ │ ├── spv.subgroupQuad.comp.out │ │ ├── spv.subgroupShuffle.comp.out │ │ ├── spv.subgroupShuffleRelative.comp.out │ │ ├── spv.subgroupSizeARB.frag.out │ │ ├── spv.subgroupUniformControlFlow.vert.out │ │ ├── spv.subgroupVote.comp.out │ │ ├── spv.subpass.frag.out │ │ ├── spv.switch.frag.out │ │ ├── spv.swizzle.frag.out │ │ ├── spv.swizzleInversion.frag.out │ │ ├── spv.terminate.frag.out │ │ ├── spv.test.frag.out │ │ ├── spv.test.vert.out │ │ ├── spv.texture.frag.out │ │ ├── spv.texture.sampler.transform.frag.out │ │ ├── spv.texture.vert.out │ │ ├── spv.textureBuffer.vert.out │ │ ├── spv.textureError.frag.out │ │ ├── spv.textureGatherBiasLod.frag.out │ │ ├── spv.types.frag.out │ │ ├── spv.uint.frag.out │ │ ├── spv.uniformArray.frag.out │ │ ├── spv.uniformInitializer.frag.out │ │ ├── spv.uniformInitializerSpecConstant.frag.out │ │ ├── spv.uniformInitializerStruct.frag.out │ │ ├── spv.unit1.frag.out │ │ ├── spv.variableArrayIndex.frag.out │ │ ├── spv.varyingArray.frag.out │ │ ├── spv.varyingArrayIndirect.frag.out │ │ ├── spv.vecMatConstruct.frag.out │ │ ├── spv.viewportArray2.tesc.out │ │ ├── spv.viewportArray2.vert.out │ │ ├── spv.viewportindex.tese.out │ │ ├── spv.voidFunction.frag.out │ │ ├── spv.volatileAtomic.comp.out │ │ ├── spv.vulkan100.subgroupArithmetic.comp.out │ │ ├── spv.vulkan100.subgroupPartitioned.comp.out │ │ ├── spv.vulkan110.int16.frag.out │ │ ├── spv.vulkan110.storageBuffer.vert.out │ │ ├── spv.while-continue-break.vert.out │ │ ├── spv.while-simple.vert.out │ │ ├── spv.whileLoop.frag.out │ │ ├── spv.xfb.vert.out │ │ ├── spv.xfb2.vert.out │ │ ├── spv.xfb3.vert.out │ │ ├── spv.xfbOffsetOnBlockMembersAssignment.vert.out │ │ ├── spv.xfbOffsetOnStructMembersAssignment.vert.out │ │ ├── spv.xfbOverlapOffsetCheckWithBlockAndMember.vert.out │ │ ├── spv.xfbStrideJustOnce.vert.out │ │ ├── stringToDouble.vert.out │ │ ├── struct.error.frag.out │ │ ├── structAssignment.frag.out │ │ ├── structDeref.frag.out │ │ ├── structure.frag.out │ │ ├── switch.frag.out │ │ ├── swizzle.frag.out │ │ ├── syntaxError.frag.out │ │ ├── terminate.frag.out │ │ ├── terminate.vert.out │ │ ├── test.conf │ │ ├── test.frag.out │ │ ├── texture.frag.out │ │ ├── textureQueryLOD.frag.out │ │ ├── textureoffset_sampler2darrayshadow.vert.out │ │ ├── tokenLength.vert.out │ │ ├── tokenPaste.vert.out │ │ ├── types.frag.out │ │ ├── uint.frag.out │ │ ├── uniformArray.frag.out │ │ ├── variableArrayIndex.frag.out │ │ ├── varyingArray.frag.out │ │ ├── varyingArrayIndirect.frag.out │ │ ├── versionsClean.frag.out │ │ ├── versionsClean.vert.out │ │ ├── versionsErrors.frag.out │ │ ├── versionsErrors.vert.out │ │ ├── vk.relaxed.changeSet.vert.out │ │ ├── vk.relaxed.errorcheck.vert.out │ │ ├── vk.relaxed.frag.out │ │ ├── vk.relaxed.link1.frag.out │ │ ├── vk.relaxed.stagelink.0.0.vert.out │ │ ├── vk.relaxed.stagelink.vert.out │ │ ├── voidFunction.frag.out │ │ ├── vulkan.ast.vert.out │ │ ├── vulkan.comp.out │ │ ├── vulkan.frag.out │ │ ├── vulkan.vert.out │ │ ├── web.array.frag.out │ │ ├── web.basic.vert.out │ │ ├── web.builtins.frag.out │ │ ├── web.builtins.vert.out │ │ ├── web.comp.out │ │ ├── web.controlFlow.frag.out │ │ ├── web.operations.frag.out │ │ ├── web.separate.frag.out │ │ ├── web.texture.frag.out │ │ ├── whileLoop.frag.out │ │ ├── xfbUnsizedArray.error.tese.out │ │ └── xfbUnsizedArray.error.vert.out │ ├── bump │ ├── comment.frag │ ├── compoundsuffix.frag.hlsl │ ├── compoundsuffix.vert.glsl │ ├── conditionalDiscard.frag │ ├── constErrors.frag │ ├── constFold.frag │ ├── constFoldIntMin.frag │ ├── constantUnaryConversion.comp │ ├── contradict_0.geom │ ├── contradict_1.geom │ ├── conversion.frag │ ├── coord_conventions.frag │ ├── cppBad.vert │ ├── cppBad2.vert │ ├── cppBad3.vert │ ├── cppBad4.vert │ ├── cppBad5.vert │ ├── cppComplexExpr.vert │ ├── cppDeepNest.frag │ ├── cppIndent.vert │ ├── cppIntMinOverNegativeOne.frag │ ├── cppMerge.frag │ ├── cppNest.vert │ ├── cppPassMacroName.frag │ ├── cppRelaxSkipTokensErrors.vert │ ├── cppSimple.vert │ ├── dataOut.frag │ ├── dataOutIndirect.frag │ ├── dce.frag │ ├── decls.frag │ ├── deepRvalue.frag │ ├── depthOut.frag │ ├── discard-dce.frag │ ├── doWhileLoop.frag │ ├── earlyReturnDiscard.frag │ ├── empty.frag │ ├── empty2.frag │ ├── empty3.frag │ ├── enhanced.0.frag │ ├── enhanced.1.frag │ ├── enhanced.2.frag │ ├── enhanced.3.frag │ ├── enhanced.3.vert │ ├── enhanced.4.frag │ ├── enhanced.4.vert │ ├── enhanced.5.frag │ ├── enhanced.5.vert │ ├── enhanced.6.frag │ ├── enhanced.6.vert │ ├── enhanced.7.frag │ ├── enhanced.7.vert │ ├── errors.frag │ ├── es-link1.frag │ ├── es-link2.frag │ ├── findFunction.frag │ ├── floatBitsToInt.vert │ ├── flowControl.frag │ ├── foo.h │ ├── forLoop.frag │ ├── forwardRef.frag │ ├── functionCall.frag │ ├── functionSemantics.frag │ ├── gl_FragCoord.frag │ ├── glsl.-D-U.frag │ ├── glsl.140.layoutOffset.error.vert │ ├── glsl.430.layoutOffset.error.vert │ ├── glsl.450.subgroup.frag │ ├── glsl.450.subgroup.geom │ ├── glsl.450.subgroup.tesc │ ├── glsl.450.subgroup.tese │ ├── glsl.450.subgroup.vert │ ├── glsl.450.subgroupArithmetic.comp │ ├── glsl.450.subgroupBallot.comp │ ├── glsl.450.subgroupBallotNeg.comp │ ├── glsl.450.subgroupBasic.comp │ ├── glsl.450.subgroupClustered.comp │ ├── glsl.450.subgroupClusteredNeg.comp │ ├── glsl.450.subgroupPartitioned.comp │ ├── glsl.450.subgroupQuad.comp │ ├── glsl.450.subgroupShuffle.comp │ ├── glsl.450.subgroupShuffleRelative.comp │ ├── glsl.450.subgroupVote.comp │ ├── glsl.460.subgroup.mesh │ ├── glsl.460.subgroup.rahit │ ├── glsl.460.subgroup.rcall │ ├── glsl.460.subgroup.rchit │ ├── glsl.460.subgroup.rgen │ ├── glsl.460.subgroup.rint │ ├── glsl.460.subgroup.rmiss │ ├── glsl.460.subgroup.task │ ├── glsl.autosampledtextures.frag │ ├── glsl.entryPointRename.vert │ ├── glsl.entryPointRename2.vert │ ├── glsl.es300.layoutOffset.error.vert │ ├── glsl.es320.subgroup.frag │ ├── glsl.es320.subgroup.geom │ ├── glsl.es320.subgroup.tesc │ ├── glsl.es320.subgroup.tese │ ├── glsl.es320.subgroup.vert │ ├── glsl.es320.subgroupArithmetic.comp │ ├── glsl.es320.subgroupBallot.comp │ ├── glsl.es320.subgroupBallotNeg.comp │ ├── glsl.es320.subgroupBasic.comp │ ├── glsl.es320.subgroupClustered.comp │ ├── glsl.es320.subgroupClusteredNeg.comp │ ├── glsl.es320.subgroupPartitioned.comp │ ├── glsl.es320.subgroupQuad.comp │ ├── glsl.es320.subgroupShuffle.comp │ ├── glsl.es320.subgroupShuffleRelative.comp │ ├── glsl.es320.subgroupVote.comp │ ├── glsl.versionOverride.comp │ ├── glsl.versionOverride.frag │ ├── glsl.versionOverride.geom │ ├── glsl.versionOverride.tesc │ ├── glsl.versionOverride.tese │ ├── glsl.versionOverride.vert │ ├── glslangValidator │ ├── glspv.esversion.vert │ ├── glspv.frag │ ├── glspv.version.frag │ ├── glspv.version.vert │ ├── glspv.vert │ ├── hlsl.-D-U.frag │ ├── hlsl.PointSize.geom │ ├── hlsl.PointSize.vert │ ├── hlsl.aliasOpaque.frag │ ├── hlsl.amend.frag │ ├── hlsl.array.flatten.frag │ ├── hlsl.array.frag │ ├── hlsl.array.implicit-size.frag │ ├── hlsl.array.multidim.frag │ ├── hlsl.assoc.frag │ ├── hlsl.attribute.expression.comp │ ├── hlsl.attribute.frag │ ├── hlsl.attributeC11.frag │ ├── hlsl.attributeGlobalBuffer.frag │ ├── hlsl.automap.frag │ ├── hlsl.autosampledtextures.frag │ ├── hlsl.basic.comp │ ├── hlsl.basic.geom │ ├── hlsl.boolConv.vert │ ├── hlsl.buffer.frag │ ├── hlsl.calculatelod.dx10.frag │ ├── hlsl.calculatelodunclamped.dx10.frag │ ├── hlsl.cast.frag │ ├── hlsl.cbuffer-identifier.vert │ ├── hlsl.charLit.vert │ ├── hlsl.clip.frag │ ├── hlsl.clipdistance-1.frag │ ├── hlsl.clipdistance-1.geom │ ├── hlsl.clipdistance-1.vert │ ├── hlsl.clipdistance-2.frag │ ├── hlsl.clipdistance-2.geom │ ├── hlsl.clipdistance-2.vert │ ├── hlsl.clipdistance-3.frag │ ├── hlsl.clipdistance-3.geom │ ├── hlsl.clipdistance-3.vert │ ├── hlsl.clipdistance-4.frag │ ├── hlsl.clipdistance-4.geom │ ├── hlsl.clipdistance-4.vert │ ├── hlsl.clipdistance-5.frag │ ├── hlsl.clipdistance-5.vert │ ├── hlsl.clipdistance-6.frag │ ├── hlsl.clipdistance-6.vert │ ├── hlsl.clipdistance-7.frag │ ├── hlsl.clipdistance-7.vert │ ├── hlsl.clipdistance-8.frag │ ├── hlsl.clipdistance-8.vert │ ├── hlsl.clipdistance-9.frag │ ├── hlsl.clipdistance-9.vert │ ├── hlsl.color.hull.tesc │ ├── hlsl.comparison.vec.frag │ ├── hlsl.conditional.frag │ ├── hlsl.constantbuffer.frag │ ├── hlsl.constructArray.vert │ ├── hlsl.constructexpr.frag │ ├── hlsl.constructimat.frag │ ├── hlsl.coverage.frag │ ├── hlsl.dashI.vert │ ├── hlsl.deadFunctionMissingBody.vert │ ├── hlsl.depthGreater.frag │ ├── hlsl.depthLess.frag │ ├── hlsl.discard.frag │ ├── hlsl.doLoop.frag │ ├── hlsl.domain.1.tese │ ├── hlsl.domain.2.tese │ ├── hlsl.domain.3.tese │ ├── hlsl.earlydepthstencil.frag │ ├── hlsl.emptystruct.init.vert │ ├── hlsl.emptystructreturn.frag │ ├── hlsl.emptystructreturn.vert │ ├── hlsl.entry-in.frag │ ├── hlsl.entry-out.frag │ ├── hlsl.entry.rename.frag │ ├── hlsl.explicitDescriptorSet.frag │ ├── hlsl.flatten.return.frag │ ├── hlsl.flattenOpaque.frag │ ├── hlsl.flattenOpaqueInit.vert │ ├── hlsl.flattenOpaqueInitMix.vert │ ├── hlsl.flattenSubset.frag │ ├── hlsl.flattenSubset2.frag │ ├── hlsl.float1.frag │ ├── hlsl.float4.frag │ ├── hlsl.forLoop.frag │ ├── hlsl.format.rwtexture.frag │ ├── hlsl.frag │ ├── hlsl.fraggeom.frag │ ├── hlsl.function.frag │ ├── hlsl.gather.array.dx10.frag │ ├── hlsl.gather.basic.dx10.frag │ ├── hlsl.gather.basic.dx10.vert │ ├── hlsl.gather.offset.dx10.frag │ ├── hlsl.gather.offsetarray.dx10.frag │ ├── hlsl.gatherRGBA.array.dx10.frag │ ├── hlsl.gatherRGBA.basic.dx10.frag │ ├── hlsl.gatherRGBA.offset.dx10.frag │ ├── hlsl.gatherRGBA.offsetarray.dx10.frag │ ├── hlsl.gathercmpRGBA.array.dx10.frag │ ├── hlsl.gathercmpRGBA.basic.dx10.frag │ ├── hlsl.gathercmpRGBA.offset.dx10.frag │ ├── hlsl.gathercmpRGBA.offsetarray.dx10.frag │ ├── hlsl.getdimensions.dx10.frag │ ├── hlsl.getdimensions.dx10.vert │ ├── hlsl.getdimensions.rw.dx10.frag │ ├── hlsl.getsampleposition.dx10.frag │ ├── hlsl.global-const-init.frag │ ├── hlsl.groupid.comp │ ├── hlsl.gs-hs-mix.tesc │ ├── hlsl.hlslOffset.vert │ ├── hlsl.hull.1.tesc │ ├── hlsl.hull.2.tesc │ ├── hlsl.hull.3.tesc │ ├── hlsl.hull.4.tesc │ ├── hlsl.hull.5.tesc │ ├── hlsl.hull.6.tesc │ ├── hlsl.hull.ctrlpt-1.tesc │ ├── hlsl.hull.ctrlpt-2.tesc │ ├── hlsl.hull.void.tesc │ ├── hlsl.identifier.sample.frag │ ├── hlsl.if.frag │ ├── hlsl.imagefetch-subvec4.comp │ ├── hlsl.imageload-subvec4.comp │ ├── hlsl.implicitBool.frag │ ├── hlsl.include.vert │ ├── hlsl.includeNegative.vert │ ├── hlsl.inf.vert │ ├── hlsl.init.frag │ ├── hlsl.init2.frag │ ├── hlsl.inoutquals.frag │ ├── hlsl.inoutquals.negative.frag │ ├── hlsl.instance.geom │ ├── hlsl.int.dot.frag │ ├── hlsl.intrinsic.frexp.frag │ ├── hlsl.intrinsic.frexp.vert │ ├── hlsl.intrinsics.barriers.comp │ ├── hlsl.intrinsics.comp │ ├── hlsl.intrinsics.d3dcolortoubyte4.frag │ ├── hlsl.intrinsics.double.frag │ ├── hlsl.intrinsics.evalfns.frag │ ├── hlsl.intrinsics.f1632.frag │ ├── hlsl.intrinsics.f3216.frag │ ├── hlsl.intrinsics.frag │ ├── hlsl.intrinsics.lit.frag │ ├── hlsl.intrinsics.negative.comp │ ├── hlsl.intrinsics.negative.frag │ ├── hlsl.intrinsics.negative.vert │ ├── hlsl.intrinsics.promote.down.frag │ ├── hlsl.intrinsics.promote.frag │ ├── hlsl.intrinsics.promote.outputs.frag │ ├── hlsl.intrinsics.vert │ ├── hlsl.isfinite.frag │ ├── hlsl.layout.frag │ ├── hlsl.layoutOverride.vert │ ├── hlsl.load.2dms.dx10.frag │ ├── hlsl.load.array.dx10.frag │ ├── hlsl.load.basic.dx10.frag │ ├── hlsl.load.basic.dx10.vert │ ├── hlsl.load.buffer.dx10.frag │ ├── hlsl.load.buffer.float.dx10.frag │ ├── hlsl.load.offset.dx10.frag │ ├── hlsl.load.offsetarray.dx10.frag │ ├── hlsl.load.rwbuffer.dx10.frag │ ├── hlsl.load.rwtexture.array.dx10.frag │ ├── hlsl.load.rwtexture.dx10.frag │ ├── hlsl.localStructuredBuffer.comp │ ├── hlsl.logical.binary.frag │ ├── hlsl.logical.binary.vec.frag │ ├── hlsl.logical.unary.frag │ ├── hlsl.logicalConvert.frag │ ├── hlsl.loopattr.frag │ ├── hlsl.matNx1.frag │ ├── hlsl.matType.bool.frag │ ├── hlsl.matType.frag │ ├── hlsl.matType.int.frag │ ├── hlsl.matpack-1.frag │ ├── hlsl.matpack-pragma-global.frag │ ├── hlsl.matpack-pragma.frag │ ├── hlsl.matrixSwizzle.vert │ ├── hlsl.matrixindex.frag │ ├── hlsl.max.frag │ ├── hlsl.memberFunCall.frag │ ├── hlsl.mintypes.frag │ ├── hlsl.mip.negative.frag │ ├── hlsl.mip.negative2.frag │ ├── hlsl.mip.operator.frag │ ├── hlsl.mul-truncate.frag │ ├── hlsl.multiDescriptorSet.frag │ ├── hlsl.multiEntry.vert │ ├── hlsl.multiReturn.frag │ ├── hlsl.namespace.frag │ ├── hlsl.nested-runtimeArray.frag │ ├── hlsl.noSemantic.functionality1.comp │ ├── hlsl.nonint-index.frag │ ├── hlsl.nonstaticMemberFunction.frag │ ├── hlsl.numericsuffixes.frag │ ├── hlsl.numthreads.comp │ ├── hlsl.opaque-type-bug.frag │ ├── hlsl.overload.frag │ ├── hlsl.params.default.frag │ ├── hlsl.params.default.negative.frag │ ├── hlsl.partialFlattenLocal.vert │ ├── hlsl.partialFlattenMixed.vert │ ├── hlsl.partialInit.frag │ ├── hlsl.pp.expand.frag │ ├── hlsl.pp.line.frag │ ├── hlsl.pp.line2.frag │ ├── hlsl.pp.line3.frag │ ├── hlsl.pp.line4.frag │ ├── hlsl.pp.tokenpasting.frag │ ├── hlsl.pp.vert │ ├── hlsl.precedence.frag │ ├── hlsl.precedence2.frag │ ├── hlsl.precise.frag │ ├── hlsl.preprocessor.frag │ ├── hlsl.printf.comp │ ├── hlsl.promote.atomic.frag │ ├── hlsl.promote.binary.frag │ ├── hlsl.promote.vec1.frag │ ├── hlsl.promotions.frag │ ├── hlsl.reflection.binding.frag │ ├── hlsl.reflection.vert │ ├── hlsl.round.dx10.frag │ ├── hlsl.round.dx9.frag │ ├── hlsl.rw.atomics.frag │ ├── hlsl.rw.bracket.frag │ ├── hlsl.rw.register.frag │ ├── hlsl.rw.scalar.bracket.frag │ ├── hlsl.rw.swizzle.frag │ ├── hlsl.rw.vec2.bracket.frag │ ├── hlsl.sample.array.dx10.frag │ ├── hlsl.sample.basic.dx10.frag │ ├── hlsl.sample.dx9.frag │ ├── hlsl.sample.dx9.vert │ ├── hlsl.sample.offset.dx10.frag │ ├── hlsl.sample.offsetarray.dx10.frag │ ├── hlsl.sample.sub-vec4.dx10.frag │ ├── hlsl.samplebias.array.dx10.frag │ ├── hlsl.samplebias.basic.dx10.frag │ ├── hlsl.samplebias.offset.dx10.frag │ ├── hlsl.samplebias.offsetarray.dx10.frag │ ├── hlsl.samplecmp.array.dx10.frag │ ├── hlsl.samplecmp.basic.dx10.frag │ ├── hlsl.samplecmp.dualmode.frag │ ├── hlsl.samplecmp.negative.frag │ ├── hlsl.samplecmp.negative2.frag │ ├── hlsl.samplecmp.offset.dx10.frag │ ├── hlsl.samplecmp.offsetarray.dx10.frag │ ├── hlsl.samplecmplevelzero.array.dx10.frag │ ├── hlsl.samplecmplevelzero.basic.dx10.frag │ ├── hlsl.samplecmplevelzero.offset.dx10.frag │ ├── hlsl.samplecmplevelzero.offsetarray.dx10.frag │ ├── hlsl.samplegrad.array.dx10.frag │ ├── hlsl.samplegrad.basic.dx10.frag │ ├── hlsl.samplegrad.basic.dx10.vert │ ├── hlsl.samplegrad.offset.dx10.frag │ ├── hlsl.samplegrad.offsetarray.dx10.frag │ ├── hlsl.samplelevel.array.dx10.frag │ ├── hlsl.samplelevel.basic.dx10.frag │ ├── hlsl.samplelevel.basic.dx10.vert │ ├── hlsl.samplelevel.offset.dx10.frag │ ├── hlsl.samplelevel.offsetarray.dx10.frag │ ├── hlsl.scalar-length.frag │ ├── hlsl.scalar2matrix.frag │ ├── hlsl.scalarCast.vert │ ├── hlsl.scope.frag │ ├── hlsl.self_cast.frag │ ├── hlsl.semantic-1.vert │ ├── hlsl.semantic.geom │ ├── hlsl.semantic.vert │ ├── hlsl.semicolons.frag │ ├── hlsl.shapeConv.frag │ ├── hlsl.shapeConvRet.frag │ ├── hlsl.shift.per-set.frag │ ├── hlsl.sin.frag │ ├── hlsl.singleArgIntPromo.vert │ ├── hlsl.snorm.uav.comp │ ├── hlsl.specConstant.frag │ ├── hlsl.spv.1.6.discard.frag │ ├── hlsl.staticFuncInit.frag │ ├── hlsl.staticMemberFunction.frag │ ├── hlsl.store.rwbyteaddressbuffer.type.comp │ ├── hlsl.string.frag │ ├── hlsl.stringtoken.frag │ ├── hlsl.struct.frag │ ├── hlsl.struct.split-1.vert │ ├── hlsl.struct.split.array.geom │ ├── hlsl.struct.split.assign.frag │ ├── hlsl.struct.split.call.vert │ ├── hlsl.struct.split.nested.geom │ ├── hlsl.struct.split.trivial.geom │ ├── hlsl.struct.split.trivial.vert │ ├── hlsl.structIoFourWay.frag │ ├── hlsl.structStructName.frag │ ├── hlsl.structarray.flatten.frag │ ├── hlsl.structarray.flatten.geom │ ├── hlsl.structbuffer.append.fn.frag │ ├── hlsl.structbuffer.append.frag │ ├── hlsl.structbuffer.atomics.frag │ ├── hlsl.structbuffer.byte.frag │ ├── hlsl.structbuffer.coherent.frag │ ├── hlsl.structbuffer.floatidx.comp │ ├── hlsl.structbuffer.fn.frag │ ├── hlsl.structbuffer.fn2.comp │ ├── hlsl.structbuffer.frag │ ├── hlsl.structbuffer.incdec.frag │ ├── hlsl.structbuffer.rw.frag │ ├── hlsl.structbuffer.rwbyte.frag │ ├── hlsl.structbuffer.rwbyte2.comp │ ├── hlsl.structin.vert │ ├── hlsl.subpass.frag │ ├── hlsl.switch.frag │ ├── hlsl.swizzle.frag │ ├── hlsl.synthesizeInput.frag │ ├── hlsl.target.frag │ ├── hlsl.targetStruct1.frag │ ├── hlsl.targetStruct2.frag │ ├── hlsl.templatetypes.frag │ ├── hlsl.templatetypes.negative.frag │ ├── hlsl.texture.struct.frag │ ├── hlsl.texture.subvec4.frag │ ├── hlsl.texturebuffer.frag │ ├── hlsl.this.frag │ ├── hlsl.tristream-append.geom │ ├── hlsl.tx.bracket.frag │ ├── hlsl.tx.overload.frag │ ├── hlsl.type.half.frag │ ├── hlsl.type.identifier.frag │ ├── hlsl.type.type.conversion.all.frag │ ├── hlsl.type.type.conversion.valid.frag │ ├── hlsl.typeGraphCopy.vert │ ├── hlsl.typedef.frag │ ├── hlsl.void.frag │ ├── hlsl.w-recip.frag │ ├── hlsl.w-recip2.frag │ ├── hlsl.wavebroadcast.comp │ ├── hlsl.waveprefix.comp │ ├── hlsl.wavequad.comp │ ├── hlsl.wavequery.comp │ ├── hlsl.wavequery.frag │ ├── hlsl.wavereduction.comp │ ├── hlsl.wavevote.comp │ ├── hlsl.whileLoop.frag │ ├── hlsl.y-negate-1.vert │ ├── hlsl.y-negate-2.vert │ ├── hlsl.y-negate-3.vert │ ├── i1.h │ ├── implicitArraySize.frag │ ├── implicitArraySize.vert │ ├── implicitArraySize1.geom │ ├── implicitArraySize2.geom │ ├── implicitArraySizeBuiltin.geom │ ├── implicitArraySizeBuiltin.vert │ ├── implicitInnerAtomicUint.frag │ ├── inc1 │ │ ├── badInc.h │ │ ├── bar.h │ │ ├── foo.h │ │ ├── path1 │ │ │ ├── bar.h │ │ │ ├── local.h │ │ │ └── notHere.h │ │ └── path2 │ │ │ ├── bar.h │ │ │ ├── notHere.h │ │ │ └── remote.h │ ├── inc2 │ │ ├── bar.h │ │ └── foo.h │ ├── include.vert │ ├── invalidSwizzle.vert │ ├── iomap.blockOutVariableIn.2.vert │ ├── iomap.blockOutVariableIn.frag │ ├── iomap.blockOutVariableIn.geom │ ├── iomap.blockOutVariableIn.vert │ ├── iomap.crossStage.2.frag │ ├── iomap.crossStage.2.geom │ ├── iomap.crossStage.2.vert │ ├── iomap.crossStage.frag │ ├── iomap.crossStage.vert │ ├── iomap.crossStage.vk.frag │ ├── iomap.crossStage.vk.geom │ ├── iomap.crossStage.vk.vert │ ├── iomap.variableOutBlockIn.2.vert │ ├── iomap.variableOutBlockIn.frag │ ├── iomap.variableOutBlockIn.geom │ ├── iomap.variableOutBlockIn.vert │ ├── length.frag │ ├── lineContinuation.vert │ ├── lineContinuation100.vert │ ├── link.multiAnonBlocksInvalid.0.0.vert │ ├── link.multiAnonBlocksInvalid.0.1.vert │ ├── link.multiAnonBlocksValid.0.0.vert │ ├── link.multiAnonBlocksValid.0.1.vert │ ├── link.multiBlocksInvalid.0.0.vert │ ├── link.multiBlocksInvalid.0.1.vert │ ├── link.multiBlocksValid.1.0.vert │ ├── link.multiBlocksValid.1.1.vert │ ├── link.redeclareBuiltin.geom │ ├── link.redeclareBuiltin.vert │ ├── link.tesselation.frag │ ├── link.tesselation.tesc │ ├── link.tesselation.tese │ ├── link.tesselation.vert │ ├── link.vk.differentPC.0.0.frag │ ├── link.vk.differentPC.0.1.frag │ ├── link.vk.differentPC.0.2.frag │ ├── link.vk.differentPC.1.0.frag │ ├── link.vk.differentPC.1.1.frag │ ├── link.vk.differentPC.1.2.frag │ ├── link.vk.inconsistentGLPerVertex.0.geom │ ├── link.vk.inconsistentGLPerVertex.0.vert │ ├── link.vk.matchingPC.0.0.frag │ ├── link.vk.matchingPC.0.1.frag │ ├── link.vk.matchingPC.0.2.frag │ ├── link.vk.multiBlocksValid.0.0.vert │ ├── link.vk.multiBlocksValid.0.1.vert │ ├── link.vk.multiBlocksValid.1.0.geom │ ├── link.vk.multiBlocksValid.1.1.geom │ ├── link.vk.pcNamingInvalid.0.0.vert │ ├── link.vk.pcNamingInvalid.0.1.vert │ ├── link.vk.pcNamingValid.0.0.vert │ ├── link.vk.pcNamingValid.0.1.vert │ ├── link1.frag │ ├── link1.vk.frag │ ├── link2.frag │ ├── link2.vk.frag │ ├── link3.frag │ ├── localAggregates.frag │ ├── loops.frag │ ├── loopsArtificial.frag │ ├── mains.frag │ ├── mains1.frag │ ├── mains2.frag │ ├── makeDoc │ ├── matrix.frag │ ├── matrix2.frag │ ├── matrixError.vert │ ├── maxClipDistances.vert │ ├── max_vertices_0.geom │ ├── missingBodies.vert │ ├── mixedArrayDecls.frag │ ├── negativeArraySize.comp │ ├── negativeWorkGroupSize.comp │ ├── newTexture.frag │ ├── noMain.vert │ ├── noMain1.geom │ ├── noMain2.geom │ ├── noMatchingFunction.frag │ ├── nonSquare.vert │ ├── nonVulkan.frag │ ├── nonuniform.frag │ ├── nosuffix │ ├── numeral.frag │ ├── nvShaderNoperspectiveInterpolation.frag │ ├── overlongLiteral.frag │ ├── parent.h │ ├── parentBad │ ├── pointCoord.frag │ ├── precise.tesc │ ├── precise_struct_block.vert │ ├── precision.frag │ ├── precision.vert │ ├── prepost.frag │ ├── preprocessor.bad_arg.vert │ ├── preprocessor.cpp_style___FILE__.vert │ ├── preprocessor.cpp_style_line_directive.vert │ ├── preprocessor.defined.vert │ ├── preprocessor.edge_cases.vert │ ├── preprocessor.eof_missing.vert │ ├── preprocessor.errors.vert │ ├── preprocessor.extensions.vert │ ├── preprocessor.function_macro.vert │ ├── preprocessor.include.disabled.vert │ ├── preprocessor.include.enabled.vert │ ├── preprocessor.line.frag │ ├── preprocessor.line.vert │ ├── preprocessor.many.endif.vert │ ├── preprocessor.pragma.vert │ ├── preprocessor.simple.vert │ ├── preprocessor.success_if_parse_would_fail.vert │ ├── rayQuery-OpConvertUToAccelerationStructureKHR.comp │ ├── rayQuery-allOps.Error.rgen │ ├── rayQuery-allOps.comp │ ├── rayQuery-allOps.frag │ ├── rayQuery-allOps.rgen │ ├── rayQuery-committed.Error.rgen │ ├── rayQuery-global.rgen │ ├── rayQuery-initialization.Error.comp │ ├── rayQuery-initialize.rgen │ ├── rayQuery-no-cse.rgen │ ├── rayQuery-types.comp │ ├── rayQuery.rgen │ ├── recurse1.frag │ ├── recurse1.vert │ ├── recurse2.frag │ ├── reflection.frag │ ├── reflection.linked.frag │ ├── reflection.linked.vert │ ├── reflection.options.geom │ ├── reflection.options.vert │ ├── reflection.vert │ ├── remap.basic.dcefunc.frag │ ├── remap.basic.everything.frag │ ├── remap.basic.none.frag │ ├── remap.basic.strip.frag │ ├── remap.hlsl.sample.basic.everything.frag │ ├── remap.hlsl.sample.basic.none.frag │ ├── remap.hlsl.sample.basic.strip.frag │ ├── remap.hlsl.templatetypes.everything.frag │ ├── remap.hlsl.templatetypes.none.frag │ ├── remap.if.everything.frag │ ├── remap.if.none.frag │ ├── remap.invalid-spirv-1.spv │ ├── remap.invalid-spirv-2.spv │ ├── remap.literal64.everything.spv │ ├── remap.literal64.none.spv │ ├── remap.similar_1a.everything.frag │ ├── remap.similar_1a.none.frag │ ├── remap.similar_1b.everything.frag │ ├── remap.similar_1b.none.frag │ ├── remap.specconst.comp │ ├── remap.switch.everything.frag │ ├── remap.switch.none.frag │ ├── remap.uniformarray.everything.frag │ ├── remap.uniformarray.none.frag │ ├── runtests │ ├── runtimeArray.vert │ ├── sample.frag │ ├── sample.frag.out │ ├── sample.vert │ ├── sample.vert.out │ ├── samplerlessTextureFunctions.frag │ ├── simpleFunctionCall.frag │ ├── specExamples.frag │ ├── specExamples.vert │ ├── spv.1.3.8bitstorage-ssbo.vert │ ├── spv.1.3.8bitstorage-ubo.vert │ ├── spv.1.3.coopmat.comp │ ├── spv.1.4.LoopControl.frag │ ├── spv.1.4.NonWritable.frag │ ├── spv.1.4.OpCopyLogical.comp │ ├── spv.1.4.OpCopyLogical.funcall.frag │ ├── spv.1.4.OpCopyLogicalBool.comp │ ├── spv.1.4.OpEntryPoint.frag │ ├── spv.1.4.OpEntryPoint.opaqueParams.vert │ ├── spv.1.4.OpSelect.frag │ ├── spv.1.4.constructComposite.comp │ ├── spv.1.4.funcall.array.frag │ ├── spv.1.4.image.frag │ ├── spv.1.4.load.bool.array.interface.block.frag │ ├── spv.1.4.sparseTexture.frag │ ├── spv.1.4.texture.frag │ ├── spv.1.6.conditionalDiscard.frag │ ├── spv.1.6.helperInvocation.frag │ ├── spv.1.6.helperInvocation.memmodel.frag │ ├── spv.1.6.samplerBuffer.frag │ ├── spv.1.6.separate.frag │ ├── spv.1.6.specConstant.comp │ ├── spv.100ops.frag │ ├── spv.130.frag │ ├── spv.140.frag │ ├── spv.150.geom │ ├── spv.150.vert │ ├── spv.16bitstorage-int.frag │ ├── spv.16bitstorage-uint.frag │ ├── spv.16bitstorage.frag │ ├── spv.16bitstorage_Error-int.frag │ ├── spv.16bitstorage_Error-uint.frag │ ├── spv.16bitstorage_Error.frag │ ├── spv.16bitxfb.vert │ ├── spv.300BuiltIns.vert │ ├── spv.300layout.frag │ ├── spv.300layout.vert │ ├── spv.300layoutp.vert │ ├── spv.310.bitcast.frag │ ├── spv.310.comp │ ├── spv.320.meshShaderUserDefined.mesh │ ├── spv.330.geom │ ├── spv.400.frag │ ├── spv.400.tesc │ ├── spv.400.tese │ ├── spv.420.geom │ ├── spv.430.frag │ ├── spv.430.vert │ ├── spv.450.geom │ ├── spv.450.noRedecl.tesc │ ├── spv.450.tesc │ ├── spv.460.comp │ ├── spv.460.frag │ ├── spv.460.subgroupEXT.mesh │ ├── spv.460.subgroupEXT.task │ ├── spv.460.vert │ ├── spv.8bit-16bit-construction.frag │ ├── spv.8bitstorage-int.frag │ ├── spv.8bitstorage-ssbo.vert │ ├── spv.8bitstorage-ubo.vert │ ├── spv.8bitstorage-uint.frag │ ├── spv.8bitstorage_Error-int.frag │ ├── spv.8bitstorage_Error-uint.frag │ ├── spv.ARMCoreBuiltIns.frag │ ├── spv.ARMCoreBuiltIns.vert │ ├── spv.AnyHitShader.rahit │ ├── spv.AnyHitShaderMotion.rahit │ ├── spv.AnyHitShader_Errors.rahit │ ├── spv.AofA.frag │ ├── spv.ClosestHitShader.rchit │ ├── spv.ClosestHitShaderMotion.rchit │ ├── spv.ClosestHitShader_Errors.rchit │ ├── spv.GeometryShaderPassthrough.geom │ ├── spv.IntersectShader.rint │ ├── spv.IntersectShaderMotion.rint │ ├── spv.IntersectShader_Errors.rint │ ├── spv.MissShader.rmiss │ ├── spv.MissShaderMotion.rmiss │ ├── spv.MissShader_Errors.rmiss │ ├── spv.OVR_multiview.vert │ ├── spv.Operations.frag │ ├── spv.RayCallable.rcall │ ├── spv.RayCallable_Errors.rcall │ ├── spv.RayConstants.rgen │ ├── spv.RayGenShader.rgen │ ├── spv.RayGenShader11.rgen │ ├── spv.RayGenShaderArray.rgen │ ├── spv.RayGenShaderMotion.rgen │ ├── spv.RayGenShader_Errors.rgen │ ├── spv.WorkgroupMemoryExplicitLayout.16BitAccess.comp │ ├── spv.WorkgroupMemoryExplicitLayout.8BitAccess.comp │ ├── spv.WorkgroupMemoryExplicitLayout.MixBlockNonBlock_Errors.comp │ ├── spv.WorkgroupMemoryExplicitLayout.MultiBlock.comp │ ├── spv.WorkgroupMemoryExplicitLayout.NonBlock.comp │ ├── spv.WorkgroupMemoryExplicitLayout.SingleBlock.comp │ ├── spv.WorkgroupMemoryExplicitLayout.scalar.comp │ ├── spv.WorkgroupMemoryExplicitLayout.std140.comp │ ├── spv.WorkgroupMemoryExplicitLayout.std430.comp │ ├── spv.accessChain.frag │ ├── spv.aggOps.frag │ ├── spv.always-discard.frag │ ├── spv.always-discard2.frag │ ├── spv.arbPostDepthCoverage.frag │ ├── spv.arbPostDepthCoverage_Error.frag │ ├── spv.atomiAddEXT.error.mesh │ ├── spv.atomiAddEXT.task │ ├── spv.atomic.comp │ ├── spv.atomicAdd.bufferReference.comp │ ├── spv.atomicCounter.comp │ ├── spv.atomicFloat.comp │ ├── spv.atomicFloat2.comp │ ├── spv.atomicFloat_Error.comp │ ├── spv.atomicInt64.comp │ ├── spv.atomicStoreInt64.comp │ ├── spv.barrier.vert │ ├── spv.bitCast.frag │ ├── spv.bool.vert │ ├── spv.boolInBlock.frag │ ├── spv.branch-return.vert │ ├── spv.buffer.autoassign.frag │ ├── spv.bufferhandle1.frag │ ├── spv.bufferhandle10.frag │ ├── spv.bufferhandle11.frag │ ├── spv.bufferhandle12.frag │ ├── spv.bufferhandle13.frag │ ├── spv.bufferhandle14.frag │ ├── spv.bufferhandle15.frag │ ├── spv.bufferhandle16.frag │ ├── spv.bufferhandle17_Errors.frag │ ├── spv.bufferhandle18.frag │ ├── spv.bufferhandle19_Errors.frag │ ├── spv.bufferhandle2.frag │ ├── spv.bufferhandle3.frag │ ├── spv.bufferhandle4.frag │ ├── spv.bufferhandle5.frag │ ├── spv.bufferhandle6.frag │ ├── spv.bufferhandle7.frag │ ├── spv.bufferhandle8.frag │ ├── spv.bufferhandle9.frag │ ├── spv.bufferhandleUvec2.frag │ ├── spv.bufferhandle_Error.frag │ ├── spv.builtInXFB.vert │ ├── spv.builtin.PrimitiveShadingRateEXT.vert │ ├── spv.builtin.ShadingRateEXT.frag │ ├── spv.computeShaderDerivatives.comp │ ├── spv.computeShaderDerivatives2.comp │ ├── spv.conditionalDemote.frag │ ├── spv.conditionalDiscard.frag │ ├── spv.constConstruct.vert │ ├── spv.constStruct.vert │ ├── spv.constructComposite.comp │ ├── spv.controlFlowAttributes.frag │ ├── spv.conversion.frag │ ├── spv.coopmat.comp │ ├── spv.coopmat_Error.comp │ ├── spv.dataOut.frag │ ├── spv.dataOutIndirect.frag │ ├── spv.dataOutIndirect.vert │ ├── spv.dead-after-continue.vert │ ├── spv.dead-after-discard.frag │ ├── spv.dead-after-loop-break.vert │ ├── spv.dead-after-return.vert │ ├── spv.dead-after-switch-break.vert │ ├── spv.dead-complex-continue-after-return.vert │ ├── spv.dead-complex-merge-after-return.vert │ ├── spv.debugInfo.frag │ ├── spv.debugPrintf.frag │ ├── spv.debugPrintf_Error.frag │ ├── spv.debuginfo.const_params.glsl.comp │ ├── spv.debuginfo.glsl.comp │ ├── spv.debuginfo.glsl.frag │ ├── spv.debuginfo.glsl.geom │ ├── spv.debuginfo.glsl.tesc │ ├── spv.debuginfo.glsl.tese │ ├── spv.debuginfo.glsl.vert │ ├── spv.debuginfo.hlsl.comp │ ├── spv.debuginfo.hlsl.frag │ ├── spv.debuginfo.hlsl.geom │ ├── spv.debuginfo.hlsl.tesc │ ├── spv.debuginfo.hlsl.tese │ ├── spv.debuginfo.hlsl.vert │ ├── spv.deepRvalue.frag │ ├── spv.demoteDisabled.frag │ ├── spv.depthOut.frag │ ├── spv.depthUnchanged.frag │ ├── spv.deviceGroup.frag │ ├── spv.discard-dce.frag │ ├── spv.do-simple.vert │ ├── spv.do-while-continue-break.vert │ ├── spv.doWhileLoop.frag │ ├── spv.double.comp │ ├── spv.drawParams.vert │ ├── spv.earlyAndlateFragmentTests.frag │ ├── spv.earlyReturnDiscard.frag │ ├── spv.explicittypes.frag │ ├── spv.ext.AccelDecl.frag │ ├── spv.ext.AnyHitShader.rahit │ ├── spv.ext.AnyHitShader_Errors.rahit │ ├── spv.ext.ClosestHitShader.rchit │ ├── spv.ext.ClosestHitShader_Errors.rchit │ ├── spv.ext.ClosestHitShader_Subgroup.rchit │ ├── spv.ext.IntersectShader.rint │ ├── spv.ext.IntersectShader_Errors.rint │ ├── spv.ext.MissShader.rmiss │ ├── spv.ext.MissShader_Errors.rmiss │ ├── spv.ext.RayCallable.rcall │ ├── spv.ext.RayCallable_Errors.rcall │ ├── spv.ext.RayConstants.rgen │ ├── spv.ext.RayGenSBTlayout.rgen │ ├── spv.ext.RayGenSBTlayout140.rgen │ ├── spv.ext.RayGenSBTlayout430.rgen │ ├── spv.ext.RayGenSBTlayoutscalar.rgen │ ├── spv.ext.RayGenShader.rgen │ ├── spv.ext.RayGenShader11.rgen │ ├── spv.ext.RayGenShaderArray.rgen │ ├── spv.ext.RayGenShader_Errors.rgen │ ├── spv.ext.RayPrimCull_Errors.rgen │ ├── spv.ext.RayQueryDecl.frag │ ├── spv.ext.World3x4.rahit │ ├── spv.ext.meshShaderBuiltins.mesh │ ├── spv.ext.meshShaderRedeclBuiltins.mesh │ ├── spv.ext.meshShaderTaskMem.mesh │ ├── spv.ext.meshShaderUserDefined.mesh │ ├── spv.ext.meshTaskShader.task │ ├── spv.extPostDepthCoverage.frag │ ├── spv.extPostDepthCoverage_Error.frag │ ├── spv.float16.frag │ ├── spv.float16Fetch.frag │ ├── spv.float16NoRelaxed.vert │ ├── spv.float16convertonlyarith.comp │ ├── spv.float16convertonlystorage.comp │ ├── spv.float32.frag │ ├── spv.float64.frag │ ├── spv.flowControl.frag │ ├── spv.for-complex-condition.vert │ ├── spv.for-continue-break.vert │ ├── spv.for-nobody.vert │ ├── spv.for-notest.vert │ ├── spv.for-simple.vert │ ├── spv.forLoop.frag │ ├── spv.forwardFun.frag │ ├── spv.fragmentDensity-es.frag │ ├── spv.fragmentDensity-neg.frag │ ├── spv.fragmentDensity.frag │ ├── spv.fragmentDensity.vert │ ├── spv.fragmentShaderBarycentric.frag │ ├── spv.fragmentShaderBarycentric2.frag │ ├── spv.fragmentShaderBarycentric3.frag │ ├── spv.fragmentShaderBarycentric4.frag │ ├── spv.fsi.frag │ ├── spv.fsi_Error.frag │ ├── spv.fullyCovered.frag │ ├── spv.funcall.array.frag │ ├── spv.functionCall.frag │ ├── spv.functionNestedOpaque.vert │ ├── spv.functionParameterTypes.frag │ ├── spv.functionSemantics.frag │ ├── spv.glFragColor.frag │ ├── spv.glsl.register.autoassign.frag │ ├── spv.glsl.register.noautoassign.frag │ ├── spv.hlslDebugInfo.vert │ ├── spv.hlslOffsets.vert │ ├── spv.image.frag │ ├── spv.image.load-formatted.frag │ ├── spv.imageAtomic64.comp │ ├── spv.imageAtomic64.frag │ ├── spv.imageLoadStoreLod.frag │ ├── spv.int16.amd.frag │ ├── spv.int16.frag │ ├── spv.int32.frag │ ├── spv.int64.frag │ ├── spv.int8.frag │ ├── spv.intOps.vert │ ├── spv.intcoopmat.comp │ ├── spv.interpOps.frag │ ├── spv.intrinsicsSpirvByReference.vert │ ├── spv.intrinsicsSpirvDecorate.frag │ ├── spv.intrinsicsSpirvExecutionMode.frag │ ├── spv.intrinsicsSpirvInstruction.vert │ ├── spv.intrinsicsSpirvLiteral.vert │ ├── spv.intrinsicsSpirvStorageClass.rchit │ ├── spv.intrinsicsSpirvType.rgen │ ├── spv.intrinsicsSpirvTypeLocalVar.vert │ ├── spv.invariantAll.vert │ ├── spv.layer.tese │ ├── spv.layoutNested.vert │ ├── spv.length.frag │ ├── spv.load.bool.array.interface.block.frag │ ├── spv.localAggregates.frag │ ├── spv.loops.frag │ ├── spv.loopsArtificial.frag │ ├── spv.looseUniformNoLoc.vert │ ├── spv.matFun.vert │ ├── spv.matrix.frag │ ├── spv.matrix2.frag │ ├── spv.memoryQualifier.frag │ ├── spv.memoryScopeSemantics.comp │ ├── spv.memoryScopeSemantics_Error.comp │ ├── spv.merge-unreachable.frag │ ├── spv.meshShaderBuiltins.mesh │ ├── spv.meshShaderPerViewBuiltins.mesh │ ├── spv.meshShaderPerViewUserDefined.mesh │ ├── spv.meshShaderPerView_Errors.mesh │ ├── spv.meshShaderRedeclBuiltins.mesh │ ├── spv.meshShaderRedeclPerViewBuiltins.mesh │ ├── spv.meshShaderSharedMem.mesh │ ├── spv.meshShaderTaskMem.mesh │ ├── spv.meshShaderUserDefined.mesh │ ├── spv.meshTaskShader.task │ ├── spv.multiStruct.comp │ ├── spv.multiStructFuncall.frag │ ├── spv.multiView.frag │ ├── spv.multiviewPerViewAttributes.tesc │ ├── spv.multiviewPerViewAttributes.vert │ ├── spv.newTexture.frag │ ├── spv.noBuiltInLoc.vert │ ├── spv.noDeadDecorations.vert │ ├── spv.noLocation.vert │ ├── spv.noWorkgroup.comp │ ├── spv.nonSquare.vert │ ├── spv.nonuniform.frag │ ├── spv.nonuniform2.frag │ ├── spv.nonuniform3.frag │ ├── spv.nonuniform4.frag │ ├── spv.nonuniform5.frag │ ├── spv.nullInit.comp │ ├── spv.nv.hitobject-allops.rchit │ ├── spv.nv.hitobject-allops.rgen │ ├── spv.nv.hitobject-allops.rmiss │ ├── spv.offsets.frag │ ├── spv.paramMemory.420.frag │ ├── spv.paramMemory.frag │ ├── spv.perprimitiveNV.frag │ ├── spv.pp.line.frag │ ├── spv.precise.tesc │ ├── spv.precise.tese │ ├── spv.precision.frag │ ├── spv.precisionArgs.frag │ ├── spv.precisionNonESSamp.frag │ ├── spv.precisionTexture.frag │ ├── spv.prepost.frag │ ├── spv.privateVariableTypes.frag │ ├── spv.pushConstant.vert │ ├── spv.pushConstantAnon.vert │ ├── spv.qualifiers.vert │ ├── spv.queryL.frag │ ├── spv.queueFamilyScope.comp │ ├── spv.rankShift.comp │ ├── spv.register.autoassign-2.frag │ ├── spv.register.autoassign.frag │ ├── spv.register.autoassign.rangetest.frag │ ├── spv.register.noautoassign.frag │ ├── spv.register.subpass.frag │ ├── spv.rw.autoassign.frag │ ├── spv.sample.frag │ ├── spv.sampleId.frag │ ├── spv.sampleMaskOverrideCoverage.frag │ ├── spv.samplePosition.frag │ ├── spv.samplerlessTextureFunctions.frag │ ├── spv.scalarlayout.frag │ ├── spv.scalarlayoutfloat16.frag │ ├── spv.separate.frag │ ├── spv.set.vert │ ├── spv.shaderBallot.comp │ ├── spv.shaderBallotAMD.comp │ ├── spv.shaderDrawParams.vert │ ├── spv.shaderFragMaskAMD.frag │ ├── spv.shaderGroupVote.comp │ ├── spv.shaderImageFootprint.frag │ ├── spv.shaderStencilExport.frag │ ├── spv.shadingRate.frag │ ├── spv.shiftOps.frag │ ├── spv.shortCircuit.frag │ ├── spv.simpleFunctionCall.frag │ ├── spv.simpleMat.vert │ ├── spv.smBuiltins.frag │ ├── spv.smBuiltins.vert │ ├── spv.sparseTexture.frag │ ├── spv.sparseTextureClamp.frag │ ├── spv.specConst.vert │ ├── spv.specConstArrayCheck.vert │ ├── spv.specConstant.comp │ ├── spv.specConstant.float16.comp │ ├── spv.specConstant.int16.comp │ ├── spv.specConstant.int8.comp │ ├── spv.specConstant.vert │ ├── spv.specConstantComposite.vert │ ├── spv.specConstantOperations.vert │ ├── spv.specTexture.frag │ ├── spv.ssbo.autoassign.frag │ ├── spv.ssboAlias.frag │ ├── spv.stereoViewRendering.tesc │ ├── spv.stereoViewRendering.vert │ ├── spv.storageBuffer.vert │ ├── spv.structAssignment.frag │ ├── spv.structDeref.frag │ ├── spv.structure.frag │ ├── spv.subgroup.frag │ ├── spv.subgroup.geom │ ├── spv.subgroup.tesc │ ├── spv.subgroup.tese │ ├── spv.subgroup.vert │ ├── spv.subgroupArithmetic.comp │ ├── spv.subgroupBallot.comp │ ├── spv.subgroupBallotNeg.comp │ ├── spv.subgroupBasic.comp │ ├── spv.subgroupClustered.comp │ ├── spv.subgroupClusteredNeg.comp │ ├── spv.subgroupExtendedTypesArithmetic.comp │ ├── spv.subgroupExtendedTypesArithmeticNeg.comp │ ├── spv.subgroupExtendedTypesBallot.comp │ ├── spv.subgroupExtendedTypesBallotNeg.comp │ ├── spv.subgroupExtendedTypesClustered.comp │ ├── spv.subgroupExtendedTypesClusteredNeg.comp │ ├── spv.subgroupExtendedTypesPartitioned.comp │ ├── spv.subgroupExtendedTypesPartitionedNeg.comp │ ├── spv.subgroupExtendedTypesQuad.comp │ ├── spv.subgroupExtendedTypesQuadNeg.comp │ ├── spv.subgroupExtendedTypesShuffle.comp │ ├── spv.subgroupExtendedTypesShuffleNeg.comp │ ├── spv.subgroupExtendedTypesShuffleRelative.comp │ ├── spv.subgroupExtendedTypesShuffleRelativeNeg.comp │ ├── spv.subgroupExtendedTypesVote.comp │ ├── spv.subgroupExtendedTypesVoteNeg.comp │ ├── spv.subgroupPartitioned.comp │ ├── spv.subgroupQuad.comp │ ├── spv.subgroupShuffle.comp │ ├── spv.subgroupShuffleRelative.comp │ ├── spv.subgroupSizeARB.frag │ ├── spv.subgroupUniformControlFlow.vert │ ├── spv.subgroupVote.comp │ ├── spv.subpass.frag │ ├── spv.switch.frag │ ├── spv.swizzle.frag │ ├── spv.swizzleInversion.frag │ ├── spv.targetOpenGL.vert │ ├── spv.targetVulkan.vert │ ├── spv.terminate.frag │ ├── spv.test.frag │ ├── spv.test.vert │ ├── spv.texture.frag │ ├── spv.texture.sampler.transform.frag │ ├── spv.texture.vert │ ├── spv.textureBuffer.vert │ ├── spv.textureError.frag │ ├── spv.textureGatherBiasLod.frag │ ├── spv.types.frag │ ├── spv.uint.frag │ ├── spv.uniformArray.frag │ ├── spv.uniformInitializer.frag │ ├── spv.uniformInitializerSpecConstant.frag │ ├── spv.uniformInitializerStruct.frag │ ├── spv.unit1.frag │ ├── spv.unit2.frag │ ├── spv.unit3.frag │ ├── spv.variableArrayIndex.frag │ ├── spv.varyingArray.frag │ ├── spv.varyingArrayIndirect.frag │ ├── spv.vecMatConstruct.frag │ ├── spv.viewportArray2.tesc │ ├── spv.viewportArray2.vert │ ├── spv.viewportindex.tese │ ├── spv.voidFunction.frag │ ├── spv.volatileAtomic.comp │ ├── spv.vulkan100.subgroupArithmetic.comp │ ├── spv.vulkan100.subgroupPartitioned.comp │ ├── spv.vulkan110.int16.frag │ ├── spv.vulkan110.storageBuffer.vert │ ├── spv.while-continue-break.vert │ ├── spv.while-simple.vert │ ├── spv.whileLoop.frag │ ├── spv.xfb.vert │ ├── spv.xfb2.vert │ ├── spv.xfb3.vert │ ├── spv.xfbOffsetOnBlockMembersAssignment.vert │ ├── spv.xfbOffsetOnStructMembersAssignment.vert │ ├── spv.xfbOverlapOffsetCheckWithBlockAndMember.vert │ ├── spv.xfbStrideJustOnce.vert │ ├── stringToDouble.vert │ ├── struct.error.frag │ ├── structAssignment.frag │ ├── structDeref.frag │ ├── structure.frag │ ├── switch.frag │ ├── swizzle.frag │ ├── syntaxError.frag │ ├── terminate.frag │ ├── terminate.vert │ ├── test.frag │ ├── texture.frag │ ├── textureQueryLOD.frag │ ├── textureoffset_sampler2darrayshadow.vert │ ├── tokenLength.vert │ ├── tokenPaste.vert │ ├── types.frag │ ├── uint.frag │ ├── uniformArray.frag │ ├── validate-shaders.sh │ ├── variableArrayIndex.frag │ ├── varyingArray.frag │ ├── varyingArrayIndirect.frag │ ├── versionsClean.frag │ ├── versionsClean.vert │ ├── versionsErrors.frag │ ├── versionsErrors.vert │ ├── vk.relaxed.changeSet.frag │ ├── vk.relaxed.changeSet.vert │ ├── vk.relaxed.errorcheck.frag │ ├── vk.relaxed.errorcheck.vert │ ├── vk.relaxed.frag │ ├── vk.relaxed.link1.frag │ ├── vk.relaxed.link2.frag │ ├── vk.relaxed.stagelink.0.0.frag │ ├── vk.relaxed.stagelink.0.0.vert │ ├── vk.relaxed.stagelink.0.1.frag │ ├── vk.relaxed.stagelink.0.1.vert │ ├── vk.relaxed.stagelink.0.2.frag │ ├── vk.relaxed.stagelink.0.2.vert │ ├── vk.relaxed.stagelink.frag │ ├── vk.relaxed.stagelink.vert │ ├── voidFunction.frag │ ├── vulkan.ast.vert │ ├── vulkan.comp │ ├── vulkan.frag │ ├── vulkan.vert │ ├── web.array.frag │ ├── web.basic.vert │ ├── web.builtins.frag │ ├── web.builtins.vert │ ├── web.comp │ ├── web.controlFlow.frag │ ├── web.operations.frag │ ├── web.runtests │ ├── web.separate.frag │ ├── web.testlist │ ├── web.texture.frag │ ├── whileLoop.frag │ ├── xfbUnsizedArray.error.tese │ └── xfbUnsizedArray.error.vert ├── WORKSPACE ├── _config.yml ├── build_info.h.tmpl ├── build_info.py ├── build_overrides │ ├── build.gni │ ├── glslang.gni │ └── spirv_tools.gni ├── gen_extension_headers.py ├── glslang │ ├── CInterface │ │ └── glslang_c_interface.cpp │ ├── CMakeLists.txt │ ├── ExtensionHeaders │ │ └── GL_EXT_shader_realtime_clock.glsl │ ├── GenericCodeGen │ │ ├── CodeGen.cpp │ │ └── Link.cpp │ ├── HLSL │ │ ├── hlslAttributes.cpp │ │ ├── hlslAttributes.h │ │ ├── hlslGrammar.cpp │ │ ├── hlslGrammar.h │ │ ├── hlslOpMap.cpp │ │ ├── hlslOpMap.h │ │ ├── hlslParseHelper.cpp │ │ ├── hlslParseHelper.h │ │ ├── hlslParseables.cpp │ │ ├── hlslParseables.h │ │ ├── hlslScanContext.cpp │ │ ├── hlslScanContext.h │ │ ├── hlslTokenStream.cpp │ │ ├── hlslTokenStream.h │ │ ├── hlslTokens.h │ │ └── pch.h │ ├── Include │ │ ├── BaseTypes.h │ │ ├── Common.h │ │ ├── ConstantUnion.h │ │ ├── InfoSink.h │ │ ├── InitializeGlobals.h │ │ ├── PoolAlloc.h │ │ ├── ResourceLimits.h │ │ ├── ShHandle.h │ │ ├── SpirvIntrinsics.h │ │ ├── Types.h │ │ ├── arrays.h │ │ ├── glslang_c_interface.h │ │ ├── glslang_c_shader_types.h │ │ └── intermediate.h │ ├── MachineIndependent │ │ ├── Constant.cpp │ │ ├── InfoSink.cpp │ │ ├── Initialize.cpp │ │ ├── Initialize.h │ │ ├── IntermTraverse.cpp │ │ ├── Intermediate.cpp │ │ ├── LiveTraverser.h │ │ ├── ParseContextBase.cpp │ │ ├── ParseHelper.cpp │ │ ├── ParseHelper.h │ │ ├── PoolAlloc.cpp │ │ ├── RemoveTree.cpp │ │ ├── RemoveTree.h │ │ ├── Scan.cpp │ │ ├── Scan.h │ │ ├── ScanContext.h │ │ ├── ShaderLang.cpp │ │ ├── SpirvIntrinsics.cpp │ │ ├── SymbolTable.cpp │ │ ├── SymbolTable.h │ │ ├── Versions.cpp │ │ ├── Versions.h │ │ ├── attribute.cpp │ │ ├── attribute.h │ │ ├── gl_types.h │ │ ├── glslang.m4 │ │ ├── glslang.y │ │ ├── glslang_tab.cpp │ │ ├── glslang_tab.cpp.h │ │ ├── intermOut.cpp │ │ ├── iomapper.cpp │ │ ├── iomapper.h │ │ ├── limits.cpp │ │ ├── linkValidate.cpp │ │ ├── localintermediate.h │ │ ├── parseConst.cpp │ │ ├── parseVersions.h │ │ ├── pch.h │ │ ├── preprocessor │ │ │ ├── Pp.cpp │ │ │ ├── PpAtom.cpp │ │ │ ├── PpContext.cpp │ │ │ ├── PpContext.h │ │ │ ├── PpScanner.cpp │ │ │ ├── PpTokens.cpp │ │ │ └── PpTokens.h │ │ ├── propagateNoContraction.cpp │ │ ├── propagateNoContraction.h │ │ ├── reflection.cpp │ │ └── reflection.h │ ├── OSDependent │ │ ├── Unix │ │ │ ├── CMakeLists.txt │ │ │ └── ossource.cpp │ │ ├── Web │ │ │ ├── CMakeLists.txt │ │ │ ├── glslang.after.js │ │ │ ├── glslang.js.cpp │ │ │ └── glslang.pre.js │ │ ├── Windows │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── ossource.cpp │ │ └── osinclude.h │ ├── Public │ │ ├── ResourceLimits.h │ │ ├── ShaderLang.h │ │ └── resource_limits_c.h │ ├── ResourceLimits │ │ ├── ResourceLimits.cpp │ │ └── resource_limits_c.cpp │ └── updateGrammar ├── gtests │ ├── AST.FromFile.cpp │ ├── BuiltInResource.FromFile.cpp │ ├── CMakeLists.txt │ ├── Common.cpp │ ├── Config.FromFile.cpp │ ├── GlslMapIO.FromFile.cpp │ ├── HexFloat.cpp │ ├── Hlsl.FromFile.cpp │ ├── Initializer.h │ ├── Link.FromFile.Vk.cpp │ ├── Link.FromFile.cpp │ ├── Pp.FromFile.cpp │ ├── README.md │ ├── Remap.FromFile.cpp │ ├── Settings.cpp │ ├── Settings.h │ ├── Spv.FromFile.cpp │ ├── TestFixture.cpp │ ├── TestFixture.h │ ├── VkRelaxed.FromFile.cpp │ ├── main.cpp │ └── pch.h ├── hlsl │ ├── CMakeLists.txt │ └── stub.cpp ├── known_good.json ├── known_good_khr.json ├── kokoro │ ├── android-ndk-build │ │ ├── build-docker.sh │ │ ├── build.sh │ │ ├── continuous.cfg │ │ └── presubmit.cfg │ ├── license-check │ │ ├── build-docker.sh │ │ ├── build.sh │ │ ├── continuous.cfg │ │ └── presubmit.cfg │ ├── linux-clang-cmake │ │ ├── build-docker.sh │ │ ├── build.sh │ │ ├── shared │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ └── static │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ ├── linux-clang-gn │ │ ├── build-docker.sh │ │ ├── build.sh │ │ ├── continuous.cfg │ │ └── presubmit.cfg │ ├── linux-clang-release-bazel │ │ ├── build.sh │ │ ├── continuous.cfg │ │ └── presubmit.cfg │ ├── linux-gcc-cmake │ │ ├── build-docker.sh │ │ ├── build.sh │ │ ├── shared │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ └── static │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ ├── macos-clang-release-bazel │ │ ├── build.sh │ │ ├── continuous.cfg │ │ └── presubmit.cfg │ └── windows-msvc-2015-release-bazel │ │ ├── build.bat │ │ ├── continuous.cfg │ │ └── presubmit.cfg ├── license-checker.cfg ├── ndk_test │ ├── Android.mk │ ├── jni │ │ └── Application.mk │ └── test.cpp ├── parse_version.cmake ├── standalone.gclient └── update_glslang_sources.py ├── imgui ├── LICENSE ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_sdl.cpp ├── imgui_impl_sdl.h ├── imgui_impl_vulkan.cpp ├── imgui_impl_vulkan.h ├── imgui_internal.h ├── imgui_tables.cpp ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── spherical_harmonics ├── AUTHORS ├── CONTRIBUTING ├── CONTRIBUTORS ├── LICENSE ├── LICENSE_HEADER ├── README.md ├── WORKSPACE ├── default_image.cc ├── default_image.h ├── image.h ├── spherical_harmonics.cc └── spherical_harmonics.h ├── stb_image ├── LICENSE └── stb_image.h ├── tinygltf ├── LICENSE ├── json.hpp ├── stb_image_write.h └── tiny_gltf.h ├── tinyobjloader ├── LICENSE ├── tiny_obj_loader.cc └── tiny_obj_loader.h ├── vkbootstrap ├── LICENSE ├── VkBootstrap.cpp ├── VkBootstrap.h └── VkBootstrapDispatch.h ├── vma ├── LICENSE └── vk_mem_alloc.h ├── volk ├── volk.c └── volk.h └── xatlas ├── LICENSE ├── xatlas.cpp └── xatlas.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/README.md -------------------------------------------------------------------------------- /assets/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/LICENSE.txt -------------------------------------------------------------------------------- /assets/bedroom/Teapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/bedroom/Teapot.png -------------------------------------------------------------------------------- /assets/bedroom/bedroom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/bedroom/bedroom.bin -------------------------------------------------------------------------------- /assets/bedroom/bedroom.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/bedroom/bedroom.gltf -------------------------------------------------------------------------------- /assets/bedroom/panel-wood-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/bedroom/panel-wood-3.jpg -------------------------------------------------------------------------------- /assets/bedroom/wallpaper-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/bedroom/wallpaper-1.jpg -------------------------------------------------------------------------------- /assets/bedroom/wood4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/bedroom/wood4.jpg -------------------------------------------------------------------------------- /assets/cornellFixed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/cornellFixed.bin -------------------------------------------------------------------------------- /assets/cornellFixed.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/cornellFixed.gltf -------------------------------------------------------------------------------- /assets/cornellsuzanne.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/cornellsuzanne.bin -------------------------------------------------------------------------------- /assets/cornellsuzanne.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/cornellsuzanne.gltf -------------------------------------------------------------------------------- /assets/livingroom/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/livingroom/leaf.png -------------------------------------------------------------------------------- /assets/livingroom/livingroom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/livingroom/livingroom.bin -------------------------------------------------------------------------------- /assets/livingroom/livingroom.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/livingroom/livingroom.gltf -------------------------------------------------------------------------------- /assets/livingroom/picture8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/livingroom/picture8.jpg -------------------------------------------------------------------------------- /assets/livingroom/wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/livingroom/wood.jpg -------------------------------------------------------------------------------- /assets/livingroom/wood5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/livingroom/wood5.jpg -------------------------------------------------------------------------------- /assets/occluderscene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/occluderscene.bin -------------------------------------------------------------------------------- /assets/occluderscene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/occluderscene.gltf -------------------------------------------------------------------------------- /assets/picapica/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/picapica/scene.bin -------------------------------------------------------------------------------- /assets/picapica/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/picapica/scene.gltf -------------------------------------------------------------------------------- /assets/reflection_new.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/reflection_new.bin -------------------------------------------------------------------------------- /assets/reflection_new.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/reflection_new.gltf -------------------------------------------------------------------------------- /assets/roughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/roughness.png -------------------------------------------------------------------------------- /assets/shtest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/shtest.bin -------------------------------------------------------------------------------- /assets/shtest.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/assets/shtest.gltf -------------------------------------------------------------------------------- /data/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/data/LICENSE.txt -------------------------------------------------------------------------------- /data/blue_noise/sobol_256_4d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/data/blue_noise/sobol_256_4d.png -------------------------------------------------------------------------------- /data/brdf_lut.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/data/brdf_lut.bin -------------------------------------------------------------------------------- /images/bedroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/images/bedroom.png -------------------------------------------------------------------------------- /images/causticsdemo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/images/causticsdemo1.png -------------------------------------------------------------------------------- /images/cornell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/images/cornell.png -------------------------------------------------------------------------------- /images/livingroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/images/livingroom.png -------------------------------------------------------------------------------- /images/picapica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/images/picapica.png -------------------------------------------------------------------------------- /images/reflectiondemo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/images/reflectiondemo1.png -------------------------------------------------------------------------------- /images/ssrreflections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/images/ssrreflections.png -------------------------------------------------------------------------------- /precomputation/precalculation.Probes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/precomputation/precalculation.Probes -------------------------------------------------------------------------------- /precomputation/precalculation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/precomputation/precalculation.cfg -------------------------------------------------------------------------------- /precomputation/receiver_image.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/precomputation/receiver_image.bin -------------------------------------------------------------------------------- /shaders/brdf.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/brdf.glsl -------------------------------------------------------------------------------- /shaders/common.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/common.glsl -------------------------------------------------------------------------------- /shaders/debug_unlit.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/debug_unlit.frag -------------------------------------------------------------------------------- /shaders/debug_unlit.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/debug_unlit.vert -------------------------------------------------------------------------------- /shaders/deferred.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/deferred.frag -------------------------------------------------------------------------------- /shaders/diffuse_probes/lightmap.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/diffuse_probes/lightmap.frag -------------------------------------------------------------------------------- /shaders/diffuse_probes/lightmap.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/diffuse_probes/lightmap.vert -------------------------------------------------------------------------------- /shaders/dilate.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/dilate.frag -------------------------------------------------------------------------------- /shaders/fullscreen.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/fullscreen.vert -------------------------------------------------------------------------------- /shaders/gamma.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/gamma.frag -------------------------------------------------------------------------------- /shaders/gaussblur.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/gaussblur.frag -------------------------------------------------------------------------------- /shaders/gbuffer.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/gbuffer.frag -------------------------------------------------------------------------------- /shaders/gbuffer.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/gbuffer.vert -------------------------------------------------------------------------------- /shaders/reflections/reflections_rt.rchit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/reflections/reflections_rt.rchit -------------------------------------------------------------------------------- /shaders/reflections/reflections_rt.rgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/reflections/reflections_rt.rgen -------------------------------------------------------------------------------- /shaders/reflections/reflections_rt.rmiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/reflections/reflections_rt.rmiss -------------------------------------------------------------------------------- /shaders/reflections_svgf/svgf_variance.comp: -------------------------------------------------------------------------------- 1 | #version 460 2 | 3 | void main() 4 | { 5 | } -------------------------------------------------------------------------------- /shaders/restir_gi/restir_initial_buffer.rgen: -------------------------------------------------------------------------------- 1 | #version 460 2 | 3 | void main() 4 | { 5 | } -------------------------------------------------------------------------------- /shaders/shadow_mapping/evsm.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/shadow_mapping/evsm.frag -------------------------------------------------------------------------------- /shaders/shadow_mapping/evsm.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/shadow_mapping/evsm.vert -------------------------------------------------------------------------------- /shaders/shadow_mapping/shadow.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/shaders/shadow_mapping/shadow.glsl -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/editor/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/editor/editor.cpp -------------------------------------------------------------------------------- /src/editor/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/editor/editor.h -------------------------------------------------------------------------------- /src/editor/editor_renderer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/editor/editor_renderer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/file_helper.h -------------------------------------------------------------------------------- /src/gi_brdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_brdf.cpp -------------------------------------------------------------------------------- /src/gi_brdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_brdf.h -------------------------------------------------------------------------------- /src/gi_deferred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_deferred.cpp -------------------------------------------------------------------------------- /src/gi_deferred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_deferred.h -------------------------------------------------------------------------------- /src/gi_diffuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_diffuse.cpp -------------------------------------------------------------------------------- /src/gi_diffuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_diffuse.h -------------------------------------------------------------------------------- /src/gi_gbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_gbuffer.cpp -------------------------------------------------------------------------------- /src/gi_gbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_gbuffer.h -------------------------------------------------------------------------------- /src/gi_glossy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_glossy.cpp -------------------------------------------------------------------------------- /src/gi_glossy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_glossy.h -------------------------------------------------------------------------------- /src/gi_glossy_svgf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_glossy_svgf.cpp -------------------------------------------------------------------------------- /src/gi_glossy_svgf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_glossy_svgf.h -------------------------------------------------------------------------------- /src/gi_shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_shadow.cpp -------------------------------------------------------------------------------- /src/gi_shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gi_shadow.h -------------------------------------------------------------------------------- /src/gltf_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gltf_scene.cpp -------------------------------------------------------------------------------- /src/gltf_scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/gltf_scene.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/memory/frame_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/memory/frame_allocator.cpp -------------------------------------------------------------------------------- /src/memory/frame_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/memory/frame_allocator.h -------------------------------------------------------------------------------- /src/memory/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/memory/handle.h -------------------------------------------------------------------------------- /src/memory/handle_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/memory/handle_pool.h -------------------------------------------------------------------------------- /src/memory/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/memory/slice.h -------------------------------------------------------------------------------- /src/precalculation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/precalculation.cpp -------------------------------------------------------------------------------- /src/precalculation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/precalculation.h -------------------------------------------------------------------------------- /src/precalculation_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/precalculation_types.h -------------------------------------------------------------------------------- /src/redsvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/redsvd.h -------------------------------------------------------------------------------- /src/triangle_box_intersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/triangle_box_intersection.h -------------------------------------------------------------------------------- /src/vk_cache.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vk_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_cache.h -------------------------------------------------------------------------------- /src/vk_compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_compute.cpp -------------------------------------------------------------------------------- /src/vk_compute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_compute.h -------------------------------------------------------------------------------- /src/vk_debug_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_debug_renderer.cpp -------------------------------------------------------------------------------- /src/vk_debug_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_debug_renderer.h -------------------------------------------------------------------------------- /src/vk_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_engine.cpp -------------------------------------------------------------------------------- /src/vk_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_engine.h -------------------------------------------------------------------------------- /src/vk_extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_extensions.cpp -------------------------------------------------------------------------------- /src/vk_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_extensions.h -------------------------------------------------------------------------------- /src/vk_initializers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_initializers.cpp -------------------------------------------------------------------------------- /src/vk_initializers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_initializers.h -------------------------------------------------------------------------------- /src/vk_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_pipeline.cpp -------------------------------------------------------------------------------- /src/vk_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_pipeline.h -------------------------------------------------------------------------------- /src/vk_raytracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_raytracing.cpp -------------------------------------------------------------------------------- /src/vk_raytracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_raytracing.h -------------------------------------------------------------------------------- /src/vk_rendergraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_rendergraph.cpp -------------------------------------------------------------------------------- /src/vk_rendergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_rendergraph.h -------------------------------------------------------------------------------- /src/vk_rendergraph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_rendergraph_types.h -------------------------------------------------------------------------------- /src/vk_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_shader.cpp -------------------------------------------------------------------------------- /src/vk_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_shader.h -------------------------------------------------------------------------------- /src/vk_super_res.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_super_res.cpp -------------------------------------------------------------------------------- /src/vk_super_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_super_res.h -------------------------------------------------------------------------------- /src/vk_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_timer.cpp -------------------------------------------------------------------------------- /src/vk_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_timer.h -------------------------------------------------------------------------------- /src/vk_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_types.h -------------------------------------------------------------------------------- /src/vk_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_utils.cpp -------------------------------------------------------------------------------- /src/vk_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/src/vk_utils.h -------------------------------------------------------------------------------- /third_party/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/eigen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/.gitignore -------------------------------------------------------------------------------- /third_party/eigen/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/.gitlab-ci.yml -------------------------------------------------------------------------------- /third_party/eigen/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/.hgeol -------------------------------------------------------------------------------- /third_party/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/eigen/COPYING.APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/COPYING.APACHE -------------------------------------------------------------------------------- /third_party/eigen/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/COPYING.BSD -------------------------------------------------------------------------------- /third_party/eigen/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/COPYING.GPL -------------------------------------------------------------------------------- /third_party/eigen/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/COPYING.LGPL -------------------------------------------------------------------------------- /third_party/eigen/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/COPYING.MINPACK -------------------------------------------------------------------------------- /third_party/eigen/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/COPYING.MPL2 -------------------------------------------------------------------------------- /third_party/eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/COPYING.README -------------------------------------------------------------------------------- /third_party/eigen/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/CTestConfig.cmake -------------------------------------------------------------------------------- /third_party/eigen/CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/CTestCustom.cmake.in -------------------------------------------------------------------------------- /third_party/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /third_party/eigen/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/CholmodSupport -------------------------------------------------------------------------------- /third_party/eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/Dense -------------------------------------------------------------------------------- /third_party/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/Eigen -------------------------------------------------------------------------------- /third_party/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /third_party/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/Geometry -------------------------------------------------------------------------------- /third_party/eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/Householder -------------------------------------------------------------------------------- /third_party/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /third_party/eigen/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/KLUSupport -------------------------------------------------------------------------------- /third_party/eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/LU -------------------------------------------------------------------------------- /third_party/eigen/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/MetisSupport -------------------------------------------------------------------------------- /third_party/eigen/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/OrderingMethods -------------------------------------------------------------------------------- /third_party/eigen/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /third_party/eigen/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/PardisoSupport -------------------------------------------------------------------------------- /third_party/eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/QR -------------------------------------------------------------------------------- /third_party/eigen/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /third_party/eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/SPQRSupport -------------------------------------------------------------------------------- /third_party/eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/SVD -------------------------------------------------------------------------------- /third_party/eigen/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/Sparse -------------------------------------------------------------------------------- /third_party/eigen/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/SparseCholesky -------------------------------------------------------------------------------- /third_party/eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/SparseCore -------------------------------------------------------------------------------- /third_party/eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/SparseLU -------------------------------------------------------------------------------- /third_party/eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/SparseQR -------------------------------------------------------------------------------- /third_party/eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/StdDeque -------------------------------------------------------------------------------- /third_party/eigen/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/StdList -------------------------------------------------------------------------------- /third_party/eigen/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/StdVector -------------------------------------------------------------------------------- /third_party/eigen/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /third_party/eigen/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /third_party/eigen/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /third_party/eigen/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /third_party/eigen/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /third_party/eigen/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/INSTALL -------------------------------------------------------------------------------- /third_party/eigen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/README.md -------------------------------------------------------------------------------- /third_party/eigen/bench/BenchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/BenchTimer.h -------------------------------------------------------------------------------- /third_party/eigen/bench/BenchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/BenchUtil.h -------------------------------------------------------------------------------- /third_party/eigen/bench/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/README.txt -------------------------------------------------------------------------------- /third_party/eigen/bench/basicbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/basicbenchmark.h -------------------------------------------------------------------------------- /third_party/eigen/bench/benchFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/benchFFT.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/benchVecAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/benchVecAdd.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/bench_gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/bench_gemm.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/bench_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/bench_norm.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/bench_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/bench_sum.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/bench_unrolling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/bench_unrolling -------------------------------------------------------------------------------- /third_party/eigen/bench/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/benchmark.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/benchmarkX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/benchmarkX.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/benchmark_suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/benchmark_suite -------------------------------------------------------------------------------- /third_party/eigen/bench/btl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/btl/COPYING -------------------------------------------------------------------------------- /third_party/eigen/bench/btl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/btl/README -------------------------------------------------------------------------------- /third_party/eigen/bench/btl/data/go_mean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/btl/data/go_mean -------------------------------------------------------------------------------- /third_party/eigen/bench/eig33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/eig33.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/geometry.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/quat_slerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/quat_slerp.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/quatmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/quatmul.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/sparse_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/sparse_lu.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/spmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/spmv.cpp -------------------------------------------------------------------------------- /third_party/eigen/bench/tensors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/tensors/README -------------------------------------------------------------------------------- /third_party/eigen/bench/vdw_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/bench/vdw_new.cpp -------------------------------------------------------------------------------- /third_party/eigen/blas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/eigen/blas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/README.txt -------------------------------------------------------------------------------- /third_party/eigen/blas/Rank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/Rank2Update.h -------------------------------------------------------------------------------- /third_party/eigen/blas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/common.h -------------------------------------------------------------------------------- /third_party/eigen/blas/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/double.cpp -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/chbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/chbmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/chpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/chpmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/complexdots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/complexdots.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/ctbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/ctbmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/d_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/d_cnjg.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/datatypes.h -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/drotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/drotm.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/drotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/drotmg.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/dsbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/dsbmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/dspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/dspmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/dtbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/dtbmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/lsame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/lsame.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/r_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/r_cnjg.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/srotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/srotm.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/srotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/srotmg.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/ssbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/ssbmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/sspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/sspmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/stbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/stbmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/zhbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/zhbmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/zhpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/zhpmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/f2c/ztbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/f2c/ztbmv.c -------------------------------------------------------------------------------- /third_party/eigen/blas/level1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/level1_impl.h -------------------------------------------------------------------------------- /third_party/eigen/blas/level2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/level2_impl.h -------------------------------------------------------------------------------- /third_party/eigen/blas/level3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/level3_impl.h -------------------------------------------------------------------------------- /third_party/eigen/blas/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/single.cpp -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/cblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/cblat1.f -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/cblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/cblat2.f -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/cblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/cblat3.f -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/dblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/dblat1.f -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/dblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/dblat2.f -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/dblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/dblat3.f -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/sblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/sblat1.f -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/sblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/sblat2.f -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/sblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/sblat3.f -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/zblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/zblat1.f -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/zblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/zblat2.f -------------------------------------------------------------------------------- /third_party/eigen/blas/testing/zblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/testing/zblat3.f -------------------------------------------------------------------------------- /third_party/eigen/blas/xerbla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/blas/xerbla.cpp -------------------------------------------------------------------------------- /third_party/eigen/ci/CTest2JUnit.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/ci/CTest2JUnit.xsl -------------------------------------------------------------------------------- /third_party/eigen/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/ci/README.md -------------------------------------------------------------------------------- /third_party/eigen/ci/build.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/ci/build.gitlab-ci.yml -------------------------------------------------------------------------------- /third_party/eigen/ci/test.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/ci/test.gitlab-ci.yml -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindAdolc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindAdolc.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindBLAS.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindEigen2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindEigen2.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindFFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindFFTW.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindGMP.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindGSL.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindHWLOC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindHWLOC.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindKLU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindKLU.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindLAPACK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindLAPACK.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindMPFR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindMPFR.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindMPREAL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindMPREAL.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindMetis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindMetis.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindPASTIX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindPASTIX.cmake -------------------------------------------------------------------------------- /third_party/eigen/cmake/FindSPQR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/cmake/FindSPQR.cmake -------------------------------------------------------------------------------- /third_party/eigen/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /third_party/eigen/demos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/demos/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/eigen/demos/opengl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/demos/opengl/README -------------------------------------------------------------------------------- /third_party/eigen/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/eigen/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/Doxyfile.in -------------------------------------------------------------------------------- /third_party/eigen/doc/LeastSquares.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/LeastSquares.dox -------------------------------------------------------------------------------- /third_party/eigen/doc/Manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/Manual.dox -------------------------------------------------------------------------------- /third_party/eigen/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/Overview.dox -------------------------------------------------------------------------------- /third_party/eigen/doc/Pitfalls.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/Pitfalls.dox -------------------------------------------------------------------------------- /third_party/eigen/doc/TutorialSTL.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/TutorialSTL.dox -------------------------------------------------------------------------------- /third_party/eigen/doc/UsingNVCC.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/UsingNVCC.dox -------------------------------------------------------------------------------- /third_party/eigen/doc/eigendoxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/eigendoxy.css -------------------------------------------------------------------------------- /third_party/eigen/doc/examples/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/examples/.krazy -------------------------------------------------------------------------------- /third_party/eigen/doc/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/ftv2node.png -------------------------------------------------------------------------------- /third_party/eigen/doc/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/ftv2pnode.png -------------------------------------------------------------------------------- /third_party/eigen/doc/snippets/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/snippets/.krazy -------------------------------------------------------------------------------- /third_party/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp: -------------------------------------------------------------------------------- 1 | Vector3d v(1,2,4); 2 | cout << v.cwiseSqrt() << endl; 3 | -------------------------------------------------------------------------------- /third_party/eigen/doc/snippets/MatrixBase_identity.cpp: -------------------------------------------------------------------------------- 1 | cout << Matrix::Identity() << endl; 2 | -------------------------------------------------------------------------------- /third_party/eigen/doc/snippets/MatrixBase_identity_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXd::Identity(4, 3) << endl; 2 | -------------------------------------------------------------------------------- /third_party/eigen/doc/snippets/MatrixBase_ones_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Ones(2,3) << endl; 2 | -------------------------------------------------------------------------------- /third_party/eigen/doc/snippets/MatrixBase_random.cpp: -------------------------------------------------------------------------------- 1 | cout << 100 * Matrix2i::Random() << endl; 2 | -------------------------------------------------------------------------------- /third_party/eigen/doc/snippets/MatrixBase_random_int.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::Random(2) << endl; 2 | -------------------------------------------------------------------------------- /third_party/eigen/doc/snippets/MatrixBase_random_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Random(2,3) << endl; 2 | -------------------------------------------------------------------------------- /third_party/eigen/doc/snippets/MatrixBase_zero_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Zero(2,3) << endl; 2 | -------------------------------------------------------------------------------- /third_party/eigen/doc/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/doc/tutorial.cpp -------------------------------------------------------------------------------- /third_party/eigen/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/eigen3.pc.in -------------------------------------------------------------------------------- /third_party/eigen/failtest/llt_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/failtest/llt_int.cpp -------------------------------------------------------------------------------- /third_party/eigen/failtest/qr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/failtest/qr_int.cpp -------------------------------------------------------------------------------- /third_party/eigen/failtest/ref_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/failtest/ref_1.cpp -------------------------------------------------------------------------------- /third_party/eigen/failtest/ref_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/failtest/ref_2.cpp -------------------------------------------------------------------------------- /third_party/eigen/failtest/ref_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/failtest/ref_3.cpp -------------------------------------------------------------------------------- /third_party/eigen/failtest/ref_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/failtest/ref_4.cpp -------------------------------------------------------------------------------- /third_party/eigen/failtest/ref_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/failtest/ref_5.cpp -------------------------------------------------------------------------------- /third_party/eigen/failtest/swap_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/failtest/swap_1.cpp -------------------------------------------------------------------------------- /third_party/eigen/failtest/swap_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/failtest/swap_2.cpp -------------------------------------------------------------------------------- /third_party/eigen/lapack/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/cholesky.cpp -------------------------------------------------------------------------------- /third_party/eigen/lapack/clacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/clacgv.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/cladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/cladiv.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/clarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/clarf.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/clarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/clarfb.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/clarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/clarfg.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/clarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/clarft.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/dladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/dladiv.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/dlamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/dlamch.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/dlapy2.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/dlapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/dlapy3.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/dlarf.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/dlarfb.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/dlarfg.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/dlarft.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/double.cpp -------------------------------------------------------------------------------- /third_party/eigen/lapack/dsecnd_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/dsecnd_NONE.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/ilaclc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/ilaclc.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/ilaclr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/ilaclr.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/iladlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/iladlc.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/iladlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/iladlr.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/ilaslc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/ilaslc.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/ilaslr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/ilaslr.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/ilazlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/ilazlc.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/ilazlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/ilazlr.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/lu.cpp -------------------------------------------------------------------------------- /third_party/eigen/lapack/second_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/second_NONE.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/single.cpp -------------------------------------------------------------------------------- /third_party/eigen/lapack/sladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/sladiv.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/slamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/slamch.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/slapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/slapy2.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/slapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/slapy3.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/slarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/slarf.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/slarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/slarfb.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/slarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/slarfg.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/slarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/slarft.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/svd.cpp -------------------------------------------------------------------------------- /third_party/eigen/lapack/zlacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/zlacgv.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/zladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/zladiv.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/zlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/zlarf.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/zlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/zlarfb.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/zlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/zlarfg.f -------------------------------------------------------------------------------- /third_party/eigen/lapack/zlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/lapack/zlarft.f -------------------------------------------------------------------------------- /third_party/eigen/scripts/check.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/scripts/check.in -------------------------------------------------------------------------------- /third_party/eigen/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /third_party/eigen/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /third_party/eigen/scripts/relicense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/scripts/relicense.py -------------------------------------------------------------------------------- /third_party/eigen/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/eigen/test/MovableScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/MovableScalar.h -------------------------------------------------------------------------------- /third_party/eigen/test/SafeScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/SafeScalar.h -------------------------------------------------------------------------------- /third_party/eigen/test/adjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/adjoint.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/array_cwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/array_cwise.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/bandmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/bandmatrix.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/basicstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/basicstuff.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/bdcsvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/bdcsvd.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/bicgstab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/bicgstab.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/blasutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/blasutil.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/block.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/bug1213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/bug1213.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/bug1213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/bug1213.h -------------------------------------------------------------------------------- /third_party/eigen/test/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/cholesky.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/constructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/constructor.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/corners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/corners.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/ctorleak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/ctorleak.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/denseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/denseLM.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/determinant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/determinant.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/diagonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/diagonal.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/dontalign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/dontalign.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/dynalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/dynalloc.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/eigen/test/evaluators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/evaluators.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/exceptions.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/fastmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/fastmath.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/gpu_basic.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/gpu_basic.cu -------------------------------------------------------------------------------- /third_party/eigen/test/gpu_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/gpu_common.h -------------------------------------------------------------------------------- /third_party/eigen/test/half_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/half_float.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/hessenberg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/hessenberg.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/householder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/householder.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/inverse.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/io.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/jacobi.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/jacobisvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/jacobisvd.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/klu_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/klu_support.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/lscg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/lscg.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/lu.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/main.h -------------------------------------------------------------------------------- /third_party/eigen/test/mapstride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/mapstride.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/meta.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/mixingtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/mixingtypes.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/mpl2only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/mpl2only.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/nestbyvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/nestbyvalue.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/nesting_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/nesting_ops.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/nomalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/nomalloc.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/nullary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/nullary.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/numext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/numext.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/packetmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/packetmath.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/product.h -------------------------------------------------------------------------------- /third_party/eigen/test/qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/qr.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/qtvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/qtvector.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/rand.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/real_qz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/real_qz.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/redux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/redux.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/ref.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/reshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/reshape.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/resize.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/schur_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/schur_real.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/selfadjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/selfadjoint.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/sizeof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/sizeof.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/solverbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/solverbase.h -------------------------------------------------------------------------------- /third_party/eigen/test/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/sparse.h -------------------------------------------------------------------------------- /third_party/eigen/test/sparseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/sparseLM.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/sparse_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/sparse_ref.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/sparse_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/sparse_solver.h -------------------------------------------------------------------------------- /third_party/eigen/test/sparselu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/sparselu.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/sparseqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/sparseqr.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/stable_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/stable_norm.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/stddeque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/stddeque.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/stdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/stdlist.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/stdvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/stdvector.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/svd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/svd_common.h -------------------------------------------------------------------------------- /third_party/eigen/test/svd_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/svd_fill.h -------------------------------------------------------------------------------- /third_party/eigen/test/swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/swap.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/triangular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/triangular.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/type_alias.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/type_alias.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/umeyama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/umeyama.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/visitor.cpp -------------------------------------------------------------------------------- /third_party/eigen/test/zerosized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/eigen/test/zerosized.cpp -------------------------------------------------------------------------------- /third_party/fsr2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fsr2/ffx_assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/ffx_assert.cpp -------------------------------------------------------------------------------- /third_party/fsr2/ffx_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/ffx_assert.h -------------------------------------------------------------------------------- /third_party/fsr2/ffx_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/ffx_error.h -------------------------------------------------------------------------------- /third_party/fsr2/ffx_fsr2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/ffx_fsr2.cpp -------------------------------------------------------------------------------- /third_party/fsr2/ffx_fsr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/ffx_fsr2.h -------------------------------------------------------------------------------- /third_party/fsr2/ffx_fsr2_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/ffx_fsr2_interface.h -------------------------------------------------------------------------------- /third_party/fsr2/ffx_fsr2_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/ffx_fsr2_private.h -------------------------------------------------------------------------------- /third_party/fsr2/ffx_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/ffx_types.h -------------------------------------------------------------------------------- /third_party/fsr2/ffx_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/ffx_util.h -------------------------------------------------------------------------------- /third_party/fsr2/shaders/ffx_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/shaders/ffx_core.h -------------------------------------------------------------------------------- /third_party/fsr2/shaders/ffx_fsr1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/shaders/ffx_fsr1.h -------------------------------------------------------------------------------- /third_party/fsr2/shaders/ffx_spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/shaders/ffx_spd.h -------------------------------------------------------------------------------- /third_party/fsr2/tools/sc/dxil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/tools/sc/dxil.dll -------------------------------------------------------------------------------- /third_party/fsr2/vk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/vk/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/fsr2/vk/ffx_fsr2_vk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/vk/ffx_fsr2_vk.cpp -------------------------------------------------------------------------------- /third_party/fsr2/vk/ffx_fsr2_vk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/fsr2/vk/ffx_fsr2_vk.h -------------------------------------------------------------------------------- /third_party/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/glm/glm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/LICENSE -------------------------------------------------------------------------------- /third_party/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/common.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /third_party/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/ext.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /third_party/glm/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /third_party/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/glm.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/functions.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/texture.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /third_party/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/integer.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/packing.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/simd/common.h -------------------------------------------------------------------------------- /third_party/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/simd/exponential.h -------------------------------------------------------------------------------- /third_party/glm/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/simd/geometric.h -------------------------------------------------------------------------------- /third_party/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /third_party/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /third_party/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /third_party/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /third_party/glm/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/simd/platform.h -------------------------------------------------------------------------------- /third_party/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /third_party/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /third_party/glslang/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/.appveyor.yml -------------------------------------------------------------------------------- /third_party/glslang/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/.clang-format -------------------------------------------------------------------------------- /third_party/glslang/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/.gitattributes -------------------------------------------------------------------------------- /third_party/glslang/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/.gitignore -------------------------------------------------------------------------------- /third_party/glslang/.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/.gn -------------------------------------------------------------------------------- /third_party/glslang/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Android.mk -------------------------------------------------------------------------------- /third_party/glslang/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/BUILD.bazel -------------------------------------------------------------------------------- /third_party/glslang/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/BUILD.gn -------------------------------------------------------------------------------- /third_party/glslang/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/CHANGES.md -------------------------------------------------------------------------------- /third_party/glslang/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/glslang/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /third_party/glslang/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/DEPS -------------------------------------------------------------------------------- /third_party/glslang/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/LICENSE.txt -------------------------------------------------------------------------------- /third_party/glslang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/README.md -------------------------------------------------------------------------------- /third_party/glslang/SPIRV/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/SPIRV/Logger.cpp -------------------------------------------------------------------------------- /third_party/glslang/SPIRV/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/SPIRV/Logger.h -------------------------------------------------------------------------------- /third_party/glslang/SPIRV/SpvBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/SPIRV/SpvBuilder.h -------------------------------------------------------------------------------- /third_party/glslang/SPIRV/SpvTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/SPIRV/SpvTools.cpp -------------------------------------------------------------------------------- /third_party/glslang/SPIRV/SpvTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/SPIRV/SpvTools.h -------------------------------------------------------------------------------- /third_party/glslang/SPIRV/bitutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/SPIRV/bitutils.h -------------------------------------------------------------------------------- /third_party/glslang/SPIRV/doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/SPIRV/doc.cpp -------------------------------------------------------------------------------- /third_party/glslang/SPIRV/doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/SPIRV/doc.h -------------------------------------------------------------------------------- /third_party/glslang/SPIRV/hex_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/SPIRV/hex_float.h -------------------------------------------------------------------------------- /third_party/glslang/SPIRV/spirv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/SPIRV/spirv.hpp -------------------------------------------------------------------------------- /third_party/glslang/SPIRV/spvIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/SPIRV/spvIR.h -------------------------------------------------------------------------------- /third_party/glslang/Test/100.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/100.conf -------------------------------------------------------------------------------- /third_party/glslang/Test/100.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/100.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/100scope.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/100scope.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/110scope.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/110scope.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/120.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/120.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/120.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/120.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/130.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/130.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/130.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/130.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/140.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/140.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/140.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/140.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/150.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/150.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/150.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/150.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/150.tesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/150.tesc -------------------------------------------------------------------------------- /third_party/glslang/Test/150.tese: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/150.tese -------------------------------------------------------------------------------- /third_party/glslang/Test/150.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/150.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/300.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/300.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/300.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/300.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/300block.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/300block.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/300link.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/300link.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/300link2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/300link2.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/300link3.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/300link3.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/300scope.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/300scope.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/310.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/310.comp -------------------------------------------------------------------------------- /third_party/glslang/Test/310.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/310.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/310.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/310.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/310.tesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/310.tesc -------------------------------------------------------------------------------- /third_party/glslang/Test/310.tese: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/310.tese -------------------------------------------------------------------------------- /third_party/glslang/Test/310.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/310.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/310AofA.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/310AofA.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/320.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/320.comp -------------------------------------------------------------------------------- /third_party/glslang/Test/320.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/320.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/320.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/320.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/320.tesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/320.tesc -------------------------------------------------------------------------------- /third_party/glslang/Test/320.tese: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/320.tese -------------------------------------------------------------------------------- /third_party/glslang/Test/320.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/320.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/330.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/330.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/330comp.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/330comp.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/400.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/400.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/400.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/400.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/400.tesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/400.tesc -------------------------------------------------------------------------------- /third_party/glslang/Test/400.tese: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/400.tese -------------------------------------------------------------------------------- /third_party/glslang/Test/400.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/400.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/410.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/410.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/410.tesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/410.tesc -------------------------------------------------------------------------------- /third_party/glslang/Test/410.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/410.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/420.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/420.comp -------------------------------------------------------------------------------- /third_party/glslang/Test/420.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/420.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/420.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/420.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/420.tesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/420.tesc -------------------------------------------------------------------------------- /third_party/glslang/Test/420.tese: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/420.tese -------------------------------------------------------------------------------- /third_party/glslang/Test/420.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/420.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/430.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/430.comp -------------------------------------------------------------------------------- /third_party/glslang/Test/430.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/430.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/430AofA.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/430AofA.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/430scope.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/430scope.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/435.vert: -------------------------------------------------------------------------------- 1 | #version 435 2 | void main() {} -------------------------------------------------------------------------------- /third_party/glslang/Test/440.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/440.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/440.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/440.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/450.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/450.comp -------------------------------------------------------------------------------- /third_party/glslang/Test/450.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/450.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/450.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/450.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/450.tesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/450.tesc -------------------------------------------------------------------------------- /third_party/glslang/Test/450.tese: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/450.tese -------------------------------------------------------------------------------- /third_party/glslang/Test/450.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/450.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/460.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/460.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/460.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/460.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/aggOps.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/aggOps.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/array.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/array.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/array100.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/array100.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/badChars.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/badChars.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/badMacroArgs.frag: -------------------------------------------------------------------------------- 1 | #version 400 2 | 3 | #define m(a) a 4 | m() -------------------------------------------------------------------------------- /third_party/glslang/Test/bar.h: -------------------------------------------------------------------------------- 1 | float4 i1; 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/glsl.versionOverride.comp.out: -------------------------------------------------------------------------------- 1 | glsl.versionOverride.comp 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/glsl.versionOverride.frag.out: -------------------------------------------------------------------------------- 1 | glsl.versionOverride.frag 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/glsl.versionOverride.geom.out: -------------------------------------------------------------------------------- 1 | glsl.versionOverride.geom 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/glsl.versionOverride.tesc.out: -------------------------------------------------------------------------------- 1 | glsl.versionOverride.tesc 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/glsl.versionOverride.tese.out: -------------------------------------------------------------------------------- 1 | glsl.versionOverride.tese 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/hlsl.pp.expand.frag.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.bad_arg.vert.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.cpp_style___FILE__.vert.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.cpp_style_line_directive.vert.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.defined.vert.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.edge_cases.vert.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.eof_missing.vert.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.eof_missing.vert.out: -------------------------------------------------------------------------------- 1 | noEOF 2 | 3 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.errors.vert.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.function_macro.vert.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.include.disabled.vert.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.include.enabled.vert.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.line.frag.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.line.vert.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.many.endif.vert.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.pragma.vert.err: -------------------------------------------------------------------------------- 1 | WARNING: 0:10: '#pragma once' : not implemented 2 | 3 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.simple.vert.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/preprocessor.success_if_parse_would_fail.vert.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/remap.invalid-spirv-1.out: -------------------------------------------------------------------------------- 1 | ID out of range: 4160749568 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/remap.invalid-spirv-2.out: -------------------------------------------------------------------------------- 1 | ID not found 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/baseResults/size: -------------------------------------------------------------------------------- 1 | 399360 ../build/install/bin/glslangValidator.exe 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/bump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/bump -------------------------------------------------------------------------------- /third_party/glslang/Test/comment.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/comment.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/compoundsuffix.vert.glsl: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | gl_Position = vec4(1.0); 4 | } -------------------------------------------------------------------------------- /third_party/glslang/Test/cppBad.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/cppBad.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/cppBad2.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/cppBad2.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/cppBad3.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/cppBad3.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/cppBad4.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/cppBad4.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/cppBad5.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/cppBad5.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/cppMerge.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/cppMerge.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/cppNest.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/cppNest.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/dataOut.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/dataOut.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/dce.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/dce.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/decls.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/decls.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/depthOut.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/depthOut.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/empty.frag: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/glslang/Test/empty2.frag: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/empty3.frag: -------------------------------------------------------------------------------- 1 | #version 110 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/errors.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/errors.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/es-link1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/es-link1.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/es-link2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/es-link2.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/foo.h: -------------------------------------------------------------------------------- 1 | #error should not be included 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/forLoop.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/forLoop.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/glspv.esversion.vert: -------------------------------------------------------------------------------- 1 | #version 310 es 2 | 3 | void main() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /third_party/glslang/Test/glspv.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/glspv.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/glspv.version.frag: -------------------------------------------------------------------------------- 1 | #version 330 compatibility 2 | 3 | void main() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /third_party/glslang/Test/glspv.version.vert: -------------------------------------------------------------------------------- 1 | #version 150 2 | 3 | void main() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /third_party/glslang/Test/glspv.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/glspv.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/hlsl.depthLess.frag: -------------------------------------------------------------------------------- 1 | float PixelShaderFunction() : SV_DepthLessEqual 2 | { 3 | return 0.2; 4 | } 5 | -------------------------------------------------------------------------------- /third_party/glslang/Test/hlsl.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/hlsl.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/hlsl.if.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/hlsl.if.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/hlsl.inf.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/hlsl.inf.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/hlsl.max.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/hlsl.max.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/hlsl.pp.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/hlsl.pp.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/hlsl.sin.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/hlsl.sin.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/i1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/i1.h -------------------------------------------------------------------------------- /third_party/glslang/Test/implicitInnerAtomicUint.frag: -------------------------------------------------------------------------------- 1 | #version 460 2 | layout(binding = 0) uniform atomic_uint c[1][]; -------------------------------------------------------------------------------- /third_party/glslang/Test/inc1/badInc.h: -------------------------------------------------------------------------------- 1 | #include "parentBad" 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/inc1/bar.h: -------------------------------------------------------------------------------- 1 | float4 i2; 2 | 3 | #include "foo.h" 4 | -------------------------------------------------------------------------------- /third_party/glslang/Test/inc1/foo.h: -------------------------------------------------------------------------------- 1 | #include "parent.h" 2 | 3 | float4 i3; 4 | -------------------------------------------------------------------------------- /third_party/glslang/Test/inc1/path1/bar.h: -------------------------------------------------------------------------------- 1 | float4 i9991; 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/inc1/path1/local.h: -------------------------------------------------------------------------------- 1 | float4 p2; 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/inc1/path2/bar.h: -------------------------------------------------------------------------------- 1 | float4 i9991; 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/inc1/path2/notHere.h: -------------------------------------------------------------------------------- 1 | float4 paoeu1; 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/inc1/path2/remote.h: -------------------------------------------------------------------------------- 1 | float4 p3; 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/inc2/bar.h: -------------------------------------------------------------------------------- 1 | #include "foo.h" 2 | float4 i5; 3 | -------------------------------------------------------------------------------- /third_party/glslang/Test/inc2/foo.h: -------------------------------------------------------------------------------- 1 | float4 i6; 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/include.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/include.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/length.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/length.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/link1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/link1.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/link1.vk.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/link1.vk.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/link2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/link2.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/link2.vk.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/link2.vk.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/link3.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/link3.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/loops.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/loops.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/mains.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/mains.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/mains1.frag: -------------------------------------------------------------------------------- 1 | #version 110 2 | 3 | void main() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /third_party/glslang/Test/mains2.frag: -------------------------------------------------------------------------------- 1 | #version 110 2 | 3 | void main() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /third_party/glslang/Test/makeDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/makeDoc -------------------------------------------------------------------------------- /third_party/glslang/Test/matrix.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/matrix.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/matrix2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/matrix2.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/noMain.vert: -------------------------------------------------------------------------------- 1 | #version 300 es 2 | 3 | void foo() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /third_party/glslang/Test/noMain1.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/noMain1.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/noMain2.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/noMain2.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/nosuffix: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | gl_Position = vec4(1.0); 4 | } -------------------------------------------------------------------------------- /third_party/glslang/Test/numeral.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/numeral.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/parent.h: -------------------------------------------------------------------------------- 1 | float4 i4; 2 | -------------------------------------------------------------------------------- /third_party/glslang/Test/parentBad: -------------------------------------------------------------------------------- 1 | int a; 2 | 3 | #error bad parent 4 | -------------------------------------------------------------------------------- /third_party/glslang/Test/precise.tesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/precise.tesc -------------------------------------------------------------------------------- /third_party/glslang/Test/prepost.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/prepost.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/preprocessor.eof_missing.vert: -------------------------------------------------------------------------------- 1 | noEOF -------------------------------------------------------------------------------- /third_party/glslang/Test/preprocessor.line.frag: -------------------------------------------------------------------------------- 1 | #version 310 es 2 | #line 1 2 3 | #pragma something 4 | void main() {} 5 | -------------------------------------------------------------------------------- /third_party/glslang/Test/preprocessor.success_if_parse_would_fail.vert: -------------------------------------------------------------------------------- 1 | int x() { 2 | something that shouldnt compile; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /third_party/glslang/Test/rayQuery.rgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/rayQuery.rgen -------------------------------------------------------------------------------- /third_party/glslang/Test/recurse1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/recurse1.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/recurse1.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/recurse1.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/recurse2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/recurse2.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/runtests -------------------------------------------------------------------------------- /third_party/glslang/Test/sample.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/sample.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/sample.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/sample.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.130.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.130.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.140.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.140.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.150.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.150.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.150.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.150.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.310.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.310.comp -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.330.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.330.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.400.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.400.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.400.tesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.400.tesc -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.400.tese: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.400.tese -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.420.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.420.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.430.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.430.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.430.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.430.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.450.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.450.geom -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.450.tesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.450.tesc -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.460.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.460.comp -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.460.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.460.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.460.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.460.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.AofA.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.AofA.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.bool.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.bool.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.fsi.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.fsi.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.glFragColor.frag: -------------------------------------------------------------------------------- 1 | #version 330 2 | 3 | void main() 4 | { 5 | gl_FragColor = vec4(1.0); 6 | } 7 | -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.int8.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.int8.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.set.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.set.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.test.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.test.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.test.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.test.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.uint.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.uint.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.xfb.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.xfb.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.xfb2.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.xfb2.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/spv.xfb3.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/spv.xfb3.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/switch.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/switch.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/swizzle.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/swizzle.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/test.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/test.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/texture.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/texture.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/types.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/types.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/uint.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/uint.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/vulkan.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/vulkan.comp -------------------------------------------------------------------------------- /third_party/glslang/Test/vulkan.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/vulkan.frag -------------------------------------------------------------------------------- /third_party/glslang/Test/vulkan.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/vulkan.vert -------------------------------------------------------------------------------- /third_party/glslang/Test/web.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/web.comp -------------------------------------------------------------------------------- /third_party/glslang/Test/web.runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/web.runtests -------------------------------------------------------------------------------- /third_party/glslang/Test/web.testlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/Test/web.testlist -------------------------------------------------------------------------------- /third_party/glslang/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/WORKSPACE -------------------------------------------------------------------------------- /third_party/glslang/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/_config.yml -------------------------------------------------------------------------------- /third_party/glslang/build_info.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/build_info.h.tmpl -------------------------------------------------------------------------------- /third_party/glslang/build_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/build_info.py -------------------------------------------------------------------------------- /third_party/glslang/glslang/HLSL/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/glslang/HLSL/pch.h -------------------------------------------------------------------------------- /third_party/glslang/gtests/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/gtests/Common.cpp -------------------------------------------------------------------------------- /third_party/glslang/gtests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/gtests/README.md -------------------------------------------------------------------------------- /third_party/glslang/gtests/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/gtests/Settings.h -------------------------------------------------------------------------------- /third_party/glslang/gtests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/gtests/main.cpp -------------------------------------------------------------------------------- /third_party/glslang/gtests/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/gtests/pch.h -------------------------------------------------------------------------------- /third_party/glslang/hlsl/stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/hlsl/stub.cpp -------------------------------------------------------------------------------- /third_party/glslang/known_good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/known_good.json -------------------------------------------------------------------------------- /third_party/glslang/ndk_test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/ndk_test/test.cpp -------------------------------------------------------------------------------- /third_party/glslang/standalone.gclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/glslang/standalone.gclient -------------------------------------------------------------------------------- /third_party/imgui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/LICENSE -------------------------------------------------------------------------------- /third_party/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imconfig.h -------------------------------------------------------------------------------- /third_party/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imgui.cpp -------------------------------------------------------------------------------- /third_party/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imgui.h -------------------------------------------------------------------------------- /third_party/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /third_party/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /third_party/imgui/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /third_party/imgui/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imgui_impl_sdl.h -------------------------------------------------------------------------------- /third_party/imgui/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /third_party/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imgui_internal.h -------------------------------------------------------------------------------- /third_party/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /third_party/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /third_party/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /third_party/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /third_party/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /third_party/stb_image/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/stb_image/LICENSE -------------------------------------------------------------------------------- /third_party/stb_image/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/stb_image/stb_image.h -------------------------------------------------------------------------------- /third_party/tinygltf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/tinygltf/LICENSE -------------------------------------------------------------------------------- /third_party/tinygltf/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/tinygltf/json.hpp -------------------------------------------------------------------------------- /third_party/tinygltf/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/tinygltf/stb_image_write.h -------------------------------------------------------------------------------- /third_party/tinygltf/tiny_gltf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/tinygltf/tiny_gltf.h -------------------------------------------------------------------------------- /third_party/tinyobjloader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/tinyobjloader/LICENSE -------------------------------------------------------------------------------- /third_party/tinyobjloader/tiny_obj_loader.cc: -------------------------------------------------------------------------------- 1 | #define TINYOBJLOADER_IMPLEMENTATION 2 | #include "tiny_obj_loader.h" 3 | -------------------------------------------------------------------------------- /third_party/vkbootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/vkbootstrap/LICENSE -------------------------------------------------------------------------------- /third_party/vkbootstrap/VkBootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/vkbootstrap/VkBootstrap.h -------------------------------------------------------------------------------- /third_party/vma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/vma/LICENSE -------------------------------------------------------------------------------- /third_party/vma/vk_mem_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/vma/vk_mem_alloc.h -------------------------------------------------------------------------------- /third_party/volk/volk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/volk/volk.c -------------------------------------------------------------------------------- /third_party/volk/volk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/volk/volk.h -------------------------------------------------------------------------------- /third_party/xatlas/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/xatlas/LICENSE -------------------------------------------------------------------------------- /third_party/xatlas/xatlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/xatlas/xatlas.cpp -------------------------------------------------------------------------------- /third_party/xatlas/xatlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berksaribas/Panko-Renderer/HEAD/third_party/xatlas/xatlas.h --------------------------------------------------------------------------------