├── .gitignore ├── README.md ├── blackbody.cpp ├── blackbody.h ├── common.h ├── env_brdf.cpp ├── env_brdf.h ├── gloss_normal.cpp ├── gloss_normal.h ├── include ├── armadillo │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── NOTICE.txt │ ├── README.md │ ├── armadillo_icon.png │ ├── armadillo_joss_2016.pdf │ ├── armadillo_mca_2019.pdf │ ├── armadillo_nicta_2010.pdf │ ├── armadillo_spcs_2017.pdf │ ├── cmake_aux │ │ ├── InstallFiles │ │ │ ├── ArmadilloConfig.cmake.in │ │ │ └── ArmadilloConfigVersion.cmake.in │ │ └── Modules │ │ │ ├── ARMA_FindACML.cmake │ │ │ ├── ARMA_FindACMLMP.cmake │ │ │ ├── ARMA_FindARPACK.cmake │ │ │ ├── ARMA_FindATLAS.cmake │ │ │ ├── ARMA_FindBLAS.cmake │ │ │ ├── ARMA_FindLAPACK.cmake │ │ │ ├── ARMA_FindMKL.cmake │ │ │ ├── ARMA_FindOpenBLAS.cmake │ │ │ └── ARMA_FindSuperLU5.cmake │ ├── configure │ ├── docs.html │ ├── examples │ │ ├── Makefile │ │ ├── Makefile.cmake │ │ ├── example1.cpp │ │ ├── example1_win64.README.txt │ │ ├── example1_win64.sln │ │ ├── example1_win64.vcxproj │ │ └── lib_win64 │ │ │ ├── README.txt │ │ │ ├── blas_win64_MT.dll │ │ │ ├── blas_win64_MT.lib │ │ │ ├── lapack_win64_MT.dll │ │ │ └── lapack_win64_MT.lib │ ├── include │ │ ├── armadillo │ │ └── armadillo_bits │ │ │ ├── BaseCube_bones.hpp │ │ │ ├── BaseCube_meat.hpp │ │ │ ├── Base_bones.hpp │ │ │ ├── Base_meat.hpp │ │ │ ├── Col_bones.hpp │ │ │ ├── Col_meat.hpp │ │ │ ├── CubeToMatOp_bones.hpp │ │ │ ├── CubeToMatOp_meat.hpp │ │ │ ├── Cube_bones.hpp │ │ │ ├── Cube_meat.hpp │ │ │ ├── GenCube_bones.hpp │ │ │ ├── GenCube_meat.hpp │ │ │ ├── GenSpecialiser.hpp │ │ │ ├── Gen_bones.hpp │ │ │ ├── Gen_meat.hpp │ │ │ ├── GlueCube_bones.hpp │ │ │ ├── GlueCube_meat.hpp │ │ │ ├── Glue_bones.hpp │ │ │ ├── Glue_meat.hpp │ │ │ ├── MapMat_bones.hpp │ │ │ ├── MapMat_meat.hpp │ │ │ ├── Mat_bones.hpp │ │ │ ├── Mat_meat.hpp │ │ │ ├── OpCube_bones.hpp │ │ │ ├── OpCube_meat.hpp │ │ │ ├── Op_bones.hpp │ │ │ ├── Op_meat.hpp │ │ │ ├── Proxy.hpp │ │ │ ├── ProxyCube.hpp │ │ │ ├── Row_bones.hpp │ │ │ ├── Row_meat.hpp │ │ │ ├── SizeCube_bones.hpp │ │ │ ├── SizeCube_meat.hpp │ │ │ ├── SizeMat_bones.hpp │ │ │ ├── SizeMat_meat.hpp │ │ │ ├── SpBase_bones.hpp │ │ │ ├── SpBase_meat.hpp │ │ │ ├── SpCol_bones.hpp │ │ │ ├── SpCol_meat.hpp │ │ │ ├── SpGlue_bones.hpp │ │ │ ├── SpGlue_meat.hpp │ │ │ ├── SpMat_bones.hpp │ │ │ ├── SpMat_iterators_meat.hpp │ │ │ ├── SpMat_meat.hpp │ │ │ ├── SpOp_bones.hpp │ │ │ ├── SpOp_meat.hpp │ │ │ ├── SpProxy.hpp │ │ │ ├── SpRow_bones.hpp │ │ │ ├── SpRow_meat.hpp │ │ │ ├── SpSubview_bones.hpp │ │ │ ├── SpSubview_iterators_meat.hpp │ │ │ ├── SpSubview_meat.hpp │ │ │ ├── SpToDOp_bones.hpp │ │ │ ├── SpToDOp_meat.hpp │ │ │ ├── SpValProxy_bones.hpp │ │ │ ├── SpValProxy_meat.hpp │ │ │ ├── access.hpp │ │ │ ├── arma_cmath.hpp │ │ │ ├── arma_config.hpp │ │ │ ├── arma_forward.hpp │ │ │ ├── arma_ostream_bones.hpp │ │ │ ├── arma_ostream_meat.hpp │ │ │ ├── arma_rel_comparators.hpp │ │ │ ├── arma_rng.hpp │ │ │ ├── arma_rng_cxx11.hpp │ │ │ ├── arma_rng_cxx98.hpp │ │ │ ├── arma_static_check.hpp │ │ │ ├── arma_str.hpp │ │ │ ├── arma_version.hpp │ │ │ ├── arrayops_bones.hpp │ │ │ ├── arrayops_meat.hpp │ │ │ ├── auxlib_bones.hpp │ │ │ ├── auxlib_meat.hpp │ │ │ ├── band_helper.hpp │ │ │ ├── compiler_extra.hpp │ │ │ ├── compiler_setup.hpp │ │ │ ├── compiler_setup_post.hpp │ │ │ ├── cond_rel_bones.hpp │ │ │ ├── cond_rel_meat.hpp │ │ │ ├── config.hpp │ │ │ ├── config.hpp.cmake │ │ │ ├── constants.hpp │ │ │ ├── constants_old.hpp │ │ │ ├── debug.hpp │ │ │ ├── def_arpack.hpp │ │ │ ├── def_atlas.hpp │ │ │ ├── def_blas.hpp │ │ │ ├── def_hdf5.hpp │ │ │ ├── def_lapack.hpp │ │ │ ├── def_superlu.hpp │ │ │ ├── diagmat_proxy.hpp │ │ │ ├── diagview_bones.hpp │ │ │ ├── diagview_meat.hpp │ │ │ ├── diskio_bones.hpp │ │ │ ├── diskio_meat.hpp │ │ │ ├── distr_param.hpp │ │ │ ├── eGlueCube_bones.hpp │ │ │ ├── eGlueCube_meat.hpp │ │ │ ├── eGlue_bones.hpp │ │ │ ├── eGlue_meat.hpp │ │ │ ├── eOpCube_bones.hpp │ │ │ ├── eOpCube_meat.hpp │ │ │ ├── eOp_bones.hpp │ │ │ ├── eOp_meat.hpp │ │ │ ├── eglue_core_bones.hpp │ │ │ ├── eglue_core_meat.hpp │ │ │ ├── eop_aux.hpp │ │ │ ├── eop_core_bones.hpp │ │ │ ├── eop_core_meat.hpp │ │ │ ├── fft_engine.hpp │ │ │ ├── field_bones.hpp │ │ │ ├── field_meat.hpp │ │ │ ├── fn_accu.hpp │ │ │ ├── fn_all.hpp │ │ │ ├── fn_any.hpp │ │ │ ├── fn_approx_equal.hpp │ │ │ ├── fn_as_scalar.hpp │ │ │ ├── fn_chi2rnd.hpp │ │ │ ├── fn_chol.hpp │ │ │ ├── fn_clamp.hpp │ │ │ ├── fn_cond.hpp │ │ │ ├── fn_conv.hpp │ │ │ ├── fn_conv_to.hpp │ │ │ ├── fn_cor.hpp │ │ │ ├── fn_cov.hpp │ │ │ ├── fn_cross.hpp │ │ │ ├── fn_cumprod.hpp │ │ │ ├── fn_cumsum.hpp │ │ │ ├── fn_det.hpp │ │ │ ├── fn_diagmat.hpp │ │ │ ├── fn_diagvec.hpp │ │ │ ├── fn_diff.hpp │ │ │ ├── fn_dot.hpp │ │ │ ├── fn_eig_gen.hpp │ │ │ ├── fn_eig_pair.hpp │ │ │ ├── fn_eig_sym.hpp │ │ │ ├── fn_eigs_gen.hpp │ │ │ ├── fn_eigs_sym.hpp │ │ │ ├── fn_elem.hpp │ │ │ ├── fn_eps.hpp │ │ │ ├── fn_expmat.hpp │ │ │ ├── fn_eye.hpp │ │ │ ├── fn_fft.hpp │ │ │ ├── fn_fft2.hpp │ │ │ ├── fn_find.hpp │ │ │ ├── fn_find_unique.hpp │ │ │ ├── fn_flip.hpp │ │ │ ├── fn_hess.hpp │ │ │ ├── fn_hist.hpp │ │ │ ├── fn_histc.hpp │ │ │ ├── fn_index_max.hpp │ │ │ ├── fn_index_min.hpp │ │ │ ├── fn_inplace_strans.hpp │ │ │ ├── fn_inplace_trans.hpp │ │ │ ├── fn_interp1.hpp │ │ │ ├── fn_interp2.hpp │ │ │ ├── fn_intersect.hpp │ │ │ ├── fn_inv.hpp │ │ │ ├── fn_join.hpp │ │ │ ├── fn_kmeans.hpp │ │ │ ├── fn_kron.hpp │ │ │ ├── fn_log_det.hpp │ │ │ ├── fn_logmat.hpp │ │ │ ├── fn_lu.hpp │ │ │ ├── fn_max.hpp │ │ │ ├── fn_mean.hpp │ │ │ ├── fn_median.hpp │ │ │ ├── fn_min.hpp │ │ │ ├── fn_misc.hpp │ │ │ ├── fn_mvnrnd.hpp │ │ │ ├── fn_n_unique.hpp │ │ │ ├── fn_nonzeros.hpp │ │ │ ├── fn_norm.hpp │ │ │ ├── fn_normalise.hpp │ │ │ ├── fn_normcdf.hpp │ │ │ ├── fn_normpdf.hpp │ │ │ ├── fn_numel.hpp │ │ │ ├── fn_ones.hpp │ │ │ ├── fn_orth_null.hpp │ │ │ ├── fn_pinv.hpp │ │ │ ├── fn_polyfit.hpp │ │ │ ├── fn_polyval.hpp │ │ │ ├── fn_princomp.hpp │ │ │ ├── fn_prod.hpp │ │ │ ├── fn_qr.hpp │ │ │ ├── fn_qz.hpp │ │ │ ├── fn_randg.hpp │ │ │ ├── fn_randi.hpp │ │ │ ├── fn_randn.hpp │ │ │ ├── fn_randperm.hpp │ │ │ ├── fn_randu.hpp │ │ │ ├── fn_range.hpp │ │ │ ├── fn_rank.hpp │ │ │ ├── fn_regspace.hpp │ │ │ ├── fn_repelem.hpp │ │ │ ├── fn_repmat.hpp │ │ │ ├── fn_reshape.hpp │ │ │ ├── fn_resize.hpp │ │ │ ├── fn_reverse.hpp │ │ │ ├── fn_roots.hpp │ │ │ ├── fn_schur.hpp │ │ │ ├── fn_shift.hpp │ │ │ ├── fn_shuffle.hpp │ │ │ ├── fn_size.hpp │ │ │ ├── fn_solve.hpp │ │ │ ├── fn_sort.hpp │ │ │ ├── fn_sort_index.hpp │ │ │ ├── fn_speye.hpp │ │ │ ├── fn_spones.hpp │ │ │ ├── fn_sprandn.hpp │ │ │ ├── fn_sprandu.hpp │ │ │ ├── fn_spsolve.hpp │ │ │ ├── fn_sqrtmat.hpp │ │ │ ├── fn_stddev.hpp │ │ │ ├── fn_strans.hpp │ │ │ ├── fn_sum.hpp │ │ │ ├── fn_svd.hpp │ │ │ ├── fn_svds.hpp │ │ │ ├── fn_syl_lyap.hpp │ │ │ ├── fn_symmat.hpp │ │ │ ├── fn_toeplitz.hpp │ │ │ ├── fn_trace.hpp │ │ │ ├── fn_trans.hpp │ │ │ ├── fn_trapz.hpp │ │ │ ├── fn_trig.hpp │ │ │ ├── fn_trimat.hpp │ │ │ ├── fn_trunc_exp.hpp │ │ │ ├── fn_trunc_log.hpp │ │ │ ├── fn_unique.hpp │ │ │ ├── fn_var.hpp │ │ │ ├── fn_vectorise.hpp │ │ │ ├── fn_wishrnd.hpp │ │ │ ├── fn_zeros.hpp │ │ │ ├── glue_affmul_bones.hpp │ │ │ ├── glue_affmul_meat.hpp │ │ │ ├── glue_atan2_bones.hpp │ │ │ ├── glue_atan2_meat.hpp │ │ │ ├── glue_conv_bones.hpp │ │ │ ├── glue_conv_meat.hpp │ │ │ ├── glue_cor_bones.hpp │ │ │ ├── glue_cor_meat.hpp │ │ │ ├── glue_cov_bones.hpp │ │ │ ├── glue_cov_meat.hpp │ │ │ ├── glue_cross_bones.hpp │ │ │ ├── glue_cross_meat.hpp │ │ │ ├── glue_hist_bones.hpp │ │ │ ├── glue_hist_meat.hpp │ │ │ ├── glue_histc_bones.hpp │ │ │ ├── glue_histc_meat.hpp │ │ │ ├── glue_hypot_bones.hpp │ │ │ ├── glue_hypot_meat.hpp │ │ │ ├── glue_intersect_bones.hpp │ │ │ ├── glue_intersect_meat.hpp │ │ │ ├── glue_join_bones.hpp │ │ │ ├── glue_join_meat.hpp │ │ │ ├── glue_kron_bones.hpp │ │ │ ├── glue_kron_meat.hpp │ │ │ ├── glue_max_bones.hpp │ │ │ ├── glue_max_meat.hpp │ │ │ ├── glue_min_bones.hpp │ │ │ ├── glue_min_meat.hpp │ │ │ ├── glue_mixed_bones.hpp │ │ │ ├── glue_mixed_meat.hpp │ │ │ ├── glue_mvnrnd_bones.hpp │ │ │ ├── glue_mvnrnd_meat.hpp │ │ │ ├── glue_polyfit_bones.hpp │ │ │ ├── glue_polyfit_meat.hpp │ │ │ ├── glue_polyval_bones.hpp │ │ │ ├── glue_polyval_meat.hpp │ │ │ ├── glue_relational_bones.hpp │ │ │ ├── glue_relational_meat.hpp │ │ │ ├── glue_solve_bones.hpp │ │ │ ├── glue_solve_meat.hpp │ │ │ ├── glue_times_bones.hpp │ │ │ ├── glue_times_meat.hpp │ │ │ ├── glue_toeplitz_bones.hpp │ │ │ ├── glue_toeplitz_meat.hpp │ │ │ ├── glue_trapz_bones.hpp │ │ │ ├── glue_trapz_meat.hpp │ │ │ ├── gmm_diag_bones.hpp │ │ │ ├── gmm_diag_meat.hpp │ │ │ ├── gmm_full_bones.hpp │ │ │ ├── gmm_full_meat.hpp │ │ │ ├── gmm_misc_bones.hpp │ │ │ ├── gmm_misc_meat.hpp │ │ │ ├── hdf5_misc.hpp │ │ │ ├── include_atlas.hpp │ │ │ ├── include_hdf5.hpp │ │ │ ├── include_superlu.hpp │ │ │ ├── injector_bones.hpp │ │ │ ├── injector_meat.hpp │ │ │ ├── memory.hpp │ │ │ ├── mp_misc.hpp │ │ │ ├── mtGlueCube_bones.hpp │ │ │ ├── mtGlueCube_meat.hpp │ │ │ ├── mtGlue_bones.hpp │ │ │ ├── mtGlue_meat.hpp │ │ │ ├── mtOpCube_bones.hpp │ │ │ ├── mtOpCube_meat.hpp │ │ │ ├── mtOp_bones.hpp │ │ │ ├── mtOp_meat.hpp │ │ │ ├── mtSpGlue_bones.hpp │ │ │ ├── mtSpGlue_meat.hpp │ │ │ ├── mtSpOp_bones.hpp │ │ │ ├── mtSpOp_meat.hpp │ │ │ ├── mul_gemm.hpp │ │ │ ├── mul_gemm_mixed.hpp │ │ │ ├── mul_gemv.hpp │ │ │ ├── mul_herk.hpp │ │ │ ├── mul_syrk.hpp │ │ │ ├── newarp_DenseGenMatProd_bones.hpp │ │ │ ├── newarp_DenseGenMatProd_meat.hpp │ │ │ ├── newarp_DoubleShiftQR_bones.hpp │ │ │ ├── newarp_DoubleShiftQR_meat.hpp │ │ │ ├── newarp_EigsSelect.hpp │ │ │ ├── newarp_GenEigsSolver_bones.hpp │ │ │ ├── newarp_GenEigsSolver_meat.hpp │ │ │ ├── newarp_SortEigenvalue.hpp │ │ │ ├── newarp_SparseGenMatProd_bones.hpp │ │ │ ├── newarp_SparseGenMatProd_meat.hpp │ │ │ ├── newarp_SymEigsSolver_bones.hpp │ │ │ ├── newarp_SymEigsSolver_meat.hpp │ │ │ ├── newarp_TridiagEigen_bones.hpp │ │ │ ├── newarp_TridiagEigen_meat.hpp │ │ │ ├── newarp_UpperHessenbergEigen_bones.hpp │ │ │ ├── newarp_UpperHessenbergEigen_meat.hpp │ │ │ ├── newarp_UpperHessenbergQR_bones.hpp │ │ │ ├── newarp_UpperHessenbergQR_meat.hpp │ │ │ ├── newarp_cx_attrib.hpp │ │ │ ├── op_all_bones.hpp │ │ │ ├── op_all_meat.hpp │ │ │ ├── op_any_bones.hpp │ │ │ ├── op_any_meat.hpp │ │ │ ├── op_chi2rnd_bones.hpp │ │ │ ├── op_chi2rnd_meat.hpp │ │ │ ├── op_chol_bones.hpp │ │ │ ├── op_chol_meat.hpp │ │ │ ├── op_clamp_bones.hpp │ │ │ ├── op_clamp_meat.hpp │ │ │ ├── op_cond_bones.hpp │ │ │ ├── op_cond_meat.hpp │ │ │ ├── op_cor_bones.hpp │ │ │ ├── op_cor_meat.hpp │ │ │ ├── op_cov_bones.hpp │ │ │ ├── op_cov_meat.hpp │ │ │ ├── op_cumprod_bones.hpp │ │ │ ├── op_cumprod_meat.hpp │ │ │ ├── op_cumsum_bones.hpp │ │ │ ├── op_cumsum_meat.hpp │ │ │ ├── op_cx_scalar_bones.hpp │ │ │ ├── op_cx_scalar_meat.hpp │ │ │ ├── op_diagmat_bones.hpp │ │ │ ├── op_diagmat_meat.hpp │ │ │ ├── op_diagvec_bones.hpp │ │ │ ├── op_diagvec_meat.hpp │ │ │ ├── op_diff_bones.hpp │ │ │ ├── op_diff_meat.hpp │ │ │ ├── op_dot_bones.hpp │ │ │ ├── op_dot_meat.hpp │ │ │ ├── op_dotext_bones.hpp │ │ │ ├── op_dotext_meat.hpp │ │ │ ├── op_expmat_bones.hpp │ │ │ ├── op_expmat_meat.hpp │ │ │ ├── op_fft_bones.hpp │ │ │ ├── op_fft_meat.hpp │ │ │ ├── op_find_bones.hpp │ │ │ ├── op_find_meat.hpp │ │ │ ├── op_find_unique_bones.hpp │ │ │ ├── op_find_unique_meat.hpp │ │ │ ├── op_flip_bones.hpp │ │ │ ├── op_flip_meat.hpp │ │ │ ├── op_hist_bones.hpp │ │ │ ├── op_hist_meat.hpp │ │ │ ├── op_htrans_bones.hpp │ │ │ ├── op_htrans_meat.hpp │ │ │ ├── op_index_max_bones.hpp │ │ │ ├── op_index_max_meat.hpp │ │ │ ├── op_index_min_bones.hpp │ │ │ ├── op_index_min_meat.hpp │ │ │ ├── op_inv_bones.hpp │ │ │ ├── op_inv_meat.hpp │ │ │ ├── op_logmat_bones.hpp │ │ │ ├── op_logmat_meat.hpp │ │ │ ├── op_max_bones.hpp │ │ │ ├── op_max_meat.hpp │ │ │ ├── op_mean_bones.hpp │ │ │ ├── op_mean_meat.hpp │ │ │ ├── op_median_bones.hpp │ │ │ ├── op_median_meat.hpp │ │ │ ├── op_min_bones.hpp │ │ │ ├── op_min_meat.hpp │ │ │ ├── op_misc_bones.hpp │ │ │ ├── op_misc_meat.hpp │ │ │ ├── op_nonzeros_bones.hpp │ │ │ ├── op_nonzeros_meat.hpp │ │ │ ├── op_norm_bones.hpp │ │ │ ├── op_norm_meat.hpp │ │ │ ├── op_normalise_bones.hpp │ │ │ ├── op_normalise_meat.hpp │ │ │ ├── op_orth_null_bones.hpp │ │ │ ├── op_orth_null_meat.hpp │ │ │ ├── op_pinv_bones.hpp │ │ │ ├── op_pinv_meat.hpp │ │ │ ├── op_princomp_bones.hpp │ │ │ ├── op_princomp_meat.hpp │ │ │ ├── op_prod_bones.hpp │ │ │ ├── op_prod_meat.hpp │ │ │ ├── op_range_bones.hpp │ │ │ ├── op_range_meat.hpp │ │ │ ├── op_relational_bones.hpp │ │ │ ├── op_relational_meat.hpp │ │ │ ├── op_repelem_bones.hpp │ │ │ ├── op_repelem_meat.hpp │ │ │ ├── op_repmat_bones.hpp │ │ │ ├── op_repmat_meat.hpp │ │ │ ├── op_reshape_bones.hpp │ │ │ ├── op_reshape_meat.hpp │ │ │ ├── op_resize_bones.hpp │ │ │ ├── op_resize_meat.hpp │ │ │ ├── op_reverse_bones.hpp │ │ │ ├── op_reverse_meat.hpp │ │ │ ├── op_roots_bones.hpp │ │ │ ├── op_roots_meat.hpp │ │ │ ├── op_shift_bones.hpp │ │ │ ├── op_shift_meat.hpp │ │ │ ├── op_shuffle_bones.hpp │ │ │ ├── op_shuffle_meat.hpp │ │ │ ├── op_sort_bones.hpp │ │ │ ├── op_sort_index_bones.hpp │ │ │ ├── op_sort_index_meat.hpp │ │ │ ├── op_sort_meat.hpp │ │ │ ├── op_sp_minus_bones.hpp │ │ │ ├── op_sp_minus_meat.hpp │ │ │ ├── op_sp_plus_bones.hpp │ │ │ ├── op_sp_plus_meat.hpp │ │ │ ├── op_sqrtmat_bones.hpp │ │ │ ├── op_sqrtmat_meat.hpp │ │ │ ├── op_stddev_bones.hpp │ │ │ ├── op_stddev_meat.hpp │ │ │ ├── op_strans_bones.hpp │ │ │ ├── op_strans_meat.hpp │ │ │ ├── op_sum_bones.hpp │ │ │ ├── op_sum_meat.hpp │ │ │ ├── op_symmat_bones.hpp │ │ │ ├── op_symmat_meat.hpp │ │ │ ├── op_toeplitz_bones.hpp │ │ │ ├── op_toeplitz_meat.hpp │ │ │ ├── op_trimat_bones.hpp │ │ │ ├── op_trimat_meat.hpp │ │ │ ├── op_unique_bones.hpp │ │ │ ├── op_unique_meat.hpp │ │ │ ├── op_var_bones.hpp │ │ │ ├── op_var_meat.hpp │ │ │ ├── op_vectorise_bones.hpp │ │ │ ├── op_vectorise_meat.hpp │ │ │ ├── op_wishrnd_bones.hpp │ │ │ ├── op_wishrnd_meat.hpp │ │ │ ├── operator_cube_div.hpp │ │ │ ├── operator_cube_minus.hpp │ │ │ ├── operator_cube_plus.hpp │ │ │ ├── operator_cube_relational.hpp │ │ │ ├── operator_cube_schur.hpp │ │ │ ├── operator_cube_times.hpp │ │ │ ├── operator_div.hpp │ │ │ ├── operator_minus.hpp │ │ │ ├── operator_ostream.hpp │ │ │ ├── operator_plus.hpp │ │ │ ├── operator_relational.hpp │ │ │ ├── operator_schur.hpp │ │ │ ├── operator_times.hpp │ │ │ ├── podarray_bones.hpp │ │ │ ├── podarray_meat.hpp │ │ │ ├── promote_type.hpp │ │ │ ├── restrictors.hpp │ │ │ ├── running_stat_bones.hpp │ │ │ ├── running_stat_meat.hpp │ │ │ ├── running_stat_vec_bones.hpp │ │ │ ├── running_stat_vec_meat.hpp │ │ │ ├── sp_auxlib_bones.hpp │ │ │ ├── sp_auxlib_meat.hpp │ │ │ ├── span.hpp │ │ │ ├── spdiagview_bones.hpp │ │ │ ├── spdiagview_meat.hpp │ │ │ ├── spglue_elem_helper_bones.hpp │ │ │ ├── spglue_elem_helper_meat.hpp │ │ │ ├── spglue_join_bones.hpp │ │ │ ├── spglue_join_meat.hpp │ │ │ ├── spglue_kron_bones.hpp │ │ │ ├── spglue_kron_meat.hpp │ │ │ ├── spglue_max_bones.hpp │ │ │ ├── spglue_max_meat.hpp │ │ │ ├── spglue_merge_bones.hpp │ │ │ ├── spglue_merge_meat.hpp │ │ │ ├── spglue_min_bones.hpp │ │ │ ├── spglue_min_meat.hpp │ │ │ ├── spglue_minus_bones.hpp │ │ │ ├── spglue_minus_meat.hpp │ │ │ ├── spglue_plus_bones.hpp │ │ │ ├── spglue_plus_meat.hpp │ │ │ ├── spglue_relational_bones.hpp │ │ │ ├── spglue_relational_meat.hpp │ │ │ ├── spglue_schur_bones.hpp │ │ │ ├── spglue_schur_meat.hpp │ │ │ ├── spglue_times_bones.hpp │ │ │ ├── spglue_times_meat.hpp │ │ │ ├── spop_diagmat_bones.hpp │ │ │ ├── spop_diagmat_meat.hpp │ │ │ ├── spop_htrans_bones.hpp │ │ │ ├── spop_htrans_meat.hpp │ │ │ ├── spop_max_bones.hpp │ │ │ ├── spop_max_meat.hpp │ │ │ ├── spop_mean_bones.hpp │ │ │ ├── spop_mean_meat.hpp │ │ │ ├── spop_min_bones.hpp │ │ │ ├── spop_min_meat.hpp │ │ │ ├── spop_misc_bones.hpp │ │ │ ├── spop_misc_meat.hpp │ │ │ ├── spop_normalise_bones.hpp │ │ │ ├── spop_normalise_meat.hpp │ │ │ ├── spop_repmat_bones.hpp │ │ │ ├── spop_repmat_meat.hpp │ │ │ ├── spop_reverse_bones.hpp │ │ │ ├── spop_reverse_meat.hpp │ │ │ ├── spop_strans_bones.hpp │ │ │ ├── spop_strans_meat.hpp │ │ │ ├── spop_sum_bones.hpp │ │ │ ├── spop_sum_meat.hpp │ │ │ ├── spop_symmat_bones.hpp │ │ │ ├── spop_symmat_meat.hpp │ │ │ ├── spop_trimat_bones.hpp │ │ │ ├── spop_trimat_meat.hpp │ │ │ ├── spop_var_bones.hpp │ │ │ ├── spop_var_meat.hpp │ │ │ ├── spop_vectorise_bones.hpp │ │ │ ├── spop_vectorise_meat.hpp │ │ │ ├── strip.hpp │ │ │ ├── subview_bones.hpp │ │ │ ├── subview_cube_bones.hpp │ │ │ ├── subview_cube_each_bones.hpp │ │ │ ├── subview_cube_each_meat.hpp │ │ │ ├── subview_cube_meat.hpp │ │ │ ├── subview_cube_slices_bones.hpp │ │ │ ├── subview_cube_slices_meat.hpp │ │ │ ├── subview_each_bones.hpp │ │ │ ├── subview_each_meat.hpp │ │ │ ├── subview_elem1_bones.hpp │ │ │ ├── subview_elem1_meat.hpp │ │ │ ├── subview_elem2_bones.hpp │ │ │ ├── subview_elem2_meat.hpp │ │ │ ├── subview_field_bones.hpp │ │ │ ├── subview_field_meat.hpp │ │ │ ├── subview_meat.hpp │ │ │ ├── sympd_helper.hpp │ │ │ ├── traits.hpp │ │ │ ├── translate_arpack.hpp │ │ │ ├── translate_atlas.hpp │ │ │ ├── translate_blas.hpp │ │ │ ├── translate_lapack.hpp │ │ │ ├── translate_superlu.hpp │ │ │ ├── trimat_helper.hpp │ │ │ ├── typedef_elem.hpp │ │ │ ├── typedef_elem_check.hpp │ │ │ ├── typedef_mat.hpp │ │ │ ├── typedef_mat_fixed.hpp │ │ │ ├── unwrap.hpp │ │ │ ├── unwrap_cube.hpp │ │ │ ├── unwrap_spmat.hpp │ │ │ ├── upgrade_val.hpp │ │ │ ├── wall_clock_bones.hpp │ │ │ ├── wall_clock_meat.hpp │ │ │ ├── xtrans_mat_bones.hpp │ │ │ ├── xtrans_mat_meat.hpp │ │ │ ├── xvec_htrans_bones.hpp │ │ │ └── xvec_htrans_meat.hpp │ ├── index.html │ ├── mex_interface │ │ ├── README.txt │ │ ├── armaMex.hpp │ │ ├── armaMex_demo.cpp │ │ ├── armaMex_documentation.pdf │ │ ├── inData.mat │ │ ├── readMatTest.cpp │ │ └── run_demo.m │ ├── misc │ │ ├── armadillo.pc.in │ │ ├── armadillo.spec │ │ ├── blank_footer.html │ │ ├── doxygen.config │ │ └── main.doxy │ ├── rcpp_armadillo_csda_2014.pdf │ ├── src │ │ ├── README.txt │ │ ├── wrapper1.cpp │ │ └── wrapper2.cpp │ └── tests │ │ ├── Makefile │ │ ├── README.txt │ │ ├── attributes.cpp │ │ ├── bounds.cpp │ │ ├── catch.hpp │ │ ├── decomp_eig_gen.cpp │ │ ├── decomp_eig_sym.cpp │ │ ├── expr_elem.cpp │ │ ├── expr_misc.cpp │ │ ├── fn_abs.cpp │ │ ├── fn_accu.cpp │ │ ├── fn_all.cpp │ │ ├── fn_any.cpp │ │ ├── fn_as_scalar.cpp │ │ ├── fn_clamp.cpp │ │ ├── fn_cond.cpp │ │ ├── fn_conj.cpp │ │ ├── fn_conv.cpp │ │ ├── fn_conv_to.cpp │ │ ├── fn_cor.cpp │ │ ├── fn_cov.cpp │ │ ├── fn_cross.cpp │ │ ├── fn_cumprod.cpp │ │ ├── fn_cumsum.cpp │ │ ├── fn_det.cpp │ │ ├── fn_diagmat.cpp │ │ ├── fn_diagvec.cpp │ │ ├── fn_diff.cpp │ │ ├── fn_dot.cpp │ │ ├── fn_eigs_gen.cpp │ │ ├── fn_eigs_sym.cpp │ │ ├── fn_eps.cpp │ │ ├── fn_expmat.cpp │ │ ├── fn_find.cpp │ │ ├── fn_find_finite.cpp │ │ ├── fn_find_nonfinite.cpp │ │ ├── fn_find_unique.cpp │ │ ├── fn_flip.cpp │ │ ├── fn_hess.cpp │ │ ├── fn_interp1.cpp │ │ ├── fn_intersect.cpp │ │ ├── fn_is_finite.cpp │ │ ├── fn_max.cpp │ │ ├── fn_mean.cpp │ │ ├── fn_min.cpp │ │ ├── fn_princomp.cpp │ │ ├── fn_spsolve.cpp │ │ ├── fn_sum.cpp │ │ ├── fn_symmat.cpp │ │ ├── fn_trace.cpp │ │ ├── fn_trans.cpp │ │ ├── fn_var.cpp │ │ ├── fn_vectorise.cpp │ │ ├── gen_linspace.cpp │ │ ├── gen_ones.cpp │ │ ├── gen_randu.cpp │ │ ├── gen_zeros.cpp │ │ ├── gmm.cpp │ │ ├── hdf5.cpp │ │ ├── init_auxmem.cpp │ │ ├── init_fill.cpp │ │ ├── init_misc.cpp │ │ ├── instantiation.cpp │ │ ├── main.cpp │ │ ├── mat_minus.cpp │ │ ├── mat_mul_cx.cpp │ │ ├── mat_mul_real.cpp │ │ ├── mat_neg.cpp │ │ ├── mat_plus.cpp │ │ ├── spcol.cpp │ │ ├── spmat.cpp │ │ ├── sprow.cpp │ │ └── spsubview.cpp ├── csv-parser │ ├── .clang_complete │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── benchmark │ │ ├── Makefile │ │ ├── README.md │ │ ├── cpp │ │ │ └── main.cpp │ │ ├── js │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── rust │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── sample.csv │ ├── parser.hpp │ └── test │ │ ├── Makefile │ │ ├── catch.hpp │ │ ├── data │ │ ├── comma_in_quotes.csv │ │ ├── delimiter.csv │ │ ├── empty.csv │ │ ├── empty_crlf.csv │ │ ├── escaped_quotes.csv │ │ ├── json.csv │ │ ├── newlines.csv │ │ ├── newlines_crlf.csv │ │ ├── quote.csv │ │ ├── quotes_and_newlines.csv │ │ ├── simple.csv │ │ ├── simple_crlf.csv │ │ ├── terminator.csv │ │ └── utf8.csv │ │ └── parser_test.cpp ├── cxxopts │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── README.md │ ├── cxxopts-config.cmake.in │ ├── include │ │ └── cxxopts.hpp │ ├── src │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── example.cpp │ └── test │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── add-subdirectory-test │ │ └── CMakeLists.txt │ │ ├── catch.hpp │ │ ├── find-package-test │ │ └── CMakeLists.txt │ │ ├── link_a.cpp │ │ ├── link_b.cpp │ │ ├── main.cpp │ │ └── options.cpp ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── dummy.cpp │ │ ├── func_common.hpp │ │ ├── func_common.inl │ │ ├── func_exponential.hpp │ │ ├── func_exponential.inl │ │ ├── func_geometric.hpp │ │ ├── func_geometric.inl │ │ ├── func_integer.hpp │ │ ├── func_integer.inl │ │ ├── func_matrix.hpp │ │ ├── func_matrix.inl │ │ ├── func_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── glm.cpp │ │ ├── intrinsic_common.hpp │ │ ├── intrinsic_common.inl │ │ ├── intrinsic_exponential.hpp │ │ ├── intrinsic_exponential.inl │ │ ├── intrinsic_geometric.hpp │ │ ├── intrinsic_geometric.inl │ │ ├── intrinsic_integer.hpp │ │ ├── intrinsic_integer.inl │ │ ├── intrinsic_matrix.hpp │ │ ├── intrinsic_matrix.inl │ │ ├── intrinsic_trigonometric.hpp │ │ ├── intrinsic_trigonometric.inl │ │ ├── intrinsic_vector_relational.hpp │ │ ├── intrinsic_vector_relational.inl │ │ ├── precision.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_gentype.hpp │ │ ├── type_gentype.inl │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_int.hpp │ │ ├── type_mat.hpp │ │ ├── type_mat.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_vec.hpp │ │ ├── type_vec.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ ├── type_vec4_avx.inl │ │ ├── type_vec4_avx2.inl │ │ └── type_vec4_sse2.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── 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 │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ ├── vec1.hpp │ │ └── vec1.inl │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extended_min_max.hpp │ │ ├── extended_min_max.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── float_notmalize.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_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 │ │ ├── simd_mat4.hpp │ │ ├── simd_mat4.inl │ │ ├── simd_quat.hpp │ │ ├── simd_quat.inl │ │ ├── simd_vec4.hpp │ │ ├── simd_vec4.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── type_trait.hpp │ │ ├── type_trait.inl │ │ ├── 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 │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── hammersley │ ├── LICENSE │ ├── hammersley.c │ └── hammersley.h ├── optim │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile.in │ ├── NOTICE.txt │ ├── README.md │ ├── configure │ ├── examples │ │ └── logit_reg.cpp │ ├── include │ │ ├── constrained │ │ │ └── sumt.hpp │ │ ├── line_search │ │ │ └── more_thuente.hpp │ │ ├── misc │ │ │ ├── determine_bounds_type.hpp │ │ │ ├── error_reporting.hpp │ │ │ ├── error_reporting.ipp │ │ │ ├── jacobian_adjust.hpp │ │ │ ├── misc.hpp │ │ │ ├── numerical_gradient.hpp │ │ │ ├── numerical_hessian.hpp │ │ │ ├── optim_options.hpp │ │ │ ├── optim_structs.hpp │ │ │ ├── transform_vals.hpp │ │ │ ├── unit_vec.hpp │ │ │ └── unit_vec.ipp │ │ ├── optim.hpp │ │ ├── unconstrained │ │ │ ├── bfgs.hpp │ │ │ ├── cg.hpp │ │ │ ├── de.hpp │ │ │ ├── de_prmm.hpp │ │ │ ├── gd.hpp │ │ │ ├── lbfgs.hpp │ │ │ ├── newton.hpp │ │ │ ├── nm.hpp │ │ │ ├── pso.hpp │ │ │ └── pso_dv.hpp │ │ └── zeros │ │ │ └── broyden.hpp │ ├── src │ │ ├── constrained │ │ │ └── sumt.cpp │ │ ├── line_search │ │ │ └── more_thuente.cpp │ │ ├── unconstrained │ │ │ ├── bfgs.cpp │ │ │ ├── cg.cpp │ │ │ ├── de.cpp │ │ │ ├── de_prmm.cpp │ │ │ ├── gd.cpp │ │ │ ├── lbfgs.cpp │ │ │ ├── newton.cpp │ │ │ ├── nm.cpp │ │ │ ├── pso.cpp │ │ │ └── pso_dv.cpp │ │ └── zeros │ │ │ └── broyden.cpp │ └── tests │ │ ├── constrained │ │ └── sumt.cpp │ │ ├── misc │ │ ├── error_reporting.cpp │ │ ├── jacobian_adjust.cpp │ │ ├── numerical_gradient.cpp │ │ └── numerical_hessian.cpp │ │ ├── setup │ │ ├── test_fns │ │ ├── constr_test_fn_1.hpp │ │ ├── constr_test_fn_2.hpp │ │ ├── constr_test_fn_3.hpp │ │ ├── test_fns.hpp │ │ ├── test_solutions.hpp │ │ ├── unconstr_test_fn_1.hpp │ │ ├── unconstr_test_fn_10.hpp │ │ ├── unconstr_test_fn_2.hpp │ │ ├── unconstr_test_fn_3.hpp │ │ ├── unconstr_test_fn_4.hpp │ │ ├── unconstr_test_fn_5.hpp │ │ ├── unconstr_test_fn_6.hpp │ │ ├── unconstr_test_fn_7.hpp │ │ ├── unconstr_test_fn_8.hpp │ │ ├── unconstr_test_fn_9.hpp │ │ ├── zeros_test_fn_1.hpp │ │ └── zeros_test_fn_2.hpp │ │ ├── test_setup │ │ ├── Makefile.in │ │ ├── configure.in │ │ ├── cov_check │ │ └── run_cov │ │ ├── unconstrained │ │ ├── bfgs.cpp │ │ ├── cg.cpp │ │ ├── de.cpp │ │ ├── de_prmm.cpp │ │ ├── gd.cpp │ │ ├── lbfgs.cpp │ │ ├── newton.cpp │ │ ├── newton_logit_reg.cpp │ │ ├── nm.cpp │ │ ├── pso.cpp │ │ └── pso_dv.cpp │ │ └── zeros │ │ └── broyden.cpp └── stb │ ├── .github │ ├── CONTRIBUTING.md │ └── PULL_REQUEST_TEMPLATE.md │ ├── .travis.yml │ ├── README.md │ ├── data │ ├── atari_8bit_font_revised.png │ ├── easy_font_raw.png │ ├── herringbone │ │ ├── license.txt │ │ ├── template_caves_limit_connectivity.png │ │ ├── template_caves_tiny_corridors.png │ │ ├── template_corner_caves.png │ │ ├── template_horizontal_corridors_v1.png │ │ ├── template_horizontal_corridors_v2.png │ │ ├── template_horizontal_corridors_v3.png │ │ ├── template_limit_connectivity_fat.png │ │ ├── template_limited_connectivity.png │ │ ├── template_maze_2_wide.png │ │ ├── template_maze_plus_2_wide.png │ │ ├── template_open_areas.png │ │ ├── template_ref2_corner_caves.png │ │ ├── template_rooms_and_corridors.png │ │ ├── template_rooms_and_corridors_2_wide_diagonal_bias.png │ │ ├── template_rooms_limit_connectivity.png │ │ ├── template_round_rooms_diagonal_corridors.png │ │ ├── template_sean_dungeon.png │ │ ├── template_simple_caves_2_wide.png │ │ └── template_square_rooms_with_random_rects.png │ ├── map_01.png │ ├── map_02.png │ └── map_03.png │ ├── deprecated │ ├── rrsprintf.h │ ├── stb_image.c │ └── stretchy_buffer.txt │ ├── docs │ ├── other_libs.md │ ├── stb_howto.txt │ ├── stb_voxel_render_interview.md │ └── why_public_domain.md │ ├── stb.h │ ├── stb_c_lexer.h │ ├── stb_connected_components.h │ ├── stb_divide.h │ ├── stb_ds.h │ ├── stb_dxt.h │ ├── stb_easy_font.h │ ├── stb_herringbone_wang_tile.h │ ├── stb_image.h │ ├── stb_image_resize.h │ ├── stb_image_write.h │ ├── stb_include.h │ ├── stb_leakcheck.h │ ├── stb_perlin.h │ ├── stb_rect_pack.h │ ├── stb_sprintf.h │ ├── stb_textedit.h │ ├── stb_tilemap_editor.h │ ├── stb_truetype.h │ ├── stb_vorbis.c │ ├── stb_voxel_render.h │ ├── stretchy_buffer.h │ ├── tests │ ├── Makefile │ ├── c_lexer_test.c │ ├── c_lexer_test.dsp │ ├── caveview │ │ ├── README.md │ │ ├── cave_main.c │ │ ├── cave_mesher.c │ │ ├── cave_parse.c │ │ ├── cave_parse.h │ │ ├── cave_render.c │ │ ├── caveview.dsp │ │ ├── caveview.dsw │ │ ├── caveview.h │ │ ├── glext.h │ │ ├── glext_list.h │ │ ├── main.c │ │ ├── stb_gl.h │ │ ├── stb_glprog.h │ │ └── win32 │ │ │ └── SDL_windows_main.c │ ├── grid_reachability.c │ ├── herringbone.dsp │ ├── herringbone_generator.c │ ├── herringbone_map.c │ ├── herringbone_map.dsp │ ├── image_test.c │ ├── image_test.dsp │ ├── image_write_test.c │ ├── oversample │ │ ├── README.md │ │ ├── main.c │ │ ├── oversample.dsp │ │ ├── oversample.dsw │ │ ├── oversample.exe │ │ └── stb_wingraph.h │ ├── pg_test │ │ └── pg_test.c │ ├── pngsuite │ │ ├── 16bit │ │ │ ├── basi0g16.png │ │ │ ├── basi2c16.png │ │ │ ├── basi4a16.png │ │ │ ├── basi6a16.png │ │ │ ├── basn0g16.png │ │ │ ├── basn2c16.png │ │ │ ├── basn4a16.png │ │ │ ├── basn6a16.png │ │ │ ├── bgai4a16.png │ │ │ ├── bgan6a16.png │ │ │ ├── bggn4a16.png │ │ │ ├── bgyn6a16.png │ │ │ ├── oi1n0g16.png │ │ │ ├── oi1n2c16.png │ │ │ ├── oi2n0g16.png │ │ │ ├── oi2n2c16.png │ │ │ ├── oi4n0g16.png │ │ │ ├── oi4n2c16.png │ │ │ ├── oi9n0g16.png │ │ │ ├── oi9n2c16.png │ │ │ ├── tbbn2c16.png │ │ │ ├── tbgn2c16.png │ │ │ └── tbwn0g16.png │ │ ├── PngSuite.LICENSE │ │ ├── corrupt │ │ │ ├── xc1n0g08.png │ │ │ ├── xc9n2c08.png │ │ │ ├── xcrn0g04.png │ │ │ ├── xcsn0g01.png │ │ │ ├── xd0n2c08.png │ │ │ ├── xd3n2c08.png │ │ │ ├── xd9n2c08.png │ │ │ ├── xdtn0g01.png │ │ │ ├── xhdn0g08.png │ │ │ ├── xlfn0g04.png │ │ │ ├── xs1n0g01.png │ │ │ ├── xs2n0g01.png │ │ │ ├── xs4n0g01.png │ │ │ └── xs7n0g01.png │ │ ├── primary │ │ │ ├── basi0g01.png │ │ │ ├── basi0g02.png │ │ │ ├── basi0g04.png │ │ │ ├── basi0g08.png │ │ │ ├── basi2c08.png │ │ │ ├── basi3p01.png │ │ │ ├── basi3p02.png │ │ │ ├── basi3p04.png │ │ │ ├── basi3p08.png │ │ │ ├── basi4a08.png │ │ │ ├── basi6a08.png │ │ │ ├── basn0g01.png │ │ │ ├── basn0g02.png │ │ │ ├── basn0g04.png │ │ │ ├── basn0g08.png │ │ │ ├── basn2c08.png │ │ │ ├── basn3p01.png │ │ │ ├── basn3p02.png │ │ │ ├── basn3p04.png │ │ │ ├── basn3p08.png │ │ │ ├── basn4a08.png │ │ │ ├── basn6a08.png │ │ │ ├── bgai4a08.png │ │ │ ├── bgan6a08.png │ │ │ ├── bgbn4a08.png │ │ │ ├── bgwn6a08.png │ │ │ ├── s01i3p01.png │ │ │ ├── s01n3p01.png │ │ │ ├── s02i3p01.png │ │ │ ├── s02n3p01.png │ │ │ ├── s03i3p01.png │ │ │ ├── s03n3p01.png │ │ │ ├── s04i3p01.png │ │ │ ├── s04n3p01.png │ │ │ ├── s05i3p02.png │ │ │ ├── s05n3p02.png │ │ │ ├── s06i3p02.png │ │ │ ├── s06n3p02.png │ │ │ ├── s07i3p02.png │ │ │ ├── s07n3p02.png │ │ │ ├── s08i3p02.png │ │ │ ├── s08n3p02.png │ │ │ ├── s09i3p02.png │ │ │ ├── s09n3p02.png │ │ │ ├── s32i3p04.png │ │ │ ├── s32n3p04.png │ │ │ ├── s33i3p04.png │ │ │ ├── s33n3p04.png │ │ │ ├── s34i3p04.png │ │ │ ├── s34n3p04.png │ │ │ ├── s35i3p04.png │ │ │ ├── s35n3p04.png │ │ │ ├── s36i3p04.png │ │ │ ├── s36n3p04.png │ │ │ ├── s37i3p04.png │ │ │ ├── s37n3p04.png │ │ │ ├── s38i3p04.png │ │ │ ├── s38n3p04.png │ │ │ ├── s39i3p04.png │ │ │ ├── s39n3p04.png │ │ │ ├── s40i3p04.png │ │ │ ├── s40n3p04.png │ │ │ ├── tbbn0g04.png │ │ │ ├── tbbn3p08.png │ │ │ ├── tbgn3p08.png │ │ │ ├── tbrn2c08.png │ │ │ ├── tbwn3p08.png │ │ │ ├── tbyn3p08.png │ │ │ ├── tm3n3p02.png │ │ │ ├── tp0n0g08.png │ │ │ ├── tp0n2c08.png │ │ │ ├── tp0n3p08.png │ │ │ ├── tp1n3p08.png │ │ │ ├── z00n2c08.png │ │ │ ├── z03n2c08.png │ │ │ ├── z06n2c08.png │ │ │ └── z09n2c08.png │ │ ├── primary_check │ │ │ ├── basi0g01.png │ │ │ ├── basi0g02.png │ │ │ ├── basi0g04.png │ │ │ ├── basi0g08.png │ │ │ ├── basi2c08.png │ │ │ ├── basi3p01.png │ │ │ ├── basi3p02.png │ │ │ ├── basi3p04.png │ │ │ ├── basi3p08.png │ │ │ ├── basi4a08.png │ │ │ ├── basi6a08.png │ │ │ ├── basn0g01.png │ │ │ ├── basn0g02.png │ │ │ ├── basn0g04.png │ │ │ ├── basn0g08.png │ │ │ ├── basn2c08.png │ │ │ ├── basn3p01.png │ │ │ ├── basn3p02.png │ │ │ ├── basn3p04.png │ │ │ ├── basn3p08.png │ │ │ ├── basn4a08.png │ │ │ ├── basn6a08.png │ │ │ ├── bgai4a08.png │ │ │ ├── bgan6a08.png │ │ │ ├── bgbn4a08.png │ │ │ ├── bgwn6a08.png │ │ │ ├── s01i3p01.png │ │ │ ├── s01n3p01.png │ │ │ ├── s02i3p01.png │ │ │ ├── s02n3p01.png │ │ │ ├── s03i3p01.png │ │ │ ├── s03n3p01.png │ │ │ ├── s04i3p01.png │ │ │ ├── s04n3p01.png │ │ │ ├── s05i3p02.png │ │ │ ├── s05n3p02.png │ │ │ ├── s06i3p02.png │ │ │ ├── s06n3p02.png │ │ │ ├── s07i3p02.png │ │ │ ├── s07n3p02.png │ │ │ ├── s08i3p02.png │ │ │ ├── s08n3p02.png │ │ │ ├── s09i3p02.png │ │ │ ├── s09n3p02.png │ │ │ ├── s32i3p04.png │ │ │ ├── s32n3p04.png │ │ │ ├── s33i3p04.png │ │ │ ├── s33n3p04.png │ │ │ ├── s34i3p04.png │ │ │ ├── s34n3p04.png │ │ │ ├── s35i3p04.png │ │ │ ├── s35n3p04.png │ │ │ ├── s36i3p04.png │ │ │ ├── s36n3p04.png │ │ │ ├── s37i3p04.png │ │ │ ├── s37n3p04.png │ │ │ ├── s38i3p04.png │ │ │ ├── s38n3p04.png │ │ │ ├── s39i3p04.png │ │ │ ├── s39n3p04.png │ │ │ ├── s40i3p04.png │ │ │ ├── s40n3p04.png │ │ │ ├── tbbn0g04.png │ │ │ ├── tbbn3p08.png │ │ │ ├── tbgn3p08.png │ │ │ ├── tbrn2c08.png │ │ │ ├── tbwn3p08.png │ │ │ ├── tbyn3p08.png │ │ │ ├── tm3n3p02.png │ │ │ ├── tp0n0g08.png │ │ │ ├── tp0n2c08.png │ │ │ ├── tp0n3p08.png │ │ │ ├── tp1n3p08.png │ │ │ ├── z00n2c08.png │ │ │ ├── z03n2c08.png │ │ │ ├── z06n2c08.png │ │ │ └── z09n2c08.png │ │ └── unused │ │ │ ├── ccwn2c08.png │ │ │ ├── ccwn3p08.png │ │ │ ├── cdfn2c08.png │ │ │ ├── cdhn2c08.png │ │ │ ├── cdsn2c08.png │ │ │ ├── cdun2c08.png │ │ │ ├── ch1n3p04.png │ │ │ ├── ch2n3p08.png │ │ │ ├── cm0n0g04.png │ │ │ ├── cm7n0g04.png │ │ │ ├── cm9n0g04.png │ │ │ ├── cs3n2c16.png │ │ │ ├── cs3n3p08.png │ │ │ ├── cs5n2c08.png │ │ │ ├── cs5n3p08.png │ │ │ ├── cs8n2c08.png │ │ │ ├── cs8n3p08.png │ │ │ ├── ct0n0g04.png │ │ │ ├── ct1n0g04.png │ │ │ ├── cten0g04.png │ │ │ ├── ctfn0g04.png │ │ │ ├── ctgn0g04.png │ │ │ ├── cthn0g04.png │ │ │ ├── ctjn0g04.png │ │ │ ├── ctzn0g04.png │ │ │ ├── f00n0g08.png │ │ │ ├── f00n2c08.png │ │ │ ├── f01n0g08.png │ │ │ ├── f01n2c08.png │ │ │ ├── f02n0g08.png │ │ │ ├── f02n2c08.png │ │ │ ├── f03n0g08.png │ │ │ ├── f03n2c08.png │ │ │ ├── f04n0g08.png │ │ │ ├── f04n2c08.png │ │ │ ├── f99n0g04.png │ │ │ ├── g03n0g16.png │ │ │ ├── g03n2c08.png │ │ │ ├── g03n3p04.png │ │ │ ├── g04n0g16.png │ │ │ ├── g04n2c08.png │ │ │ ├── g04n3p04.png │ │ │ ├── g05n0g16.png │ │ │ ├── g05n2c08.png │ │ │ ├── g05n3p04.png │ │ │ ├── g07n0g16.png │ │ │ ├── g07n2c08.png │ │ │ ├── g07n3p04.png │ │ │ ├── g10n0g16.png │ │ │ ├── g10n2c08.png │ │ │ ├── g10n3p04.png │ │ │ ├── g25n0g16.png │ │ │ ├── g25n2c08.png │ │ │ ├── g25n3p04.png │ │ │ ├── pp0n2c16.png │ │ │ ├── pp0n6a08.png │ │ │ ├── ps1n0g08.png │ │ │ ├── ps1n2c16.png │ │ │ ├── ps2n0g08.png │ │ │ └── ps2n2c16.png │ ├── prerelease │ │ └── stb_lib.h │ ├── resample_test.cpp │ ├── resample_test_c.c │ ├── resize.dsp │ ├── sdf │ │ ├── sdf_test.c │ │ ├── sdf_test_arial_16.png │ │ ├── sdf_test_times_16.png │ │ └── sdf_test_times_50.png │ ├── stb.c │ ├── stb.dsp │ ├── stb.dsw │ ├── stb_cpp.cpp │ ├── stb_cpp.dsp │ ├── stb_static.c │ ├── stblib.dsp │ ├── stblib_test.c │ ├── stblib_test_companion.c │ ├── stretch_test.c │ ├── stretch_test.dsp │ ├── stretchy_buffer_test.c │ ├── test.sbm │ ├── test_c_compilation.c │ ├── test_c_lexer.c │ ├── test_cpp_compilation.cpp │ ├── test_ds.c │ ├── test_ds_cpp.cpp │ ├── test_dxt.c │ ├── test_easyfont.c │ ├── test_image.c │ ├── test_image_write.c │ ├── test_perlin.c │ ├── test_siphash.c │ ├── test_sprintf.c │ ├── test_truetype.c │ ├── test_vorbis.c │ ├── test_voxel.c │ ├── textedit_sample.c │ ├── tilemap_editor_integration_example.c │ └── vorbseek │ │ ├── vorbseek.c │ │ └── vorbseek.dsp │ └── tools │ ├── README.footer.md │ ├── README.header.md │ ├── README.list │ ├── build_matrix.c │ ├── easy_font_maker.c │ ├── make_readme.c │ ├── make_readme.dsp │ ├── mr.bat │ ├── unicode.c │ └── unicode │ └── unicode.dsp ├── multiscatter_brdf.cpp ├── multiscatter_brdf.h ├── noise.cpp ├── noise.h ├── optim.cpp ├── optim.h ├── output └── dummy.txt ├── pbr_baker.cpp ├── pbr_baker.sln ├── pbr_baker.vcxproj ├── pbr_baker.vcxproj.filters ├── subsurface.cpp └── subsurface.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/README.md -------------------------------------------------------------------------------- /blackbody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/blackbody.cpp -------------------------------------------------------------------------------- /blackbody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/blackbody.h -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/common.h -------------------------------------------------------------------------------- /env_brdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/env_brdf.cpp -------------------------------------------------------------------------------- /env_brdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/env_brdf.h -------------------------------------------------------------------------------- /gloss_normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/gloss_normal.cpp -------------------------------------------------------------------------------- /gloss_normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/gloss_normal.h -------------------------------------------------------------------------------- /include/armadillo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/CMakeLists.txt -------------------------------------------------------------------------------- /include/armadillo/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/LICENSE.txt -------------------------------------------------------------------------------- /include/armadillo/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/NOTICE.txt -------------------------------------------------------------------------------- /include/armadillo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/README.md -------------------------------------------------------------------------------- /include/armadillo/armadillo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/armadillo_icon.png -------------------------------------------------------------------------------- /include/armadillo/armadillo_joss_2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/armadillo_joss_2016.pdf -------------------------------------------------------------------------------- /include/armadillo/armadillo_mca_2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/armadillo_mca_2019.pdf -------------------------------------------------------------------------------- /include/armadillo/armadillo_nicta_2010.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/armadillo_nicta_2010.pdf -------------------------------------------------------------------------------- /include/armadillo/armadillo_spcs_2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/armadillo_spcs_2017.pdf -------------------------------------------------------------------------------- /include/armadillo/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/configure -------------------------------------------------------------------------------- /include/armadillo/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/docs.html -------------------------------------------------------------------------------- /include/armadillo/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/examples/Makefile -------------------------------------------------------------------------------- /include/armadillo/examples/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/examples/Makefile.cmake -------------------------------------------------------------------------------- /include/armadillo/examples/example1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/examples/example1.cpp -------------------------------------------------------------------------------- /include/armadillo/examples/example1_win64.README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/examples/example1_win64.README.txt -------------------------------------------------------------------------------- /include/armadillo/examples/example1_win64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/examples/example1_win64.sln -------------------------------------------------------------------------------- /include/armadillo/examples/example1_win64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/examples/example1_win64.vcxproj -------------------------------------------------------------------------------- /include/armadillo/examples/lib_win64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/examples/lib_win64/README.txt -------------------------------------------------------------------------------- /include/armadillo/include/armadillo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/Col_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/Col_meat.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/Gen_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/Gen_meat.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/Mat_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/Mat_meat.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/Op_bones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/Op_bones.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/Op_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/Op_meat.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/Proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/Proxy.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/Row_meat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/Row_meat.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/SpProxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/SpProxy.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/access.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/arma_rng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/arma_rng.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/arma_str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/arma_str.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/config.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/debug.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/fn_lu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/fn_lu.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/fn_qr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/fn_qr.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/fn_qz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/fn_qz.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/span.hpp -------------------------------------------------------------------------------- /include/armadillo/include/armadillo_bits/strip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/include/armadillo_bits/strip.hpp -------------------------------------------------------------------------------- /include/armadillo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/index.html -------------------------------------------------------------------------------- /include/armadillo/mex_interface/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/mex_interface/README.txt -------------------------------------------------------------------------------- /include/armadillo/mex_interface/armaMex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/mex_interface/armaMex.hpp -------------------------------------------------------------------------------- /include/armadillo/mex_interface/armaMex_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/mex_interface/armaMex_demo.cpp -------------------------------------------------------------------------------- /include/armadillo/mex_interface/inData.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/mex_interface/inData.mat -------------------------------------------------------------------------------- /include/armadillo/mex_interface/readMatTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/mex_interface/readMatTest.cpp -------------------------------------------------------------------------------- /include/armadillo/mex_interface/run_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/mex_interface/run_demo.m -------------------------------------------------------------------------------- /include/armadillo/misc/armadillo.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/misc/armadillo.pc.in -------------------------------------------------------------------------------- /include/armadillo/misc/armadillo.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/misc/armadillo.spec -------------------------------------------------------------------------------- /include/armadillo/misc/blank_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /include/armadillo/misc/doxygen.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/misc/doxygen.config -------------------------------------------------------------------------------- /include/armadillo/misc/main.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/misc/main.doxy -------------------------------------------------------------------------------- /include/armadillo/rcpp_armadillo_csda_2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/rcpp_armadillo_csda_2014.pdf -------------------------------------------------------------------------------- /include/armadillo/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/src/README.txt -------------------------------------------------------------------------------- /include/armadillo/src/wrapper1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/src/wrapper1.cpp -------------------------------------------------------------------------------- /include/armadillo/src/wrapper2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/src/wrapper2.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/Makefile -------------------------------------------------------------------------------- /include/armadillo/tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/README.txt -------------------------------------------------------------------------------- /include/armadillo/tests/attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/attributes.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/bounds.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/catch.hpp -------------------------------------------------------------------------------- /include/armadillo/tests/decomp_eig_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/decomp_eig_gen.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/decomp_eig_sym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/decomp_eig_sym.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/expr_elem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/expr_elem.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/expr_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/expr_misc.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_abs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_abs.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_accu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_accu.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_all.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_any.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_as_scalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_as_scalar.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_clamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_clamp.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_cond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_cond.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_conj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_conj.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_conv.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_conv_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_conv_to.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_cor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_cor.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_cov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_cov.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_cross.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_cumprod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_cumprod.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_cumsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_cumsum.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_det.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_det.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_diagmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_diagmat.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_diagvec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_diagvec.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_diff.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_dot.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_eigs_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_eigs_gen.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_eigs_sym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_eigs_sym.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_eps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_eps.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_expmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_expmat.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_find.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_find_finite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_find_finite.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_find_nonfinite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_find_nonfinite.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_find_unique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_find_unique.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_flip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_flip.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_hess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_hess.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_interp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_interp1.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_intersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_intersect.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_is_finite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_is_finite.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_max.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_mean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_mean.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_min.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_princomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_princomp.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_spsolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_spsolve.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_sum.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_symmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_symmat.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_trace.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_trans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_trans.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_var.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/fn_vectorise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/fn_vectorise.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/gen_linspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/gen_linspace.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/gen_ones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/gen_ones.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/gen_randu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/gen_randu.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/gen_zeros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/gen_zeros.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/gmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/gmm.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/hdf5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/hdf5.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/init_auxmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/init_auxmem.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/init_fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/init_fill.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/init_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/init_misc.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/instantiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/instantiation.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/main.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/mat_minus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/mat_minus.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/mat_mul_cx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/mat_mul_cx.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/mat_mul_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/mat_mul_real.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/mat_neg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/mat_neg.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/mat_plus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/mat_plus.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/spcol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/spcol.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/spmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/spmat.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/sprow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/sprow.cpp -------------------------------------------------------------------------------- /include/armadillo/tests/spsubview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/armadillo/tests/spsubview.cpp -------------------------------------------------------------------------------- /include/csv-parser/.clang_complete: -------------------------------------------------------------------------------- 1 | -std=c++11 2 | -------------------------------------------------------------------------------- /include/csv-parser/.gitignore: -------------------------------------------------------------------------------- 1 | *.o* 2 | node_modules 3 | target 4 | -------------------------------------------------------------------------------- /include/csv-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/LICENSE -------------------------------------------------------------------------------- /include/csv-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/README.md -------------------------------------------------------------------------------- /include/csv-parser/benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/benchmark/Makefile -------------------------------------------------------------------------------- /include/csv-parser/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/benchmark/README.md -------------------------------------------------------------------------------- /include/csv-parser/benchmark/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/benchmark/cpp/main.cpp -------------------------------------------------------------------------------- /include/csv-parser/benchmark/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/benchmark/js/main.js -------------------------------------------------------------------------------- /include/csv-parser/benchmark/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/benchmark/js/package.json -------------------------------------------------------------------------------- /include/csv-parser/benchmark/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/benchmark/rust/Cargo.lock -------------------------------------------------------------------------------- /include/csv-parser/benchmark/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/benchmark/rust/Cargo.toml -------------------------------------------------------------------------------- /include/csv-parser/benchmark/rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/benchmark/rust/src/main.rs -------------------------------------------------------------------------------- /include/csv-parser/benchmark/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/benchmark/sample.csv -------------------------------------------------------------------------------- /include/csv-parser/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/parser.hpp -------------------------------------------------------------------------------- /include/csv-parser/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/test/Makefile -------------------------------------------------------------------------------- /include/csv-parser/test/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/test/catch.hpp -------------------------------------------------------------------------------- /include/csv-parser/test/data/comma_in_quotes.csv: -------------------------------------------------------------------------------- 1 | first,last,address,city,zip 2 | John,Doe,120 any st.,"Anytown, WW",08123 -------------------------------------------------------------------------------- /include/csv-parser/test/data/delimiter.csv: -------------------------------------------------------------------------------- 1 | a;b;c 2 | 1;2;3 3 | 4;5;, 4 | -------------------------------------------------------------------------------- /include/csv-parser/test/data/empty.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,"","" 3 | 2,3,4 -------------------------------------------------------------------------------- /include/csv-parser/test/data/empty_crlf.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,"","" 3 | 2,3,4 -------------------------------------------------------------------------------- /include/csv-parser/test/data/escaped_quotes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/test/data/escaped_quotes.csv -------------------------------------------------------------------------------- /include/csv-parser/test/data/json.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/test/data/json.csv -------------------------------------------------------------------------------- /include/csv-parser/test/data/newlines.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,3 3 | "Once upon 4 | a time",5,6 5 | 7,8,9 6 | -------------------------------------------------------------------------------- /include/csv-parser/test/data/newlines_crlf.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,3 3 | "Once upon 4 | a time",5,6 5 | 7,8,9 6 | -------------------------------------------------------------------------------- /include/csv-parser/test/data/quote.csv: -------------------------------------------------------------------------------- 1 | '1, 2, 3','4, 5, 6',' 2 | 7 3 | 8 4 | 9' 5 | -------------------------------------------------------------------------------- /include/csv-parser/test/data/simple.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,3 3 | -------------------------------------------------------------------------------- /include/csv-parser/test/data/simple_crlf.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,3 3 | -------------------------------------------------------------------------------- /include/csv-parser/test/data/terminator.csv: -------------------------------------------------------------------------------- 1 | a,b,c;1,2,3;4,5,6 2 | -------------------------------------------------------------------------------- /include/csv-parser/test/data/utf8.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,3 3 | 4,5,ʤ -------------------------------------------------------------------------------- /include/csv-parser/test/parser_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/csv-parser/test/parser_test.cpp -------------------------------------------------------------------------------- /include/cxxopts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/.gitignore -------------------------------------------------------------------------------- /include/cxxopts/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/.travis.yml -------------------------------------------------------------------------------- /include/cxxopts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/CHANGELOG.md -------------------------------------------------------------------------------- /include/cxxopts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/CMakeLists.txt -------------------------------------------------------------------------------- /include/cxxopts/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/INSTALL -------------------------------------------------------------------------------- /include/cxxopts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/LICENSE -------------------------------------------------------------------------------- /include/cxxopts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/README.md -------------------------------------------------------------------------------- /include/cxxopts/cxxopts-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/cxxopts-config.cmake.in -------------------------------------------------------------------------------- /include/cxxopts/include/cxxopts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/include/cxxopts.hpp -------------------------------------------------------------------------------- /include/cxxopts/src/.gitignore: -------------------------------------------------------------------------------- 1 | example 2 | -------------------------------------------------------------------------------- /include/cxxopts/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/src/CMakeLists.txt -------------------------------------------------------------------------------- /include/cxxopts/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/src/example.cpp -------------------------------------------------------------------------------- /include/cxxopts/test/.gitignore: -------------------------------------------------------------------------------- 1 | options_test 2 | -------------------------------------------------------------------------------- /include/cxxopts/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/test/CMakeLists.txt -------------------------------------------------------------------------------- /include/cxxopts/test/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/test/catch.hpp -------------------------------------------------------------------------------- /include/cxxopts/test/link_a.cpp: -------------------------------------------------------------------------------- 1 | #include "cxxopts.hpp" 2 | 3 | int main(int, char**) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /include/cxxopts/test/link_b.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/cxxopts/test/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | -------------------------------------------------------------------------------- /include/cxxopts/test/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/cxxopts/test/options.cpp -------------------------------------------------------------------------------- /include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/common.hpp -------------------------------------------------------------------------------- /include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /include/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /include/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /include/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /include/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /include/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /include/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /include/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /include/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /include/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_exponential.hpp -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_exponential.inl -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_geometric.hpp -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_geometric.inl -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_trigonometric.hpp -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_trigonometric.inl -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_vector_relational.hpp -------------------------------------------------------------------------------- /include/glm/detail/intrinsic_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/intrinsic_vector_relational.inl -------------------------------------------------------------------------------- /include/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/precision.hpp -------------------------------------------------------------------------------- /include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /include/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec4_avx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec4_avx.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec4_avx2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec4_avx2.inl -------------------------------------------------------------------------------- /include/glm/detail/type_vec4_sse2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/detail/type_vec4_sse2.inl -------------------------------------------------------------------------------- /include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/exponential.hpp -------------------------------------------------------------------------------- /include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/ext.hpp -------------------------------------------------------------------------------- /include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/fwd.hpp -------------------------------------------------------------------------------- /include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/geometric.hpp -------------------------------------------------------------------------------- /include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/glm.hpp -------------------------------------------------------------------------------- /include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /include/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /include/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /include/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /include/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /include/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /include/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /include/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /include/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /include/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /include/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /include/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/integer.hpp -------------------------------------------------------------------------------- /include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/matrix.hpp -------------------------------------------------------------------------------- /include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/packing.hpp -------------------------------------------------------------------------------- /include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/vec2.hpp -------------------------------------------------------------------------------- /include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/vec3.hpp -------------------------------------------------------------------------------- /include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/vec4.hpp -------------------------------------------------------------------------------- /include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /include/hammersley/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/hammersley/LICENSE -------------------------------------------------------------------------------- /include/hammersley/hammersley.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/hammersley/hammersley.c -------------------------------------------------------------------------------- /include/hammersley/hammersley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/hammersley/hammersley.h -------------------------------------------------------------------------------- /include/optim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/.gitignore -------------------------------------------------------------------------------- /include/optim/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/.travis.yml -------------------------------------------------------------------------------- /include/optim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/LICENSE -------------------------------------------------------------------------------- /include/optim/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/Makefile.in -------------------------------------------------------------------------------- /include/optim/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/NOTICE.txt -------------------------------------------------------------------------------- /include/optim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/README.md -------------------------------------------------------------------------------- /include/optim/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/configure -------------------------------------------------------------------------------- /include/optim/examples/logit_reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/examples/logit_reg.cpp -------------------------------------------------------------------------------- /include/optim/include/constrained/sumt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/constrained/sumt.hpp -------------------------------------------------------------------------------- /include/optim/include/line_search/more_thuente.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/line_search/more_thuente.hpp -------------------------------------------------------------------------------- /include/optim/include/misc/error_reporting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/misc/error_reporting.hpp -------------------------------------------------------------------------------- /include/optim/include/misc/error_reporting.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/misc/error_reporting.ipp -------------------------------------------------------------------------------- /include/optim/include/misc/jacobian_adjust.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/misc/jacobian_adjust.hpp -------------------------------------------------------------------------------- /include/optim/include/misc/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/misc/misc.hpp -------------------------------------------------------------------------------- /include/optim/include/misc/numerical_gradient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/misc/numerical_gradient.hpp -------------------------------------------------------------------------------- /include/optim/include/misc/numerical_hessian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/misc/numerical_hessian.hpp -------------------------------------------------------------------------------- /include/optim/include/misc/optim_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/misc/optim_options.hpp -------------------------------------------------------------------------------- /include/optim/include/misc/optim_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/misc/optim_structs.hpp -------------------------------------------------------------------------------- /include/optim/include/misc/transform_vals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/misc/transform_vals.hpp -------------------------------------------------------------------------------- /include/optim/include/misc/unit_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/misc/unit_vec.hpp -------------------------------------------------------------------------------- /include/optim/include/misc/unit_vec.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/misc/unit_vec.ipp -------------------------------------------------------------------------------- /include/optim/include/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/optim.hpp -------------------------------------------------------------------------------- /include/optim/include/unconstrained/bfgs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/unconstrained/bfgs.hpp -------------------------------------------------------------------------------- /include/optim/include/unconstrained/cg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/unconstrained/cg.hpp -------------------------------------------------------------------------------- /include/optim/include/unconstrained/de.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/unconstrained/de.hpp -------------------------------------------------------------------------------- /include/optim/include/unconstrained/de_prmm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/unconstrained/de_prmm.hpp -------------------------------------------------------------------------------- /include/optim/include/unconstrained/gd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/unconstrained/gd.hpp -------------------------------------------------------------------------------- /include/optim/include/unconstrained/lbfgs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/unconstrained/lbfgs.hpp -------------------------------------------------------------------------------- /include/optim/include/unconstrained/newton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/unconstrained/newton.hpp -------------------------------------------------------------------------------- /include/optim/include/unconstrained/nm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/unconstrained/nm.hpp -------------------------------------------------------------------------------- /include/optim/include/unconstrained/pso.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/unconstrained/pso.hpp -------------------------------------------------------------------------------- /include/optim/include/unconstrained/pso_dv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/unconstrained/pso_dv.hpp -------------------------------------------------------------------------------- /include/optim/include/zeros/broyden.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/include/zeros/broyden.hpp -------------------------------------------------------------------------------- /include/optim/src/constrained/sumt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/constrained/sumt.cpp -------------------------------------------------------------------------------- /include/optim/src/line_search/more_thuente.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/line_search/more_thuente.cpp -------------------------------------------------------------------------------- /include/optim/src/unconstrained/bfgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/unconstrained/bfgs.cpp -------------------------------------------------------------------------------- /include/optim/src/unconstrained/cg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/unconstrained/cg.cpp -------------------------------------------------------------------------------- /include/optim/src/unconstrained/de.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/unconstrained/de.cpp -------------------------------------------------------------------------------- /include/optim/src/unconstrained/de_prmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/unconstrained/de_prmm.cpp -------------------------------------------------------------------------------- /include/optim/src/unconstrained/gd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/unconstrained/gd.cpp -------------------------------------------------------------------------------- /include/optim/src/unconstrained/lbfgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/unconstrained/lbfgs.cpp -------------------------------------------------------------------------------- /include/optim/src/unconstrained/newton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/unconstrained/newton.cpp -------------------------------------------------------------------------------- /include/optim/src/unconstrained/nm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/unconstrained/nm.cpp -------------------------------------------------------------------------------- /include/optim/src/unconstrained/pso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/unconstrained/pso.cpp -------------------------------------------------------------------------------- /include/optim/src/unconstrained/pso_dv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/unconstrained/pso_dv.cpp -------------------------------------------------------------------------------- /include/optim/src/zeros/broyden.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/src/zeros/broyden.cpp -------------------------------------------------------------------------------- /include/optim/tests/constrained/sumt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/constrained/sumt.cpp -------------------------------------------------------------------------------- /include/optim/tests/misc/error_reporting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/misc/error_reporting.cpp -------------------------------------------------------------------------------- /include/optim/tests/misc/jacobian_adjust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/misc/jacobian_adjust.cpp -------------------------------------------------------------------------------- /include/optim/tests/misc/numerical_gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/misc/numerical_gradient.cpp -------------------------------------------------------------------------------- /include/optim/tests/misc/numerical_hessian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/misc/numerical_hessian.cpp -------------------------------------------------------------------------------- /include/optim/tests/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/setup -------------------------------------------------------------------------------- /include/optim/tests/test_fns/constr_test_fn_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/test_fns/constr_test_fn_1.hpp -------------------------------------------------------------------------------- /include/optim/tests/test_fns/constr_test_fn_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/test_fns/constr_test_fn_2.hpp -------------------------------------------------------------------------------- /include/optim/tests/test_fns/constr_test_fn_3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/test_fns/constr_test_fn_3.hpp -------------------------------------------------------------------------------- /include/optim/tests/test_fns/test_fns.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/test_fns/test_fns.hpp -------------------------------------------------------------------------------- /include/optim/tests/test_fns/test_solutions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/test_fns/test_solutions.hpp -------------------------------------------------------------------------------- /include/optim/tests/test_fns/zeros_test_fn_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/test_fns/zeros_test_fn_1.hpp -------------------------------------------------------------------------------- /include/optim/tests/test_fns/zeros_test_fn_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/test_fns/zeros_test_fn_2.hpp -------------------------------------------------------------------------------- /include/optim/tests/test_setup/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/test_setup/Makefile.in -------------------------------------------------------------------------------- /include/optim/tests/test_setup/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/test_setup/configure.in -------------------------------------------------------------------------------- /include/optim/tests/test_setup/cov_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/test_setup/cov_check -------------------------------------------------------------------------------- /include/optim/tests/test_setup/run_cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/test_setup/run_cov -------------------------------------------------------------------------------- /include/optim/tests/unconstrained/bfgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/unconstrained/bfgs.cpp -------------------------------------------------------------------------------- /include/optim/tests/unconstrained/cg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/unconstrained/cg.cpp -------------------------------------------------------------------------------- /include/optim/tests/unconstrained/de.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/unconstrained/de.cpp -------------------------------------------------------------------------------- /include/optim/tests/unconstrained/de_prmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/unconstrained/de_prmm.cpp -------------------------------------------------------------------------------- /include/optim/tests/unconstrained/gd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/unconstrained/gd.cpp -------------------------------------------------------------------------------- /include/optim/tests/unconstrained/lbfgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/unconstrained/lbfgs.cpp -------------------------------------------------------------------------------- /include/optim/tests/unconstrained/newton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/unconstrained/newton.cpp -------------------------------------------------------------------------------- /include/optim/tests/unconstrained/nm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/unconstrained/nm.cpp -------------------------------------------------------------------------------- /include/optim/tests/unconstrained/pso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/unconstrained/pso.cpp -------------------------------------------------------------------------------- /include/optim/tests/unconstrained/pso_dv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/unconstrained/pso_dv.cpp -------------------------------------------------------------------------------- /include/optim/tests/zeros/broyden.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/optim/tests/zeros/broyden.cpp -------------------------------------------------------------------------------- /include/stb/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /include/stb/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /include/stb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/.travis.yml -------------------------------------------------------------------------------- /include/stb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/README.md -------------------------------------------------------------------------------- /include/stb/data/atari_8bit_font_revised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/data/atari_8bit_font_revised.png -------------------------------------------------------------------------------- /include/stb/data/easy_font_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/data/easy_font_raw.png -------------------------------------------------------------------------------- /include/stb/data/herringbone/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/data/herringbone/license.txt -------------------------------------------------------------------------------- /include/stb/data/map_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/data/map_01.png -------------------------------------------------------------------------------- /include/stb/data/map_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/data/map_02.png -------------------------------------------------------------------------------- /include/stb/data/map_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/data/map_03.png -------------------------------------------------------------------------------- /include/stb/deprecated/rrsprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/deprecated/rrsprintf.h -------------------------------------------------------------------------------- /include/stb/deprecated/stb_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/deprecated/stb_image.c -------------------------------------------------------------------------------- /include/stb/deprecated/stretchy_buffer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/deprecated/stretchy_buffer.txt -------------------------------------------------------------------------------- /include/stb/docs/other_libs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/docs/other_libs.md -------------------------------------------------------------------------------- /include/stb/docs/stb_howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/docs/stb_howto.txt -------------------------------------------------------------------------------- /include/stb/docs/stb_voxel_render_interview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/docs/stb_voxel_render_interview.md -------------------------------------------------------------------------------- /include/stb/docs/why_public_domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/docs/why_public_domain.md -------------------------------------------------------------------------------- /include/stb/stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb.h -------------------------------------------------------------------------------- /include/stb/stb_c_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_c_lexer.h -------------------------------------------------------------------------------- /include/stb/stb_connected_components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_connected_components.h -------------------------------------------------------------------------------- /include/stb/stb_divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_divide.h -------------------------------------------------------------------------------- /include/stb/stb_ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_ds.h -------------------------------------------------------------------------------- /include/stb/stb_dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_dxt.h -------------------------------------------------------------------------------- /include/stb/stb_easy_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_easy_font.h -------------------------------------------------------------------------------- /include/stb/stb_herringbone_wang_tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_herringbone_wang_tile.h -------------------------------------------------------------------------------- /include/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_image.h -------------------------------------------------------------------------------- /include/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_image_resize.h -------------------------------------------------------------------------------- /include/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_image_write.h -------------------------------------------------------------------------------- /include/stb/stb_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_include.h -------------------------------------------------------------------------------- /include/stb/stb_leakcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_leakcheck.h -------------------------------------------------------------------------------- /include/stb/stb_perlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_perlin.h -------------------------------------------------------------------------------- /include/stb/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_rect_pack.h -------------------------------------------------------------------------------- /include/stb/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_sprintf.h -------------------------------------------------------------------------------- /include/stb/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_textedit.h -------------------------------------------------------------------------------- /include/stb/stb_tilemap_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_tilemap_editor.h -------------------------------------------------------------------------------- /include/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_truetype.h -------------------------------------------------------------------------------- /include/stb/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_vorbis.c -------------------------------------------------------------------------------- /include/stb/stb_voxel_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stb_voxel_render.h -------------------------------------------------------------------------------- /include/stb/stretchy_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/stretchy_buffer.h -------------------------------------------------------------------------------- /include/stb/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/Makefile -------------------------------------------------------------------------------- /include/stb/tests/c_lexer_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/c_lexer_test.c -------------------------------------------------------------------------------- /include/stb/tests/c_lexer_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/c_lexer_test.dsp -------------------------------------------------------------------------------- /include/stb/tests/caveview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/README.md -------------------------------------------------------------------------------- /include/stb/tests/caveview/cave_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/cave_main.c -------------------------------------------------------------------------------- /include/stb/tests/caveview/cave_mesher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/cave_mesher.c -------------------------------------------------------------------------------- /include/stb/tests/caveview/cave_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/cave_parse.c -------------------------------------------------------------------------------- /include/stb/tests/caveview/cave_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/cave_parse.h -------------------------------------------------------------------------------- /include/stb/tests/caveview/cave_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/cave_render.c -------------------------------------------------------------------------------- /include/stb/tests/caveview/caveview.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/caveview.dsp -------------------------------------------------------------------------------- /include/stb/tests/caveview/caveview.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/caveview.dsw -------------------------------------------------------------------------------- /include/stb/tests/caveview/caveview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/caveview.h -------------------------------------------------------------------------------- /include/stb/tests/caveview/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/glext.h -------------------------------------------------------------------------------- /include/stb/tests/caveview/glext_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/glext_list.h -------------------------------------------------------------------------------- /include/stb/tests/caveview/main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/stb/tests/caveview/stb_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/stb_gl.h -------------------------------------------------------------------------------- /include/stb/tests/caveview/stb_glprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/caveview/stb_glprog.h -------------------------------------------------------------------------------- /include/stb/tests/grid_reachability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/grid_reachability.c -------------------------------------------------------------------------------- /include/stb/tests/herringbone.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/herringbone.dsp -------------------------------------------------------------------------------- /include/stb/tests/herringbone_generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/herringbone_generator.c -------------------------------------------------------------------------------- /include/stb/tests/herringbone_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/herringbone_map.c -------------------------------------------------------------------------------- /include/stb/tests/herringbone_map.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/herringbone_map.dsp -------------------------------------------------------------------------------- /include/stb/tests/image_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/image_test.c -------------------------------------------------------------------------------- /include/stb/tests/image_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/image_test.dsp -------------------------------------------------------------------------------- /include/stb/tests/image_write_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/image_write_test.c -------------------------------------------------------------------------------- /include/stb/tests/oversample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/oversample/README.md -------------------------------------------------------------------------------- /include/stb/tests/oversample/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/oversample/main.c -------------------------------------------------------------------------------- /include/stb/tests/oversample/oversample.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/oversample/oversample.dsp -------------------------------------------------------------------------------- /include/stb/tests/oversample/oversample.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/oversample/oversample.dsw -------------------------------------------------------------------------------- /include/stb/tests/oversample/oversample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/oversample/oversample.exe -------------------------------------------------------------------------------- /include/stb/tests/oversample/stb_wingraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/oversample/stb_wingraph.h -------------------------------------------------------------------------------- /include/stb/tests/pg_test/pg_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pg_test/pg_test.c -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/basi0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/basi0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/basi2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/basi2c16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/basi4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/basi4a16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/basi6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/basi6a16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/basn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/basn0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/basn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/basn2c16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/basn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/basn4a16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/basn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/basn6a16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/bgai4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/bgai4a16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/bgan6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/bgan6a16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/bggn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/bggn4a16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/bgyn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/bgyn6a16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/oi1n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/oi1n0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/oi1n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/oi1n2c16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/oi2n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/oi2n0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/oi2n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/oi2n2c16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/oi4n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/oi4n0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/oi4n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/oi4n2c16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/oi9n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/oi9n0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/oi9n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/oi9n2c16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/tbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/tbbn2c16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/tbgn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/tbgn2c16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/16bit/tbwn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/16bit/tbwn0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/PngSuite.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/PngSuite.LICENSE -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xc1n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xc1n0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xc9n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xc9n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xcrn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xcrn0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xcsn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xcsn0g01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xd0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xd0n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xd3n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xd3n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xd9n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xd9n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xdtn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xdtn0g01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xhdn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xhdn0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xlfn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xlfn0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xs1n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xs1n0g01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xs2n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xs2n0g01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xs4n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xs4n0g01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/corrupt/xs7n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/corrupt/xs7n0g01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basi0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basi0g01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basi0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basi0g02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basi0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basi0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basi0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basi0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basi2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basi2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basi3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basi3p01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basi3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basi3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basi3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basi3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basi3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basi3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basi4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basi4a08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basi6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basi6a08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basn0g01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basn0g02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basn0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basn0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basn2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basn3p01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basn3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basn3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basn3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basn4a08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/basn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/basn6a08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/bgai4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/bgai4a08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/bgan6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/bgan6a08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/bgbn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/bgbn4a08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/bgwn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/bgwn6a08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s01i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s01i3p01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s01n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s01n3p01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s02i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s02i3p01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s02n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s02n3p01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s03i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s03i3p01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s03n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s03n3p01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s04i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s04i3p01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s04n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s04n3p01.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s05i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s05i3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s05n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s05n3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s06i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s06i3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s06n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s06n3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s07i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s07i3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s07n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s07n3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s08i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s08i3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s08n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s08n3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s09i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s09i3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s09n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s09n3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s32i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s32i3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s32n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s32n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s33i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s33i3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s33n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s33n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s34i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s34i3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s34n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s34n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s35i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s35i3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s35n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s35n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s36i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s36i3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s36n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s36n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s37i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s37i3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s37n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s37n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s38i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s38i3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s38n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s38n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s39i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s39i3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s39n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s39n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s40i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s40i3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/s40n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/s40n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/tbbn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/tbbn0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/tbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/tbbn3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/tbgn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/tbgn3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/tbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/tbrn2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/tbwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/tbwn3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/tbyn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/tbyn3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/tm3n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/tm3n3p02.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/tp0n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/tp0n0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/tp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/tp0n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/tp0n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/tp0n3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/tp1n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/tp1n3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/z00n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/z00n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/z03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/z03n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/z06n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/z06n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/primary/z09n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/primary/z09n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ccwn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ccwn2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ccwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ccwn3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cdfn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cdfn2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cdhn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cdhn2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cdsn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cdsn2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cdun2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cdun2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ch1n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ch1n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ch2n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ch2n3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cm0n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cm0n0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cm7n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cm7n0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cm9n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cm9n0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cs3n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cs3n2c16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cs3n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cs3n3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cs5n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cs5n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cs5n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cs5n3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cs8n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cs8n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cs8n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cs8n3p08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ct0n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ct0n0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ct1n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ct1n0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cten0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cten0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ctfn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ctfn0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ctgn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ctgn0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/cthn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/cthn0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ctjn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ctjn0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ctzn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ctzn0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/f00n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/f00n0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/f00n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/f00n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/f01n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/f01n0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/f01n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/f01n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/f02n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/f02n0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/f02n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/f02n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/f03n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/f03n0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/f03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/f03n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/f04n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/f04n0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/f04n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/f04n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/f99n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/f99n0g04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g03n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g03n0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g03n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g03n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g03n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g04n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g04n0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g04n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g04n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g04n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g04n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g05n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g05n0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g05n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g05n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g05n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g05n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g07n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g07n0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g07n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g07n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g07n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g07n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g10n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g10n0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g10n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g10n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g10n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g10n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g25n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g25n0g16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g25n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g25n2c08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/g25n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/g25n3p04.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/pp0n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/pp0n2c16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/pp0n6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/pp0n6a08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ps1n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ps1n0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ps1n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ps1n2c16.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ps2n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ps2n0g08.png -------------------------------------------------------------------------------- /include/stb/tests/pngsuite/unused/ps2n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/pngsuite/unused/ps2n2c16.png -------------------------------------------------------------------------------- /include/stb/tests/prerelease/stb_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/prerelease/stb_lib.h -------------------------------------------------------------------------------- /include/stb/tests/resample_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/resample_test.cpp -------------------------------------------------------------------------------- /include/stb/tests/resample_test_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/resample_test_c.c -------------------------------------------------------------------------------- /include/stb/tests/resize.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/resize.dsp -------------------------------------------------------------------------------- /include/stb/tests/sdf/sdf_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/sdf/sdf_test.c -------------------------------------------------------------------------------- /include/stb/tests/sdf/sdf_test_arial_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/sdf/sdf_test_arial_16.png -------------------------------------------------------------------------------- /include/stb/tests/sdf/sdf_test_times_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/sdf/sdf_test_times_16.png -------------------------------------------------------------------------------- /include/stb/tests/sdf/sdf_test_times_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/sdf/sdf_test_times_50.png -------------------------------------------------------------------------------- /include/stb/tests/stb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stb.c -------------------------------------------------------------------------------- /include/stb/tests/stb.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stb.dsp -------------------------------------------------------------------------------- /include/stb/tests/stb.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stb.dsw -------------------------------------------------------------------------------- /include/stb/tests/stb_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stb_cpp.cpp -------------------------------------------------------------------------------- /include/stb/tests/stb_cpp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stb_cpp.dsp -------------------------------------------------------------------------------- /include/stb/tests/stb_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stb_static.c -------------------------------------------------------------------------------- /include/stb/tests/stblib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stblib.dsp -------------------------------------------------------------------------------- /include/stb/tests/stblib_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stblib_test.c -------------------------------------------------------------------------------- /include/stb/tests/stblib_test_companion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stblib_test_companion.c -------------------------------------------------------------------------------- /include/stb/tests/stretch_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stretch_test.c -------------------------------------------------------------------------------- /include/stb/tests/stretch_test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stretch_test.dsp -------------------------------------------------------------------------------- /include/stb/tests/stretchy_buffer_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/stretchy_buffer_test.c -------------------------------------------------------------------------------- /include/stb/tests/test.sbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/test.sbm -------------------------------------------------------------------------------- /include/stb/tests/test_c_compilation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/test_c_compilation.c -------------------------------------------------------------------------------- /include/stb/tests/test_c_lexer.c: -------------------------------------------------------------------------------- 1 | #include "stb_c_lexer.h" 2 | -------------------------------------------------------------------------------- /include/stb/tests/test_cpp_compilation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/test_cpp_compilation.cpp -------------------------------------------------------------------------------- /include/stb/tests/test_ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/test_ds.c -------------------------------------------------------------------------------- /include/stb/tests/test_ds_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/test_ds_cpp.cpp -------------------------------------------------------------------------------- /include/stb/tests/test_dxt.c: -------------------------------------------------------------------------------- 1 | #include "stb_dxt.h" 2 | -------------------------------------------------------------------------------- /include/stb/tests/test_easyfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/test_easyfont.c -------------------------------------------------------------------------------- /include/stb/tests/test_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/test_image.c -------------------------------------------------------------------------------- /include/stb/tests/test_image_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/test_image_write.c -------------------------------------------------------------------------------- /include/stb/tests/test_perlin.c: -------------------------------------------------------------------------------- 1 | #include "stb_perlin.h" -------------------------------------------------------------------------------- /include/stb/tests/test_siphash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/test_siphash.c -------------------------------------------------------------------------------- /include/stb/tests/test_sprintf.c: -------------------------------------------------------------------------------- 1 | #include "stb_sprintf.h" -------------------------------------------------------------------------------- /include/stb/tests/test_truetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/test_truetype.c -------------------------------------------------------------------------------- /include/stb/tests/test_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/test_vorbis.c -------------------------------------------------------------------------------- /include/stb/tests/test_voxel.c: -------------------------------------------------------------------------------- 1 | #include "stb_voxel_render.h" -------------------------------------------------------------------------------- /include/stb/tests/textedit_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/textedit_sample.c -------------------------------------------------------------------------------- /include/stb/tests/vorbseek/vorbseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/vorbseek/vorbseek.c -------------------------------------------------------------------------------- /include/stb/tests/vorbseek/vorbseek.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tests/vorbseek/vorbseek.dsp -------------------------------------------------------------------------------- /include/stb/tools/README.footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tools/README.footer.md -------------------------------------------------------------------------------- /include/stb/tools/README.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tools/README.header.md -------------------------------------------------------------------------------- /include/stb/tools/README.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tools/README.list -------------------------------------------------------------------------------- /include/stb/tools/build_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tools/build_matrix.c -------------------------------------------------------------------------------- /include/stb/tools/easy_font_maker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tools/easy_font_maker.c -------------------------------------------------------------------------------- /include/stb/tools/make_readme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tools/make_readme.c -------------------------------------------------------------------------------- /include/stb/tools/make_readme.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tools/make_readme.dsp -------------------------------------------------------------------------------- /include/stb/tools/mr.bat: -------------------------------------------------------------------------------- 1 | debug\make_readme 2 | -------------------------------------------------------------------------------- /include/stb/tools/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tools/unicode.c -------------------------------------------------------------------------------- /include/stb/tools/unicode/unicode.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/include/stb/tools/unicode/unicode.dsp -------------------------------------------------------------------------------- /multiscatter_brdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/multiscatter_brdf.cpp -------------------------------------------------------------------------------- /multiscatter_brdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/multiscatter_brdf.h -------------------------------------------------------------------------------- /noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/noise.cpp -------------------------------------------------------------------------------- /noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/noise.h -------------------------------------------------------------------------------- /optim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/optim.cpp -------------------------------------------------------------------------------- /optim.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/dummy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/output/dummy.txt -------------------------------------------------------------------------------- /pbr_baker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/pbr_baker.cpp -------------------------------------------------------------------------------- /pbr_baker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/pbr_baker.sln -------------------------------------------------------------------------------- /pbr_baker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/pbr_baker.vcxproj -------------------------------------------------------------------------------- /pbr_baker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/pbr_baker.vcxproj.filters -------------------------------------------------------------------------------- /subsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/subsurface.cpp -------------------------------------------------------------------------------- /subsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypernewbie/pbr_baker/HEAD/subsurface.h --------------------------------------------------------------------------------