├── Cpp-Utilities ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── _Legacy │ ├── .gitignore │ ├── AoB Scan │ │ ├── Makefile │ │ ├── include │ │ │ └── SP_AoB_Scan.hpp │ │ ├── src │ │ │ └── SP_AoB_Scan.cpp │ │ └── test │ │ │ ├── Makefile │ │ │ ├── include │ │ │ └── SP_AoB_Scan_Example.hpp │ │ │ └── src │ │ │ └── SP_AoB_Scan_Example.cpp │ ├── Assembly Injection │ │ ├── x64 │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── include │ │ │ │ └── AsmInject_x64.hpp │ │ │ ├── src │ │ │ │ └── AsmInject_x64.cpp │ │ │ └── test │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── include │ │ │ │ └── Example_AsmInject_x64.hpp │ │ │ │ └── src │ │ │ │ ├── Example_AsmInject_x64.cpp │ │ │ │ └── asm │ │ │ │ └── Code_Example_VS.asm │ │ └── x86 │ │ │ ├── AsmInject.sln │ │ │ ├── AsmInject.vcxproj │ │ │ ├── AsmInject.vcxproj.filters │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── include │ │ │ └── AsmInject_x86.hpp │ │ │ ├── src │ │ │ └── AsmInject_x86.cpp │ │ │ └── test │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── include │ │ │ └── Example_AsmInject_x86.hpp │ │ │ └── src │ │ │ └── Example_AsmInject_x86.cpp │ ├── IO │ │ ├── Makefile │ │ ├── include │ │ │ ├── SP_IO.hpp │ │ │ └── SP_IO_Strings.hpp │ │ └── src │ │ │ ├── SP_Keyboard_IO.cpp │ │ │ ├── SP_Shell_IO.cpp │ │ │ └── SP_Text_IO.cpp │ ├── Makefile │ ├── Preprocessor │ │ ├── PreprocessorArithmetic.h │ │ └── SpDetours.h │ ├── README.md │ ├── SearchStringSet │ │ ├── SearchStringSet.sln │ │ ├── SearchStringSet.vcxproj │ │ ├── SearchStringSet.vcxproj.filters │ │ ├── SpSearchStringSet.h │ │ └── lib │ │ │ └── seqan │ │ │ ├── align.h │ │ │ ├── align │ │ │ ├── align_base.h │ │ │ ├── align_cols.h │ │ │ ├── align_config.h │ │ │ ├── align_interface_wrapper.h │ │ │ ├── align_iterator_base.h │ │ │ ├── align_metafunctions.h │ │ │ ├── align_traceback.h │ │ │ ├── alignment_algorithm_tags.h │ │ │ ├── alignment_operations.h │ │ │ ├── dp_algorithm_impl.h │ │ │ ├── dp_align_simd_helper.h │ │ │ ├── dp_band.h │ │ │ ├── dp_cell.h │ │ │ ├── dp_cell_affine.h │ │ │ ├── dp_cell_dynamic.h │ │ │ ├── dp_cell_linear.h │ │ │ ├── dp_context.h │ │ │ ├── dp_formula.h │ │ │ ├── dp_formula_affine.h │ │ │ ├── dp_formula_dynamic.h │ │ │ ├── dp_formula_linear.h │ │ │ ├── dp_matrix.h │ │ │ ├── dp_matrix_navigator.h │ │ │ ├── dp_matrix_navigator_score_matrix.h │ │ │ ├── dp_matrix_navigator_score_matrix_sparse.h │ │ │ ├── dp_matrix_navigator_trace_matrix.h │ │ │ ├── dp_matrix_sparse.h │ │ │ ├── dp_meta_info.h │ │ │ ├── dp_profile.h │ │ │ ├── dp_scout.h │ │ │ ├── dp_scout_simd.h │ │ │ ├── dp_setup.h │ │ │ ├── dp_trace_segment.h │ │ │ ├── dp_traceback_adaptor.h │ │ │ ├── dp_traceback_impl.h │ │ │ ├── evaluate_alignment.h │ │ │ ├── fragment.h │ │ │ ├── gap_anchor.h │ │ │ ├── gapped_value_type.h │ │ │ ├── gaps_anchor.h │ │ │ ├── gaps_array.h │ │ │ ├── gaps_base.h │ │ │ ├── gaps_iterator_anchor.h │ │ │ ├── gaps_iterator_array.h │ │ │ ├── gaps_iterator_base.h │ │ │ ├── global_alignment_banded.h │ │ │ ├── global_alignment_hirschberg_impl.h │ │ │ ├── global_alignment_myers_hirschberg_impl.h │ │ │ ├── global_alignment_myers_impl.h │ │ │ ├── global_alignment_specialized.h │ │ │ ├── global_alignment_unbanded.h │ │ │ ├── local_alignment_banded.h │ │ │ ├── local_alignment_banded_waterman_eggert_impl.h │ │ │ ├── local_alignment_enumeration.h │ │ │ ├── local_alignment_enumeration_banded.h │ │ │ ├── local_alignment_enumeration_unbanded.h │ │ │ ├── local_alignment_unbanded.h │ │ │ ├── local_alignment_waterman_eggert_impl.h │ │ │ └── matrix_base.h │ │ │ ├── align_extend.h │ │ │ ├── align_extend │ │ │ ├── align_extend.h │ │ │ ├── align_extend_base.h │ │ │ └── dp_scout_xdrop.h │ │ │ ├── align_profile.h │ │ │ ├── align_profile │ │ │ ├── add_to_profile.h │ │ │ └── score_profile_seq.h │ │ │ ├── align_split.h │ │ │ ├── align_split │ │ │ ├── align_split_interface.h │ │ │ └── dp_scout_split.h │ │ │ ├── alignment_free.h │ │ │ ├── alignment_free │ │ │ ├── af_d2.h │ │ │ ├── af_d2star.h │ │ │ ├── af_d2z.h │ │ │ ├── af_n2.h │ │ │ ├── alignment_free_base.h │ │ │ ├── alignment_free_comparison.h │ │ │ └── kmer_functions.h │ │ │ ├── arg_parse.h │ │ │ ├── arg_parse │ │ │ ├── arg_parse_argument.h │ │ │ ├── arg_parse_ctd_support.h │ │ │ ├── arg_parse_doc.h │ │ │ ├── arg_parse_exceptions.h │ │ │ ├── arg_parse_option.h │ │ │ ├── arg_parse_parse.h │ │ │ ├── arg_parse_type_support.h │ │ │ ├── arg_parse_version_check.h │ │ │ ├── argument_parser.h │ │ │ ├── tool_doc.h │ │ │ └── xml_support.h │ │ │ ├── bam_io.h │ │ │ ├── bam_io │ │ │ ├── bam_alignment_record.h │ │ │ ├── bam_alignment_record_util.h │ │ │ ├── bam_file.h │ │ │ ├── bam_header_record.h │ │ │ ├── bam_index_bai.h │ │ │ ├── bam_io_context.h │ │ │ ├── bam_sam_conversion.h │ │ │ ├── bam_scanner_cache.h │ │ │ ├── bam_tags_dict.h │ │ │ ├── cigar.h │ │ │ ├── read_bam.h │ │ │ ├── read_sam.h │ │ │ ├── write_bam.h │ │ │ └── write_sam.h │ │ │ ├── basic.h │ │ │ ├── basic │ │ │ ├── aggregate_concept.h │ │ │ ├── allocator_chunkpool.h │ │ │ ├── allocator_interface.h │ │ │ ├── allocator_multipool.h │ │ │ ├── allocator_simple.h │ │ │ ├── allocator_singlepool.h │ │ │ ├── allocator_to_std.h │ │ │ ├── alphabet_adapt_builtins.h │ │ │ ├── alphabet_bio.h │ │ │ ├── alphabet_concept.h │ │ │ ├── alphabet_math.h │ │ │ ├── alphabet_profile.h │ │ │ ├── alphabet_qualities.h │ │ │ ├── alphabet_residue.h │ │ │ ├── alphabet_residue_funcs.h │ │ │ ├── alphabet_residue_tabs.h │ │ │ ├── alphabet_simple_type.h │ │ │ ├── alphabet_storage.h │ │ │ ├── array_construct_destruct.h │ │ │ ├── basic_aggregate.h │ │ │ ├── basic_allocator.h │ │ │ ├── basic_alphabet.h │ │ │ ├── basic_concept.h │ │ │ ├── basic_container.h │ │ │ ├── basic_debug.h │ │ │ ├── basic_device.h │ │ │ ├── basic_exception.h │ │ │ ├── basic_functors.h │ │ │ ├── basic_fundamental.h │ │ │ ├── basic_iterator.h │ │ │ ├── basic_math.h │ │ │ ├── basic_metaprogramming.h │ │ │ ├── basic_parallelism.h │ │ │ ├── basic_proxy.h │ │ │ ├── basic_simd_vector.h │ │ │ ├── basic_smart_pointer.h │ │ │ ├── basic_stream.h │ │ │ ├── basic_tangle.h │ │ │ ├── basic_type.h │ │ │ ├── basic_view.h │ │ │ ├── boost_preprocessor_subset.h │ │ │ ├── builtin_functions.h │ │ │ ├── concept_checking.h │ │ │ ├── container_concept.h │ │ │ ├── debug_helper.h │ │ │ ├── debug_test_system.h │ │ │ ├── fundamental_chunking.h │ │ │ ├── fundamental_comparison.h │ │ │ ├── fundamental_concepts.h │ │ │ ├── fundamental_conversion.h │ │ │ ├── fundamental_metafunctions.h │ │ │ ├── fundamental_tags.h │ │ │ ├── fundamental_transport.h │ │ │ ├── holder_base.h │ │ │ ├── holder_simple.h │ │ │ ├── holder_tristate.h │ │ │ ├── hosted_type_interface.h │ │ │ ├── iterator_adapt_pointer.h │ │ │ ├── iterator_adapt_std.h │ │ │ ├── iterator_adaptor.h │ │ │ ├── iterator_base.h │ │ │ ├── iterator_concept.h │ │ │ ├── iterator_counting.h │ │ │ ├── iterator_interface.h │ │ │ ├── iterator_position.h │ │ │ ├── iterator_range.h │ │ │ ├── iterator_zip.h │ │ │ ├── macro_deprecated.h │ │ │ ├── math_functions.h │ │ │ ├── math_log_space_value.h │ │ │ ├── metaprogramming_control.h │ │ │ ├── metaprogramming_enable_if.h │ │ │ ├── metaprogramming_logic.h │ │ │ ├── metaprogramming_math.h │ │ │ ├── metaprogramming_type.h │ │ │ ├── metaprogramming_type_algebra.h │ │ │ ├── pair_base.h │ │ │ ├── pair_bit_compressed.h │ │ │ ├── pair_packed.h │ │ │ ├── profiling.h │ │ │ ├── property_map_concept.h │ │ │ ├── proxy_base.h │ │ │ ├── proxy_iterator.h │ │ │ ├── test_system.h │ │ │ ├── triple_base.h │ │ │ ├── triple_packed.h │ │ │ ├── tuple_base.h │ │ │ ├── tuple_bit_compressed.h │ │ │ └── volatile_ptr.h │ │ │ ├── bed_io.h │ │ │ ├── bed_io │ │ │ ├── bed_file.h │ │ │ ├── bed_record.h │ │ │ ├── read_bed.h │ │ │ └── write_bed.h │ │ │ ├── blast.h │ │ │ ├── blast │ │ │ ├── blast_base.h │ │ │ ├── blast_io_context.h │ │ │ ├── blast_record.h │ │ │ ├── blast_report_out.h │ │ │ ├── blast_statistics.h │ │ │ ├── blast_tabular.h │ │ │ ├── blast_tabular_in.h │ │ │ ├── blast_tabular_lowlevel.h │ │ │ └── blast_tabular_out.h │ │ │ ├── consensus.h │ │ │ ├── consensus │ │ │ ├── consensus_aligner.h │ │ │ ├── consensus_aligner_interface.h │ │ │ ├── consensus_alignment_options.h │ │ │ ├── consensus_base.h │ │ │ ├── consensus_builder.h │ │ │ ├── consensus_library.h │ │ │ ├── consensus_realign.h │ │ │ ├── consensus_score.h │ │ │ ├── overlap_info_computation.h │ │ │ └── overlapper.h │ │ │ ├── file.h │ │ │ ├── file │ │ │ ├── file_base.h │ │ │ ├── file_cstyle.h │ │ │ ├── file_forwards.h │ │ │ ├── file_interface.h │ │ │ ├── file_mapping.h │ │ │ ├── file_page.h │ │ │ ├── string_external.h │ │ │ └── string_mmap.h │ │ │ ├── find.h │ │ │ ├── find │ │ │ ├── find_abndm.h │ │ │ ├── find_ahocorasick.h │ │ │ ├── find_base.h │ │ │ ├── find_begin.h │ │ │ ├── find_bndm.h │ │ │ ├── find_bom.h │ │ │ ├── find_hamming_simple.h │ │ │ ├── find_horspool.h │ │ │ ├── find_lambda.h │ │ │ ├── find_multi.h │ │ │ ├── find_multiple_bfam.h │ │ │ ├── find_multiple_shiftand.h │ │ │ ├── find_myers_ukkonen.h │ │ │ ├── find_pattern_base.h │ │ │ ├── find_pex.h │ │ │ ├── find_score.h │ │ │ ├── find_set_horspool.h │ │ │ ├── find_shiftand.h │ │ │ ├── find_shiftor.h │ │ │ ├── find_simple.h │ │ │ ├── find_wild_shiftand.h │ │ │ └── find_wumanber.h │ │ │ ├── gff_io.h │ │ │ ├── gff_io │ │ │ ├── gff_file.h │ │ │ └── gff_io_base.h │ │ │ ├── graph_algorithms.h │ │ │ ├── graph_algorithms │ │ │ ├── all_pairs_shortest_path.h │ │ │ ├── bellman_ford.h │ │ │ ├── bipartite_matching.h │ │ │ ├── breadth_first_search.h │ │ │ ├── connected_components.h │ │ │ ├── depth_first_search.h │ │ │ ├── dijkstra.h │ │ │ ├── floyd_warshall.h │ │ │ ├── ford_fulkerson.h │ │ │ ├── graph_algorithm_heap_tree.h │ │ │ ├── graph_algorithm_hmm.h │ │ │ ├── graph_algorithm_lis_his.h │ │ │ ├── kruskal.h │ │ │ ├── path_growing.h │ │ │ ├── prim.h │ │ │ ├── single_source_shortest_path.h │ │ │ ├── strongly_connected_compnents.h │ │ │ ├── topological_sort.h │ │ │ ├── transitive_closure.h │ │ │ ├── weakly_connected_components.h │ │ │ └── weighted_bipartite_matching.h │ │ │ ├── graph_align.h │ │ │ ├── graph_align │ │ │ ├── graph_algorithm_refine_align.h │ │ │ ├── graph_algorithm_refine_aligngraph.h │ │ │ ├── graph_algorithm_refine_annotation.h │ │ │ ├── graph_algorithm_refine_exact.h │ │ │ ├── graph_algorithm_refine_exact_iterative.h │ │ │ ├── graph_algorithm_refine_fragment.h │ │ │ ├── graph_algorithm_refine_inexact.h │ │ │ ├── graph_algorithm_refine_scoring.h │ │ │ ├── graph_impl_align.h │ │ │ └── graph_impl_align_adapt.h │ │ │ ├── graph_msa.h │ │ │ ├── graph_msa │ │ │ ├── graph_align_tcoffee_base.h │ │ │ ├── graph_align_tcoffee_distance.h │ │ │ ├── graph_align_tcoffee_guidetree.h │ │ │ ├── graph_align_tcoffee_io.h │ │ │ ├── graph_align_tcoffee_kmer.h │ │ │ ├── graph_align_tcoffee_library.h │ │ │ ├── graph_align_tcoffee_msa.h │ │ │ ├── graph_align_tcoffee_progressive.h │ │ │ └── graph_align_tcoffee_refinement.h │ │ │ ├── graph_types.h │ │ │ ├── graph_types │ │ │ ├── graph_base.h │ │ │ ├── graph_drawing.h │ │ │ ├── graph_edgestump.h │ │ │ ├── graph_idmanager.h │ │ │ ├── graph_impl_automaton.h │ │ │ ├── graph_impl_directed.h │ │ │ ├── graph_impl_hmm.h │ │ │ ├── graph_impl_oracle.h │ │ │ ├── graph_impl_tree.h │ │ │ ├── graph_impl_trie.h │ │ │ ├── graph_impl_undirected.h │ │ │ ├── graph_impl_wordgraph.h │ │ │ ├── graph_interface.h │ │ │ ├── graph_iterator.h │ │ │ ├── graph_iterator_adjacency.h │ │ │ ├── graph_iterator_bfs.h │ │ │ ├── graph_iterator_dfs.h │ │ │ ├── graph_iterator_edge.h │ │ │ ├── graph_iterator_outedge.h │ │ │ ├── graph_iterator_vertex.h │ │ │ ├── graph_utility_parsing.h │ │ │ ├── property_map_generic.h │ │ │ ├── property_map_internal.h │ │ │ └── property_map_internal_pointer.h │ │ │ ├── index.h │ │ │ ├── index │ │ │ ├── find2_backtracking.h │ │ │ ├── find2_base.h │ │ │ ├── find2_functors.h │ │ │ ├── find2_index.h │ │ │ ├── find2_index_multi.h │ │ │ ├── find2_vstree_factory.h │ │ │ ├── find_backtracking.h │ │ │ ├── find_index.h │ │ │ ├── find_index_approx.h │ │ │ ├── find_index_binary.h │ │ │ ├── find_index_esa.h │ │ │ ├── find_index_lambda.h │ │ │ ├── find_index_qgram.h │ │ │ ├── find_pigeonhole.h │ │ │ ├── find_quasar.h │ │ │ ├── find_swift.h │ │ │ ├── index_base.h │ │ │ ├── index_bidirectional.h │ │ │ ├── index_bidirectional_stree.h │ │ │ ├── index_bifm.h │ │ │ ├── index_bifm_stree.h │ │ │ ├── index_bwt.h │ │ │ ├── index_childtab.h │ │ │ ├── index_device.h │ │ │ ├── index_dfi.h │ │ │ ├── index_esa_algs.h │ │ │ ├── index_esa_algs_multi.h │ │ │ ├── index_esa_base.h │ │ │ ├── index_esa_drawing.h │ │ │ ├── index_esa_stree.h │ │ │ ├── index_fm.h │ │ │ ├── index_fm_compressed_sa.h │ │ │ ├── index_fm_compressed_sa_iterator.h │ │ │ ├── index_fm_dox.h │ │ │ ├── index_fm_lf_table.h │ │ │ ├── index_fm_rank_dictionary_base.h │ │ │ ├── index_fm_rank_dictionary_levels.h │ │ │ ├── index_fm_rank_dictionary_naive.h │ │ │ ├── index_fm_rank_dictionary_wt.h │ │ │ ├── index_fm_right_array_binary_tree.h │ │ │ ├── index_fm_right_array_binary_tree_iterator.h │ │ │ ├── index_fm_sparse_string.h │ │ │ ├── index_fm_stree.h │ │ │ ├── index_forwards.h │ │ │ ├── index_lcp.h │ │ │ ├── index_lcp_tree.h │ │ │ ├── index_pizzachili.h │ │ │ ├── index_pizzachili_find.h │ │ │ ├── index_pizzachili_string.h │ │ │ ├── index_qgram.h │ │ │ ├── index_qgram_bucketrefinement.h │ │ │ ├── index_qgram_openaddressing.h │ │ │ ├── index_qgram_stree.h │ │ │ ├── index_sa_btree.h │ │ │ ├── index_sa_bwtwalk.h │ │ │ ├── index_sa_lss.h │ │ │ ├── index_sa_mm.h │ │ │ ├── index_sa_qsort.h │ │ │ ├── index_sa_stree.h │ │ │ ├── index_sa_truncated.h │ │ │ ├── index_shawarma.h │ │ │ ├── index_shims.h │ │ │ ├── index_skew3.h │ │ │ ├── index_skew7.h │ │ │ ├── index_skew7_multi.h │ │ │ ├── index_view.h │ │ │ ├── index_wotd.h │ │ │ ├── pipe_merger3.h │ │ │ ├── pipe_merger7.h │ │ │ ├── pizzachili_api.h │ │ │ ├── pump_extender3.h │ │ │ ├── pump_extender7.h │ │ │ ├── pump_lcp_core.h │ │ │ ├── pump_separator7.h │ │ │ ├── radix.h │ │ │ ├── repeat_base.h │ │ │ ├── shape_base.h │ │ │ ├── shape_gapped.h │ │ │ ├── shape_minimizer.h │ │ │ ├── shape_onegapped.h │ │ │ ├── shape_predefined.h │ │ │ └── shape_threshold.h │ │ │ ├── journaled_set.h │ │ │ ├── journaled_set │ │ │ ├── journal_alignment_interface.h │ │ │ ├── journal_alignment_traceback_adaptor.h │ │ │ ├── journaled_set_base.h │ │ │ ├── journaled_set_impl.h │ │ │ ├── journaled_set_join.h │ │ │ ├── journaled_set_join_config.h │ │ │ ├── journaled_set_join_global_align_compact.h │ │ │ ├── journaled_set_join_global_align_manhatten.h │ │ │ ├── journaled_set_journal_trace_descriptor.h │ │ │ └── score_biaffine.h │ │ │ ├── journaled_string_tree.h │ │ │ ├── journaled_string_tree │ │ │ ├── delta_map.h │ │ │ ├── delta_map_entry.h │ │ │ ├── delta_map_iterator.h │ │ │ ├── delta_store.h │ │ │ ├── journaled_string_tree_base.h │ │ │ ├── journaled_string_tree_impl.h │ │ │ ├── journaled_string_tree_sequence_buffer.h │ │ │ ├── journaled_string_tree_traverser.h │ │ │ ├── journaled_string_tree_traverser_node.h │ │ │ ├── journaled_string_tree_traverser_util.h │ │ │ ├── jst_extension_base.h │ │ │ ├── jst_extension_horspool.h │ │ │ ├── jst_extension_myers_ukkonen.h │ │ │ ├── jst_extension_shiftand.h │ │ │ ├── jst_extension_shiftor.h │ │ │ ├── observable.h │ │ │ └── stack_observer.h │ │ │ ├── map.h │ │ │ ├── map │ │ │ ├── map_adapter_stl.h │ │ │ ├── map_base.h │ │ │ ├── map_chooser.h │ │ │ ├── map_skiplist.h │ │ │ ├── map_vector.h │ │ │ ├── sumlist.h │ │ │ ├── sumlist_mini.h │ │ │ └── sumlist_skip.h │ │ │ ├── math.h │ │ │ ├── math │ │ │ ├── math_common_factor.h │ │ │ ├── math_operators.h │ │ │ └── math_rational.h │ │ │ ├── misc │ │ │ ├── accumulators.h │ │ │ ├── base.h │ │ │ ├── bit_twiddling.h │ │ │ ├── bit_twiddling_functors.h │ │ │ ├── dequeue.h │ │ │ ├── edit_environment.h │ │ │ ├── interval_tree.h │ │ │ ├── map.h │ │ │ ├── memset.h │ │ │ ├── name_store_cache.h │ │ │ ├── priority_type_base.h │ │ │ ├── priority_type_heap.h │ │ │ ├── set.h │ │ │ ├── svg.h │ │ │ ├── terminal.h │ │ │ └── union_find.h │ │ │ ├── modifier.h │ │ │ ├── modifier │ │ │ ├── cyclic_shape.h │ │ │ ├── modifier_alphabet.h │ │ │ ├── modifier_alphabet_expansion.h │ │ │ ├── modifier_cyclic_shape.h │ │ │ ├── modifier_functors.h │ │ │ ├── modifier_iterator.h │ │ │ ├── modifier_padding.h │ │ │ ├── modifier_position.h │ │ │ ├── modifier_reverse.h │ │ │ ├── modifier_shortcuts.h │ │ │ ├── modifier_string.h │ │ │ └── modifier_view.h │ │ │ ├── parallel.h │ │ │ ├── parallel │ │ │ ├── parallel_algorithms.h │ │ │ ├── parallel_atomic_misc.h │ │ │ ├── parallel_atomic_primitives.h │ │ │ ├── parallel_lock.h │ │ │ ├── parallel_macros.h │ │ │ ├── parallel_queue.h │ │ │ ├── parallel_queue_suspendable.h │ │ │ ├── parallel_resource_pool.h │ │ │ ├── parallel_sequence.h │ │ │ ├── parallel_serializer.h │ │ │ ├── parallel_splitting.h │ │ │ └── parallel_tags.h │ │ │ ├── parse_lm.h │ │ │ ├── parse_lm │ │ │ ├── local_match_store.h │ │ │ ├── parse_blastn_tabular.h │ │ │ ├── parse_lastz_general.h │ │ │ └── parse_stellar_gff.h │ │ │ ├── pipe.h │ │ │ ├── pipe │ │ │ ├── pipe_base.h │ │ │ ├── pipe_caster.h │ │ │ ├── pipe_counter.h │ │ │ ├── pipe_echoer.h │ │ │ ├── pipe_edit_environment.h │ │ │ ├── pipe_filter.h │ │ │ ├── pipe_iterator.h │ │ │ ├── pipe_joiner.h │ │ │ ├── pipe_namer.h │ │ │ ├── pipe_sampler.h │ │ │ ├── pipe_shifter.h │ │ │ ├── pipe_source.h │ │ │ ├── pipe_tupler.h │ │ │ ├── pool_base.h │ │ │ ├── pool_mapper.h │ │ │ └── pool_sorter.h │ │ │ ├── platform.h │ │ │ ├── random.h │ │ │ ├── random │ │ │ ├── random_base.h │ │ │ ├── random_beta.h │ │ │ └── random_util.h │ │ │ ├── realign.h │ │ │ ├── realign │ │ │ ├── realign_base.h │ │ │ └── realign_helper_functions.h │ │ │ ├── reduced_aminoacid.h │ │ │ ├── reduced_aminoacid │ │ │ ├── reduced_aminoacid_base.h │ │ │ ├── reduced_aminoacid_base_late.h │ │ │ ├── reduced_aminoacid_cluster_red_base.h │ │ │ ├── reduced_aminoacid_cluster_red_tables_20_to_n_b62.h │ │ │ ├── reduced_aminoacid_cluster_red_tables_22_to_n_b62.h │ │ │ ├── reduced_aminoacid_cluster_red_tables_24_to_n_b62.h │ │ │ ├── reduced_aminoacid_murphy10_base.h │ │ │ └── reduced_aminoacid_murphy10_tables.h │ │ │ ├── rna_io.h │ │ │ ├── rna_io │ │ │ ├── bpseq_read_write.h │ │ │ ├── connect_read_write.h │ │ │ ├── dot_bracket_read_write.h │ │ │ ├── ebpseq_read_write.h │ │ │ ├── rna_header.h │ │ │ ├── rna_io_context.h │ │ │ ├── rna_record.h │ │ │ ├── rna_struct_file.h │ │ │ ├── stockholm_read_write.h │ │ │ └── vienna_read_write.h │ │ │ ├── roi_io.h │ │ │ ├── roi_io │ │ │ ├── read_roi.h │ │ │ ├── roi_file.h │ │ │ ├── roi_io_context.h │ │ │ ├── roi_record.h │ │ │ └── write_roi.h │ │ │ ├── score.h │ │ │ ├── score │ │ │ ├── score_base.h │ │ │ ├── score_edit.h │ │ │ ├── score_matrix.h │ │ │ ├── score_matrix_data.h │ │ │ ├── score_matrix_dyn.h │ │ │ ├── score_matrix_io.h │ │ │ ├── score_simd_wrapper.h │ │ │ └── score_simple.h │ │ │ ├── seeds.h │ │ │ ├── seeds │ │ │ ├── banded_chain_alignment.h │ │ │ ├── banded_chain_alignment_impl.h │ │ │ ├── banded_chain_alignment_profile.h │ │ │ ├── banded_chain_alignment_scout.h │ │ │ ├── banded_chain_alignment_traceback.h │ │ │ ├── basic_iter_indirect.h │ │ │ ├── seeds_base.h │ │ │ ├── seeds_combination.h │ │ │ ├── seeds_extension.h │ │ │ ├── seeds_global_chaining.h │ │ │ ├── seeds_global_chaining_base.h │ │ │ ├── seeds_global_chaining_gusfield.h │ │ │ ├── seeds_seed_base.h │ │ │ ├── seeds_seed_chained.h │ │ │ ├── seeds_seed_diagonal.h │ │ │ ├── seeds_seed_set_base.h │ │ │ ├── seeds_seed_set_non_scored.h │ │ │ ├── seeds_seed_set_scored.h │ │ │ ├── seeds_seed_set_unordered.h │ │ │ └── seeds_seed_simple.h │ │ │ ├── seq_io.h │ │ │ ├── seq_io │ │ │ ├── bam_sam.h │ │ │ ├── fai_index.h │ │ │ ├── fasta_fastq.h │ │ │ ├── genomic_region.h │ │ │ ├── read_embl.h │ │ │ ├── read_genbank.h │ │ │ └── sequence_file.h │ │ │ ├── sequence.h │ │ │ ├── sequence │ │ │ ├── adapt_array_pointer.h │ │ │ ├── adapt_stl_container.h │ │ │ ├── container_view.h │ │ │ ├── container_view_zip.h │ │ │ ├── iter_concat_virtual.h │ │ │ ├── segment_base.h │ │ │ ├── segment_infix.h │ │ │ ├── segment_prefix.h │ │ │ ├── segment_suffix.h │ │ │ ├── segment_utils.h │ │ │ ├── sequence_concatenator.h │ │ │ ├── sequence_forwards.h │ │ │ ├── sequence_interface.h │ │ │ ├── sequence_lexical.h │ │ │ ├── sequence_shortcuts.h │ │ │ ├── string_alloc.h │ │ │ ├── string_array.h │ │ │ ├── string_base.h │ │ │ ├── string_block.h │ │ │ ├── string_cstyle.h │ │ │ ├── string_packed.h │ │ │ ├── string_packed_old.h │ │ │ ├── string_set_base.h │ │ │ ├── string_set_concat_direct.h │ │ │ ├── string_set_dependent_generous.h │ │ │ ├── string_set_dependent_tight.h │ │ │ ├── string_set_owner.h │ │ │ ├── string_set_segment.h │ │ │ └── string_set_view.h │ │ │ ├── sequence_journaled.h │ │ │ ├── sequence_journaled │ │ │ ├── journal_entries_sorted_array.h │ │ │ ├── journal_entry.h │ │ │ ├── sequence_journaled.h │ │ │ ├── sequence_journaled_iterator.h │ │ │ └── sequence_journaled_iterator_fast.h │ │ │ ├── simple_intervals_io.h │ │ │ ├── simple_intervals_io │ │ │ ├── simple_intervals_file.h │ │ │ └── simple_intervals_io.h │ │ │ ├── statistics.h │ │ │ ├── statistics │ │ │ ├── statistics_base.h │ │ │ └── statistics_markov_model.h │ │ │ ├── store.h │ │ │ ├── store │ │ │ ├── store_align.h │ │ │ ├── store_align_intervals.h │ │ │ ├── store_all.h │ │ │ ├── store_annotation.h │ │ │ ├── store_base.h │ │ │ ├── store_contig.h │ │ │ ├── store_intervaltree.h │ │ │ ├── store_io.h │ │ │ ├── store_io_gff.h │ │ │ ├── store_io_sam.h │ │ │ ├── store_io_ucsc.h │ │ │ ├── store_library.h │ │ │ ├── store_matepair.h │ │ │ └── store_read.h │ │ │ ├── stream.h │ │ │ ├── stream │ │ │ ├── adapt_ios.h │ │ │ ├── buffered_stream.h │ │ │ ├── file_stream.h │ │ │ ├── formatted_file.h │ │ │ ├── guess_format.h │ │ │ ├── iostream_bgzf.h │ │ │ ├── iostream_bzip2.h │ │ │ ├── iostream_bzip2_impl.h │ │ │ ├── iostream_zip.h │ │ │ ├── iostream_zip_impl.h │ │ │ ├── iostream_zutil.h │ │ │ ├── iter_stream.h │ │ │ ├── lexical_cast.h │ │ │ ├── stream_base.h │ │ │ ├── stream_compressor.h │ │ │ ├── tokenization.h │ │ │ └── virtual_stream.h │ │ │ ├── system.h │ │ │ ├── system │ │ │ ├── file_async.h │ │ │ ├── file_directory.h │ │ │ ├── file_forwards.h │ │ │ ├── file_sync.h │ │ │ ├── system_base.h │ │ │ ├── system_event_win.h │ │ │ └── system_forwards.h │ │ │ ├── tabix_io.h │ │ │ ├── tabix_io │ │ │ └── tabix_index_tbi.h │ │ │ ├── translation.h │ │ │ ├── translation │ │ │ ├── translation.h │ │ │ └── translation_tables.h │ │ │ ├── ucsc_io.h │ │ │ ├── ucsc_io │ │ │ ├── ucsc_file.h │ │ │ ├── ucsc_io.h │ │ │ └── ucsc_record.h │ │ │ ├── vcf_io.h │ │ │ ├── vcf_io │ │ │ ├── read_vcf.h │ │ │ ├── vcf_file.h │ │ │ ├── vcf_header.h │ │ │ ├── vcf_header_record.h │ │ │ ├── vcf_io_context.h │ │ │ ├── vcf_record.h │ │ │ └── write_vcf.h │ │ │ └── version.h │ └── System Utilities │ │ ├── Makefile │ │ ├── SpPointer │ │ ├── SpPointer.cpp │ │ ├── SpPointer.h │ │ ├── SpPointer.sln │ │ ├── SpPointer.vcxproj │ │ └── SpPointer.vcxproj.filters │ │ ├── include │ │ └── SP_SysUtils.hpp │ │ ├── src │ │ └── SP_SysUtils.cpp │ │ └── test │ │ ├── Makefile │ │ ├── include │ │ └── SP_SysUtils_Test.hpp │ │ └── src │ │ └── SP_SysUtils_Test.cpp ├── include │ └── sp │ │ ├── config │ │ └── ini_cfg.h │ │ ├── dx │ │ ├── d3d11 │ │ │ └── interface │ │ │ │ ├── context │ │ │ │ ├── id3d11devicecontext.h │ │ │ │ ├── id3d11devicecontext1.h │ │ │ │ ├── id3d11devicecontext1_impl.hpp │ │ │ │ ├── id3d11devicecontext2.h │ │ │ │ ├── id3d11devicecontext2_impl.hpp │ │ │ │ ├── id3d11devicecontext3.h │ │ │ │ ├── id3d11devicecontext3_impl.hpp │ │ │ │ ├── id3d11devicecontext4.h │ │ │ │ ├── id3d11devicecontext4_impl.hpp │ │ │ │ └── id3d11devicecontext_impl.hpp │ │ │ │ ├── device │ │ │ │ ├── id3d11device.h │ │ │ │ ├── id3d11device1.h │ │ │ │ ├── id3d11device1_impl.hpp │ │ │ │ ├── id3d11device2.h │ │ │ │ ├── id3d11device2_impl.hpp │ │ │ │ ├── id3d11device3.h │ │ │ │ ├── id3d11device3_impl.hpp │ │ │ │ ├── id3d11device4.h │ │ │ │ ├── id3d11device4_impl.hpp │ │ │ │ ├── id3d11device5.h │ │ │ │ ├── id3d11device5_impl.hpp │ │ │ │ └── id3d11device_impl.hpp │ │ │ │ ├── id3d11devicechild.h │ │ │ │ └── id3d11devicechild_impl.hpp │ │ ├── d3d9 │ │ │ ├── d3d9_exports.h │ │ │ ├── d3d9_hooks.h │ │ │ └── d3d9_main.h │ │ ├── dx_main.h │ │ └── dxgi │ │ │ ├── dxgi_errors.h │ │ │ ├── dxgi_exports.h │ │ │ ├── dxgi_hooks.h │ │ │ ├── dxgi_main.h │ │ │ └── interface │ │ │ ├── device │ │ │ ├── idxgidevice.h │ │ │ ├── idxgidevice1.h │ │ │ ├── idxgidevice1_impl.hpp │ │ │ ├── idxgidevice2.h │ │ │ ├── idxgidevice2_impl.hpp │ │ │ ├── idxgidevice3.h │ │ │ ├── idxgidevice3_impl.hpp │ │ │ ├── idxgidevice4.h │ │ │ ├── idxgidevice4_impl.hpp │ │ │ └── idxgidevice_impl.hpp │ │ │ ├── factory │ │ │ ├── idxgifactory.h │ │ │ ├── idxgifactory1.h │ │ │ ├── idxgifactory1_impl.hpp │ │ │ ├── idxgifactory2.h │ │ │ ├── idxgifactory2_impl.hpp │ │ │ ├── idxgifactory3.h │ │ │ ├── idxgifactory3_impl.hpp │ │ │ ├── idxgifactory4.h │ │ │ ├── idxgifactory4_impl.hpp │ │ │ ├── idxgifactory5.h │ │ │ ├── idxgifactory5_impl.hpp │ │ │ └── idxgifactory_impl.hpp │ │ │ ├── idxgiadapter.h │ │ │ ├── idxgiadapter_impl.hpp │ │ │ ├── idxgiobject.h │ │ │ ├── idxgiobject_impl.hpp │ │ │ ├── idxgisubobject.h │ │ │ ├── idxgisubobject_impl.hpp │ │ │ └── swapchain │ │ │ ├── idxgiswapchain.h │ │ │ ├── idxgiswapchain1.h │ │ │ ├── idxgiswapchain1_impl.hpp │ │ │ ├── idxgiswapchain2.h │ │ │ ├── idxgiswapchain2_impl.hpp │ │ │ ├── idxgiswapchain3.h │ │ │ ├── idxgiswapchain3_impl.hpp │ │ │ ├── idxgiswapchain4.h │ │ │ ├── idxgiswapchain4_impl.hpp │ │ │ └── idxgiswapchain_impl.hpp │ │ ├── environment.h │ │ ├── error.h │ │ ├── error │ │ └── error_code.h │ │ ├── file.h │ │ ├── file │ │ ├── file_overloads.hpp │ │ └── path.h │ │ ├── gui │ │ ├── console.h │ │ ├── console │ │ │ ├── console_message.h │ │ │ ├── console_output.h │ │ │ └── console_output_interface.h │ │ ├── input │ │ │ └── text │ │ │ │ └── caret.h │ │ └── message_box.h │ │ ├── io.h │ │ ├── io │ │ ├── cmd_ostream.h │ │ ├── keybinds.h │ │ ├── powershell_ostream.h │ │ └── vk_names.h │ │ ├── log.h │ │ ├── main.h │ │ ├── main │ │ └── preferences.h │ │ ├── memory.h │ │ ├── memory │ │ ├── aob_scan.h │ │ ├── injection │ │ │ └── asm │ │ │ │ ├── x64.h │ │ │ │ └── x86.h │ │ ├── patch.h │ │ ├── patch │ │ │ └── byte_patch.h │ │ └── pointer.h │ │ ├── os.h │ │ ├── os │ │ ├── unix.h │ │ ├── win.h │ │ └── windows │ │ │ ├── com │ │ │ ├── com_main.h │ │ │ └── interface │ │ │ │ ├── iunknown.h │ │ │ │ └── iunknown_impl.hpp │ │ │ └── dll.h │ │ ├── preferences │ │ └── user_setting.h │ │ ├── preprocessor.h │ │ ├── sp.h │ │ ├── string.h │ │ ├── string │ │ └── string_overloads.hpp │ │ ├── system.h │ │ ├── system │ │ ├── process.h │ │ └── process │ │ │ └── child.h │ │ ├── utilities.h │ │ └── utility │ │ └── history.h ├── lib │ └── inih │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── cpp │ │ ├── INIReader.cpp │ │ └── INIReader.h │ │ ├── examples │ │ ├── INIReaderExample.cpp │ │ ├── config.def │ │ ├── ini_dump.c │ │ ├── ini_example.c │ │ ├── ini_xmacros.c │ │ └── test.ini │ │ ├── extra │ │ └── Makefile.static │ │ ├── ini.c │ │ ├── ini.h │ │ └── tests │ │ ├── bad_comment.ini │ │ ├── bad_multi.ini │ │ ├── bad_section.ini │ │ ├── baseline_disallow_inline_comments.txt │ │ ├── baseline_handler_lineno.txt │ │ ├── baseline_heap.txt │ │ ├── baseline_heap_max_line.txt │ │ ├── baseline_heap_realloc.txt │ │ ├── baseline_heap_realloc_max_line.txt │ │ ├── baseline_heap_string.txt │ │ ├── baseline_multi.txt │ │ ├── baseline_multi_max_line.txt │ │ ├── baseline_single.txt │ │ ├── baseline_stop_on_first_error.txt │ │ ├── baseline_string.txt │ │ ├── bom.ini │ │ ├── multi_line.ini │ │ ├── normal.ini │ │ ├── unittest.bat │ │ ├── unittest.c │ │ ├── unittest.sh │ │ ├── unittest_string.c │ │ └── user_error.ini ├── sp_utils.sln ├── sp_utils.vcxproj ├── sp_utils.vcxproj.filters ├── src │ ├── config │ │ └── ini_cfg.cpp │ ├── dx │ │ ├── d3d9 │ │ │ ├── d3d9.def │ │ │ ├── d3d9_exports.cpp │ │ │ ├── d3d9_hooks.cpp │ │ │ ├── d3d9_hooks_asm.asm │ │ │ └── d3d9_main.cpp │ │ ├── dx.cpp │ │ └── dxgi │ │ │ ├── dxgi.def │ │ │ ├── dxgi_errors.cpp │ │ │ ├── dxgi_exports.cpp │ │ │ ├── dxgi_hooks.cpp │ │ │ ├── dxgi_hooks_asm.asm │ │ │ └── dxgi_main.cpp │ ├── file.cpp │ ├── io.cpp │ ├── log.cpp │ ├── main.cpp │ ├── main │ │ └── preferences.cpp │ ├── memory.cpp │ ├── memory │ │ ├── aob_scan.cpp │ │ └── injection │ │ │ └── asm │ │ │ ├── x64.cpp │ │ │ └── x86.cpp │ ├── os │ │ ├── windows.cpp │ │ └── windows │ │ │ ├── com │ │ │ ├── com_main.cpp │ │ │ └── interface │ │ │ │ └── iunknown.cpp │ │ │ └── dll.cpp │ ├── sp.cpp │ └── string.cpp └── test │ ├── test.vcxproj │ ├── test.vcxproj.filters │ └── tests.cpp ├── README.md └── d3d11-wrapper ├── .gitignore ├── .gitmodules ├── LICENSE ├── Readme.md ├── d3d11_wrapper.sln ├── d3d11_wrapper.vcxproj ├── d3d11_wrapper.vcxproj.filters ├── include ├── d3d11 │ ├── exports.h │ └── main.h └── dllmain.h ├── lib ├── DX11FontWrapper │ ├── BuildProcessTemplates │ │ ├── DefaultTemplate.11.1.xaml │ │ ├── LabDefaultTemplate.11.xaml │ │ └── UpgradeTemplate.xaml │ ├── FW1FontWrapper.sln │ └── FW1FontWrapper │ │ ├── FW1FontWrapper.vcxproj │ │ ├── FW1FontWrapper.vcxproj.filters │ │ └── Source │ │ ├── CFW1ColorRGBA.cpp │ │ ├── CFW1ColorRGBA.h │ │ ├── CFW1ColorRGBAInterface.cpp │ │ ├── CFW1DWriteRenderTarget.cpp │ │ ├── CFW1DWriteRenderTarget.h │ │ ├── CFW1DWriteRenderTargetInterface.cpp │ │ ├── CFW1Factory.cpp │ │ ├── CFW1Factory.h │ │ ├── CFW1FactoryInterface.cpp │ │ ├── CFW1FontWrapper.cpp │ │ ├── CFW1FontWrapper.h │ │ ├── CFW1FontWrapperInterface.cpp │ │ ├── CFW1GlyphAtlas.cpp │ │ ├── CFW1GlyphAtlas.h │ │ ├── CFW1GlyphAtlasInterface.cpp │ │ ├── CFW1GlyphProvider.cpp │ │ ├── CFW1GlyphProvider.h │ │ ├── CFW1GlyphProviderInterface.cpp │ │ ├── CFW1GlyphRenderStates.cpp │ │ ├── CFW1GlyphRenderStates.h │ │ ├── CFW1GlyphRenderStatesInterface.cpp │ │ ├── CFW1GlyphSheet.cpp │ │ ├── CFW1GlyphSheet.h │ │ ├── CFW1GlyphSheetInterface.cpp │ │ ├── CFW1GlyphVertexDrawer.cpp │ │ ├── CFW1GlyphVertexDrawer.h │ │ ├── CFW1GlyphVertexDrawerInterface.cpp │ │ ├── CFW1Object.h │ │ ├── CFW1StateSaver.cpp │ │ ├── CFW1StateSaver.h │ │ ├── CFW1TextGeometry.cpp │ │ ├── CFW1TextGeometry.h │ │ ├── CFW1TextGeometryInterface.cpp │ │ ├── CFW1TextRenderer.cpp │ │ ├── CFW1TextRenderer.h │ │ ├── CFW1TextRendererInterface.cpp │ │ ├── FW1CompileSettings.h │ │ ├── FW1FontWrapper.cpp │ │ ├── FW1FontWrapper.h │ │ ├── FW1Precompiled.cpp │ │ └── FW1Precompiled.h ├── DebugDraw │ ├── DebugDraw.cpp │ ├── DebugDraw.h │ └── Readme.md ├── DebugDraw_dbg_x64.idb ├── DebugDraw_dbg_x64.lib ├── DebugDraw_dbg_x64.pdb ├── DebugDraw_dbg_x86.idb ├── DebugDraw_dbg_x86.lib ├── DebugDraw_dbg_x86.pdb ├── DebugDraw_x64.lib ├── DebugDraw_x64.pdb ├── DebugDraw_x86.lib ├── DebugDraw_x86.pdb ├── Detours │ ├── CREDITS.TXT │ ├── LICENSE.md │ ├── Makefile │ ├── README.md │ ├── samples │ │ ├── Makefile │ │ ├── README.TXT │ │ ├── comeasy │ │ │ ├── Makefile │ │ │ ├── comeasy.cpp │ │ │ ├── wrotei.cpp │ │ │ └── wrotei.rc │ │ ├── commem │ │ │ ├── Makefile │ │ │ └── commem.cpp │ │ ├── common.mak │ │ ├── cping │ │ │ ├── Makefile │ │ │ ├── ReadMe.Txt │ │ │ ├── cping.cpp │ │ │ ├── cping.dat │ │ │ └── iping.idl │ │ ├── disas │ │ │ ├── Makefile │ │ │ ├── arm.asm │ │ │ ├── disas.cpp │ │ │ ├── ia64.asm │ │ │ ├── unk.cpp │ │ │ ├── x64.asm │ │ │ └── x86.cpp │ │ ├── dtest │ │ │ ├── Makefile │ │ │ ├── NORMAL_IA64.TXT │ │ │ ├── NORMAL_X64.TXT │ │ │ ├── NORMAL_X86.TXT │ │ │ ├── dtarge.cpp │ │ │ ├── dtarge.h │ │ │ ├── dtarge.rc │ │ │ └── dtest.cpp │ │ ├── dumpe │ │ │ ├── Makefile │ │ │ └── dumpe.cpp │ │ ├── dumpi │ │ │ ├── Makefile │ │ │ └── dumpi.cpp │ │ ├── echo │ │ │ ├── Makefile │ │ │ ├── echofx.cpp │ │ │ ├── echofx.rc │ │ │ ├── echonul.cpp │ │ │ └── main.cpp │ │ ├── einst │ │ │ ├── Makefile │ │ │ ├── edll1x.cpp │ │ │ ├── edll2x.cpp │ │ │ ├── edll3x.cpp │ │ │ └── einst.cpp │ │ ├── excep │ │ │ ├── Makefile │ │ │ ├── excep.cpp │ │ │ ├── firstexc.cpp │ │ │ └── firstexc.h │ │ ├── findfunc │ │ │ ├── Makefile │ │ │ ├── extend.cpp │ │ │ ├── extend.rc │ │ │ ├── findfunc.cpp │ │ │ ├── symtest.cpp │ │ │ ├── target.cpp │ │ │ ├── target.h │ │ │ └── target.rc │ │ ├── impmunge │ │ │ ├── Makefile │ │ │ └── impmunge.cpp │ │ ├── member │ │ │ ├── Makefile │ │ │ └── member.cpp │ │ ├── opengl │ │ │ ├── Makefile │ │ │ ├── ogldet.cpp │ │ │ ├── ogldet.rc │ │ │ └── testogl.cpp │ │ ├── region │ │ │ ├── Makefile │ │ │ └── region.cpp │ │ ├── setdll │ │ │ ├── Makefile │ │ │ └── setdll.cpp │ │ ├── simple │ │ │ ├── Makefile │ │ │ ├── simple.cpp │ │ │ ├── simple.rc │ │ │ └── sleep5.cpp │ │ ├── slept │ │ │ ├── Makefile │ │ │ ├── NORMAL_IA64.TXT │ │ │ ├── NORMAL_X64.TXT │ │ │ ├── NORMAL_X86.TXT │ │ │ ├── dslept.cpp │ │ │ ├── dslept.rc │ │ │ ├── sleepbed.cpp │ │ │ ├── sleepnew.cpp │ │ │ ├── sleepold.cpp │ │ │ ├── slept.cpp │ │ │ ├── slept.h │ │ │ ├── slept.rc │ │ │ └── verify.cpp │ │ ├── syelog │ │ │ ├── Makefile │ │ │ ├── sltest.cpp │ │ │ ├── sltestp.cpp │ │ │ ├── syelog.cpp │ │ │ ├── syelog.h │ │ │ └── syelogd.cpp │ │ ├── talloc │ │ │ ├── Makefile │ │ │ ├── NORMAL_IA64.TXT │ │ │ ├── NORMAL_X64.TXT │ │ │ ├── talloc.cpp │ │ │ ├── tdll1x.cpp │ │ │ ├── tdll2x.cpp │ │ │ ├── tdll3x.cpp │ │ │ ├── tdll4x.cpp │ │ │ ├── tdll5x.cpp │ │ │ ├── tdll6x.cpp │ │ │ ├── tdll7x.cpp │ │ │ ├── tdll8x.cpp │ │ │ └── tdll9x.cpp │ │ ├── traceapi │ │ │ ├── Makefile │ │ │ ├── _win32.cpp │ │ │ ├── testapi.cpp │ │ │ ├── trcapi.cpp │ │ │ └── trcapi.rc │ │ ├── tracebld │ │ │ ├── Makefile │ │ │ ├── tracebld.cpp │ │ │ ├── tracebld.h │ │ │ ├── trcbld.cpp │ │ │ └── trcbld.rc │ │ ├── tracelnk │ │ │ ├── Makefile │ │ │ ├── trclnk.cpp │ │ │ └── trclnk.rc │ │ ├── tracemem │ │ │ ├── Makefile │ │ │ ├── trcmem.cpp │ │ │ └── trcmem.rc │ │ ├── tracereg │ │ │ ├── Makefile │ │ │ ├── trcreg.cpp │ │ │ └── trcreg.rc │ │ ├── traceser │ │ │ ├── Makefile │ │ │ ├── trcser.cpp │ │ │ └── trcser.rc │ │ ├── tracessl │ │ │ ├── Makefile │ │ │ ├── trcssl.cpp │ │ │ └── trcssl.rc │ │ ├── tracetcp │ │ │ ├── Makefile │ │ │ ├── trctcp.cpp │ │ │ └── trctcp.rc │ │ ├── tryman │ │ │ ├── Makefile │ │ │ ├── managed.cs │ │ │ ├── size.cpp │ │ │ ├── tryman.cpp │ │ │ ├── tstman.cpp │ │ │ └── tstman.rc │ │ └── withdll │ │ │ ├── Makefile │ │ │ └── withdll.cpp │ ├── src │ │ ├── Makefile │ │ ├── creatwth.cpp │ │ ├── detours.cpp │ │ ├── detours.h │ │ ├── detver.h │ │ ├── disasm.cpp │ │ ├── disolarm.cpp │ │ ├── disolarm64.cpp │ │ ├── disolia64.cpp │ │ ├── disolx64.cpp │ │ ├── disolx86.cpp │ │ ├── image.cpp │ │ ├── modules.cpp │ │ └── uimports.cpp │ └── system.mak ├── DirectXTK │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .nuget │ │ ├── directxtk_desktop_2015.nuspec │ │ ├── directxtk_desktop_2015.targets │ │ ├── directxtk_uwp.nuspec │ │ ├── directxtk_uwp.targets │ │ ├── signconfig_desktop_2015.xml │ │ └── signconfig_uwp.xml │ ├── Audio │ │ ├── AudioEngine.cpp │ │ ├── DirectXTKAudio_Desktop_2015_DXSDK.vcxproj │ │ ├── DirectXTKAudio_Desktop_2015_DXSDK.vcxproj.filters │ │ ├── DirectXTKAudio_Desktop_2015_Win8.vcxproj │ │ ├── DirectXTKAudio_Desktop_2015_Win8.vcxproj.filters │ │ ├── DirectXTKAudio_Desktop_2017_DXSDK.vcxproj │ │ ├── DirectXTKAudio_Desktop_2017_DXSDK.vcxproj.filters │ │ ├── DirectXTKAudio_Desktop_2017_Win8.vcxproj │ │ ├── DirectXTKAudio_Desktop_2017_Win8.vcxproj.filters │ │ ├── DynamicSoundEffectInstance.cpp │ │ ├── SoundCommon.cpp │ │ ├── SoundCommon.h │ │ ├── SoundEffect.cpp │ │ ├── SoundEffectInstance.cpp │ │ ├── WAVFileReader.cpp │ │ ├── WAVFileReader.h │ │ ├── WaveBank.cpp │ │ ├── WaveBankReader.cpp │ │ └── WaveBankReader.h │ ├── DirectXTK_Desktop_2015.sln │ ├── DirectXTK_Desktop_2015.vcxproj │ ├── DirectXTK_Desktop_2015.vcxproj.filters │ ├── DirectXTK_Desktop_2015_DXSDK.sln │ ├── DirectXTK_Desktop_2015_Win10.sln │ ├── DirectXTK_Desktop_2015_Win10.vcxproj │ ├── DirectXTK_Desktop_2015_Win10.vcxproj.filters │ ├── DirectXTK_Desktop_2017.sln │ ├── DirectXTK_Desktop_2017.vcxproj │ ├── DirectXTK_Desktop_2017.vcxproj.filters │ ├── DirectXTK_Desktop_2017_DXSDK.sln │ ├── DirectXTK_Desktop_2017_Win10.sln │ ├── DirectXTK_Desktop_2017_Win10.vcxproj │ ├── DirectXTK_Desktop_2017_Win10.vcxproj.filters │ ├── DirectXTK_Windows10.sln │ ├── DirectXTK_Windows10.vcxproj │ ├── DirectXTK_Windows10.vcxproj.filters │ ├── DirectXTK_Windows10_2015.sln │ ├── DirectXTK_Windows10_2015.vcxproj │ ├── DirectXTK_Windows10_2015.vcxproj.filters │ ├── DirectXTK_XboxOneXDK_2015.sln │ ├── DirectXTK_XboxOneXDK_2015.vcxproj │ ├── DirectXTK_XboxOneXDK_2015.vcxproj.filters │ ├── DirectXTK_XboxOneXDK_2017.sln │ ├── DirectXTK_XboxOneXDK_2017.vcxproj │ ├── DirectXTK_XboxOneXDK_2017.vcxproj.filters │ ├── Inc │ │ ├── Audio.h │ │ ├── CommonStates.h │ │ ├── DDSTextureLoader.h │ │ ├── DirectXHelpers.h │ │ ├── Effects.h │ │ ├── GamePad.h │ │ ├── GeometricPrimitive.h │ │ ├── GraphicsMemory.h │ │ ├── Keyboard.h │ │ ├── Model.h │ │ ├── Mouse.h │ │ ├── PostProcess.h │ │ ├── PrimitiveBatch.h │ │ ├── ScreenGrab.h │ │ ├── SimpleMath.h │ │ ├── SimpleMath.inl │ │ ├── SpriteBatch.h │ │ ├── SpriteFont.h │ │ ├── VertexTypes.h │ │ ├── WICTextureLoader.h │ │ └── XboxDDSTextureLoader.h │ ├── LICENSE │ ├── MakeSpriteFont │ │ ├── BitmapImporter.cs │ │ ├── BitmapUtils.cs │ │ ├── CharacterRegion.cs │ │ ├── CommandLineOptions.cs │ │ ├── CommandLineParser.cs │ │ ├── Glyph.cs │ │ ├── GlyphCropper.cs │ │ ├── GlyphPacker.cs │ │ ├── IFontImporter.cs │ │ ├── MakeSpriteFont.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SpriteFontWriter.cs │ │ └── TrueTypeImporter.cs │ ├── Readme.txt │ ├── Src │ │ ├── AlignedNew.h │ │ ├── AlphaTestEffect.cpp │ │ ├── BasicEffect.cpp │ │ ├── BasicPostProcess.cpp │ │ ├── Bezier.h │ │ ├── BinaryReader.cpp │ │ ├── BinaryReader.h │ │ ├── CommonStates.cpp │ │ ├── ConstantBuffer.h │ │ ├── DDSTextureLoader.cpp │ │ ├── DGSLEffect.cpp │ │ ├── DGSLEffectFactory.cpp │ │ ├── DebugEffect.cpp │ │ ├── DemandCreate.h │ │ ├── DualPostProcess.cpp │ │ ├── DualTextureEffect.cpp │ │ ├── EffectCommon.cpp │ │ ├── EffectCommon.h │ │ ├── EffectFactory.cpp │ │ ├── EnvironmentMapEffect.cpp │ │ ├── GamePad.cpp │ │ ├── GeometricPrimitive.cpp │ │ ├── Geometry.cpp │ │ ├── Geometry.h │ │ ├── GraphicsMemory.cpp │ │ ├── Keyboard.cpp │ │ ├── LoaderHelpers.h │ │ ├── Model.cpp │ │ ├── ModelLoadCMO.cpp │ │ ├── ModelLoadSDKMESH.cpp │ │ ├── ModelLoadVBO.cpp │ │ ├── Mouse.cpp │ │ ├── NormalMapEffect.cpp │ │ ├── PBREffect.cpp │ │ ├── PlatformHelpers.h │ │ ├── PrimitiveBatch.cpp │ │ ├── SDKMesh.h │ │ ├── ScreenGrab.cpp │ │ ├── Shaders │ │ │ ├── AlphaTestEffect.fx │ │ │ ├── BasicEffect.fx │ │ │ ├── Common.fxh │ │ │ ├── CompileShaders.cmd │ │ │ ├── Compiled │ │ │ │ ├── AlphaTestEffect_PSAlphaTestEqNe.inc │ │ │ │ ├── AlphaTestEffect_PSAlphaTestEqNeNoFog.inc │ │ │ │ ├── AlphaTestEffect_PSAlphaTestLtGt.inc │ │ │ │ ├── AlphaTestEffect_PSAlphaTestLtGtNoFog.inc │ │ │ │ ├── AlphaTestEffect_VSAlphaTest.inc │ │ │ │ ├── AlphaTestEffect_VSAlphaTestNoFog.inc │ │ │ │ ├── AlphaTestEffect_VSAlphaTestVc.inc │ │ │ │ ├── AlphaTestEffect_VSAlphaTestVcNoFog.inc │ │ │ │ ├── BasicEffect_PSBasic.inc │ │ │ │ ├── BasicEffect_PSBasicNoFog.inc │ │ │ │ ├── BasicEffect_PSBasicPixelLighting.inc │ │ │ │ ├── BasicEffect_PSBasicPixelLightingTx.inc │ │ │ │ ├── BasicEffect_PSBasicTx.inc │ │ │ │ ├── BasicEffect_PSBasicTxNoFog.inc │ │ │ │ ├── BasicEffect_PSBasicVertexLighting.inc │ │ │ │ ├── BasicEffect_PSBasicVertexLightingNoFog.inc │ │ │ │ ├── BasicEffect_PSBasicVertexLightingTx.inc │ │ │ │ ├── BasicEffect_PSBasicVertexLightingTxNoFog.inc │ │ │ │ ├── BasicEffect_VSBasic.inc │ │ │ │ ├── BasicEffect_VSBasicNoFog.inc │ │ │ │ ├── BasicEffect_VSBasicOneLight.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightBn.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightTx.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightTxBn.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightTxVc.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightTxVcBn.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightVc.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightVcBn.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLighting.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingBn.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTx.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTxBn.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTxVc.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTxVcBn.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingVc.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingVcBn.inc │ │ │ │ ├── BasicEffect_VSBasicTx.inc │ │ │ │ ├── BasicEffect_VSBasicTxNoFog.inc │ │ │ │ ├── BasicEffect_VSBasicTxVc.inc │ │ │ │ ├── BasicEffect_VSBasicTxVcNoFog.inc │ │ │ │ ├── BasicEffect_VSBasicVc.inc │ │ │ │ ├── BasicEffect_VSBasicVcNoFog.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLighting.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingBn.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTx.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTxBn.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTxVc.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTxVcBn.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingVc.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingVcBn.inc │ │ │ │ ├── DGSLEffect_main.inc │ │ │ │ ├── DGSLEffect_main1Bones.inc │ │ │ │ ├── DGSLEffect_main1BonesVc.inc │ │ │ │ ├── DGSLEffect_main2Bones.inc │ │ │ │ ├── DGSLEffect_main2BonesVc.inc │ │ │ │ ├── DGSLEffect_main4Bones.inc │ │ │ │ ├── DGSLEffect_main4BonesVc.inc │ │ │ │ ├── DGSLEffect_mainVc.inc │ │ │ │ ├── DGSLLambert_main.inc │ │ │ │ ├── DGSLLambert_mainTk.inc │ │ │ │ ├── DGSLLambert_mainTx.inc │ │ │ │ ├── DGSLLambert_mainTxTk.inc │ │ │ │ ├── DGSLPhong_main.inc │ │ │ │ ├── DGSLPhong_mainTk.inc │ │ │ │ ├── DGSLPhong_mainTx.inc │ │ │ │ ├── DGSLPhong_mainTxTk.inc │ │ │ │ ├── DGSLUnlit_main.inc │ │ │ │ ├── DGSLUnlit_mainTk.inc │ │ │ │ ├── DGSLUnlit_mainTx.inc │ │ │ │ ├── DGSLUnlit_mainTxTk.inc │ │ │ │ ├── DebugEffect_PSHemiAmbient.inc │ │ │ │ ├── DebugEffect_PSRGBBiTangents.inc │ │ │ │ ├── DebugEffect_PSRGBNormals.inc │ │ │ │ ├── DebugEffect_PSRGBTangents.inc │ │ │ │ ├── DebugEffect_VSDebug.inc │ │ │ │ ├── DebugEffect_VSDebugBn.inc │ │ │ │ ├── DebugEffect_VSDebugVc.inc │ │ │ │ ├── DebugEffect_VSDebugVcBn.inc │ │ │ │ ├── DualTextureEffect_PSDualTexture.inc │ │ │ │ ├── DualTextureEffect_PSDualTextureNoFog.inc │ │ │ │ ├── DualTextureEffect_VSDualTexture.inc │ │ │ │ ├── DualTextureEffect_VSDualTextureNoFog.inc │ │ │ │ ├── DualTextureEffect_VSDualTextureVc.inc │ │ │ │ ├── DualTextureEffect_VSDualTextureVcNoFog.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMap.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapNoFog.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLighting.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLightingFresnel.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLightingFresnelNoFog.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLightingNoFog.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapSpecular.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapSpecularNoFog.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMap.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapBn.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapFresnel.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapFresnelBn.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLight.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLightBn.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLightFresnel.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLightFresnelBn.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapPixelLighting.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapPixelLightingBn.inc │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTx.inc │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTxNoFog.inc │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTxNoFogSpec.inc │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTxNoSpec.inc │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTx.inc │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTxBn.inc │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTxVc.inc │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTxVcBn.inc │ │ │ │ ├── PBREffect_PSConstant.inc │ │ │ │ ├── PBREffect_PSTextured.inc │ │ │ │ ├── PBREffect_PSTexturedEmissive.inc │ │ │ │ ├── PBREffect_PSTexturedEmissiveVelocity.inc │ │ │ │ ├── PBREffect_PSTexturedVelocity.inc │ │ │ │ ├── PBREffect_VSConstant.inc │ │ │ │ ├── PBREffect_VSConstantBn.inc │ │ │ │ ├── PBREffect_VSConstantVelocity.inc │ │ │ │ ├── PBREffect_VSConstantVelocityBn.inc │ │ │ │ ├── PostProcess_PSBloomBlur.inc │ │ │ │ ├── PostProcess_PSBloomCombine.inc │ │ │ │ ├── PostProcess_PSBloomExtract.inc │ │ │ │ ├── PostProcess_PSCopy.inc │ │ │ │ ├── PostProcess_PSDownScale2x2.inc │ │ │ │ ├── PostProcess_PSDownScale4x4.inc │ │ │ │ ├── PostProcess_PSGaussianBlur5x5.inc │ │ │ │ ├── PostProcess_PSMerge.inc │ │ │ │ ├── PostProcess_PSMonochrome.inc │ │ │ │ ├── PostProcess_PSSepia.inc │ │ │ │ ├── PostProcess_VSQuad.inc │ │ │ │ ├── SkinnedEffect_PSSkinnedPixelLighting.inc │ │ │ │ ├── SkinnedEffect_PSSkinnedVertexLighting.inc │ │ │ │ ├── SkinnedEffect_PSSkinnedVertexLightingNoFog.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightFourBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightFourBonesBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightOneBone.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightOneBoneBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightTwoBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightTwoBonesBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingFourBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingFourBonesBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingOneBone.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingOneBoneBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingTwoBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingTwoBonesBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingFourBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingFourBonesBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingOneBone.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingOneBoneBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingTwoBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingTwoBonesBn.inc │ │ │ │ ├── SpriteEffect_SpritePixelShader.inc │ │ │ │ ├── SpriteEffect_SpriteVertexShader.inc │ │ │ │ ├── ToneMap_PSACESFilmic.inc │ │ │ │ ├── ToneMap_PSACESFilmic_SRGB.inc │ │ │ │ ├── ToneMap_PSCopy.inc │ │ │ │ ├── ToneMap_PSHDR10.inc │ │ │ │ ├── ToneMap_PSReinhard.inc │ │ │ │ ├── ToneMap_PSReinhard_SRGB.inc │ │ │ │ ├── ToneMap_PSSaturate.inc │ │ │ │ ├── ToneMap_PSSaturate_SRGB.inc │ │ │ │ ├── ToneMap_PS_SRGB.inc │ │ │ │ └── ToneMap_VSQuad.inc │ │ │ ├── DGSLEffect.fx │ │ │ ├── DGSLLambert.hlsl │ │ │ ├── DGSLPhong.hlsl │ │ │ ├── DGSLUnlit.hlsl │ │ │ ├── DebugEffect.fx │ │ │ ├── DualTextureEffect.fx │ │ │ ├── EnvironmentMapEffect.fx │ │ │ ├── Lighting.fxh │ │ │ ├── NormalMapEffect.fx │ │ │ ├── PBRCommon.fxh │ │ │ ├── PBREffect.fx │ │ │ ├── PixelPacking_Velocity.hlsli │ │ │ ├── PostProcess.fx │ │ │ ├── SkinnedEffect.fx │ │ │ ├── SpriteEffect.fx │ │ │ ├── Structures.fxh │ │ │ ├── ToneMap.fx │ │ │ └── Utilities.fxh │ │ ├── SharedResourcePool.h │ │ ├── SimpleMath.cpp │ │ ├── SkinnedEffect.cpp │ │ ├── SpriteBatch.cpp │ │ ├── SpriteFont.cpp │ │ ├── TeapotData.inc │ │ ├── ToneMapPostProcess.cpp │ │ ├── VertexTypes.cpp │ │ ├── WICTextureLoader.cpp │ │ ├── XboxDDSTextureLoader.cpp │ │ ├── dds.h │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── vbo.h │ └── XWBTool │ │ ├── xwbtool.cpp │ │ ├── xwbtool_Desktop_2015.vcxproj │ │ ├── xwbtool_Desktop_2015.vcxproj.filters │ │ ├── xwbtool_Desktop_2017.vcxproj │ │ └── xwbtool_Desktop_2017.vcxproj.filters ├── DirectXTK_dbg_x64.idb ├── DirectXTK_dbg_x64.lib ├── DirectXTK_dbg_x64.pdb ├── DirectXTK_dbg_x86.idb ├── DirectXTK_dbg_x86.lib ├── DirectXTK_dbg_x86.pdb ├── DirectXTK_x64.lib ├── DirectXTK_x64.pdb ├── DirectXTK_x86.lib ├── DirectXTK_x86.pdb ├── FW1FontWrapper_dbg_x64.idb ├── FW1FontWrapper_dbg_x64.lib ├── FW1FontWrapper_dbg_x64.pdb ├── FW1FontWrapper_dbg_x86.idb ├── FW1FontWrapper_dbg_x86.lib ├── FW1FontWrapper_dbg_x86.pdb ├── FW1FontWrapper_x64.lib ├── FW1FontWrapper_x64.pdb ├── FW1FontWrapper_x86.lib ├── FW1FontWrapper_x86.pdb ├── detours_x64.lib ├── detours_x86.lib └── inih │ ├── LICENSE.txt │ ├── README.md │ ├── cpp │ ├── INIReader.cpp │ └── INIReader.h │ ├── examples │ ├── INIReaderExample.cpp │ ├── config.def │ ├── ini_dump.c │ ├── ini_example.c │ ├── ini_xmacros.c │ └── test.ini │ ├── extra │ └── Makefile.static │ ├── ini.c │ ├── ini.h │ └── tests │ ├── bad_comment.ini │ ├── bad_multi.ini │ ├── bad_section.ini │ ├── baseline_disallow_inline_comments.txt │ ├── baseline_handler_lineno.txt │ ├── baseline_heap.txt │ ├── baseline_heap_max_line.txt │ ├── baseline_heap_realloc.txt │ ├── baseline_heap_realloc_max_line.txt │ ├── baseline_heap_string.txt │ ├── baseline_multi.txt │ ├── baseline_multi_max_line.txt │ ├── baseline_single.txt │ ├── baseline_stop_on_first_error.txt │ ├── baseline_string.txt │ ├── bom.ini │ ├── multi_line.ini │ ├── normal.ini │ ├── unittest.bat │ ├── unittest.c │ ├── unittest.sh │ ├── unittest_string.c │ └── user_error.ini ├── rsrc ├── MakeSpriteFont.exe ├── MakeSpriteFonts.bat ├── MakeSpriteFontsJP.bat └── SpriteFonts │ ├── arial.spritefont │ ├── arial_bold.spritefont │ ├── arial_italic.spritefont │ ├── arial_strike.spritefont │ ├── arial_underline.spritefont │ ├── courier_new.spritefont │ ├── courier_new_bold.spritefont │ ├── courier_new_italic.spritefont │ ├── courier_new_strike.spritefont │ ├── courier_new_underline.spritefont │ └── resource.rc └── src ├── d3d11 ├── d3d11.cpp ├── exports.def └── exports_.cpp └── dllmain.cpp /Cpp-Utilities/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/.editorconfig -------------------------------------------------------------------------------- /Cpp-Utilities/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/.gitignore -------------------------------------------------------------------------------- /Cpp-Utilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/LICENSE -------------------------------------------------------------------------------- /Cpp-Utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/README.md -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/.gitignore -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/AoB Scan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/AoB Scan/Makefile -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/AoB Scan/include/SP_AoB_Scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/AoB Scan/include/SP_AoB_Scan.hpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/AoB Scan/src/SP_AoB_Scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/AoB Scan/src/SP_AoB_Scan.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/AoB Scan/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/AoB Scan/test/Makefile -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/AoB Scan/test/include/SP_AoB_Scan_Example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/AoB Scan/test/include/SP_AoB_Scan_Example.hpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/AoB Scan/test/src/SP_AoB_Scan_Example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/AoB Scan/test/src/SP_AoB_Scan_Example.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x64/Makefile -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x64/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x64/Readme.md -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x64/src/AsmInject_x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x64/src/AsmInject_x64.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x64/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x64/test/Makefile -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x64/test/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x64/test/Readme.md -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x86/AsmInject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x86/AsmInject.sln -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x86/AsmInject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x86/AsmInject.vcxproj -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x86/Makefile -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x86/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x86/Readme.md -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x86/src/AsmInject_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x86/src/AsmInject_x86.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x86/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x86/test/Makefile -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Assembly Injection/x86/test/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Assembly Injection/x86/test/Readme.md -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/IO/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/IO/Makefile -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/IO/include/SP_IO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/IO/include/SP_IO.hpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/IO/include/SP_IO_Strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/IO/include/SP_IO_Strings.hpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/IO/src/SP_Keyboard_IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/IO/src/SP_Keyboard_IO.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/IO/src/SP_Shell_IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/IO/src/SP_Shell_IO.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/IO/src/SP_Text_IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/IO/src/SP_Text_IO.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Makefile -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Preprocessor/PreprocessorArithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Preprocessor/PreprocessorArithmetic.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/Preprocessor/SpDetours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/Preprocessor/SpDetours.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/README.md -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/SearchStringSet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/SearchStringSet.sln -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/SearchStringSet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/SearchStringSet.vcxproj -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/SpSearchStringSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/SpSearchStringSet.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/align_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/align_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/align_cols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/align_cols.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/align_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/align_config.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_band.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_band.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_cell.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_context.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_formula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_formula.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_matrix.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_meta_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_meta_info.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_profile.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_scout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_scout.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/dp_setup.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/fragment.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/gap_anchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/gap_anchor.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/gaps_anchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/gaps_anchor.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/gaps_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/gaps_array.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/gaps_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/gaps_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/matrix_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align/matrix_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align_extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align_extend.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align_profile.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/align_split.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/alignment_free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/alignment_free.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/arg_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/arg_parse.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/arg_parse/tool_doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/arg_parse/tool_doc.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/bam_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/bam_file.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/cigar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/cigar.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/read_bam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/read_bam.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/read_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/read_sam.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/write_bam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/write_bam.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/write_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bam_io/write_sam.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/alphabet_bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/alphabet_bio.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_debug.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_device.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_math.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_proxy.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_stream.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_tangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_tangle.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_type.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/basic_view.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/debug_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/debug_helper.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/holder_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/holder_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/iterator_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/iterator_zip.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/pair_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/pair_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/pair_packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/pair_packed.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/profiling.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/proxy_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/proxy_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/test_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/test_system.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/triple_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/triple_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/tuple_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/tuple_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/volatile_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/basic/volatile_ptr.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bed_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bed_io.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bed_io/bed_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bed_io/bed_file.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bed_io/bed_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bed_io/bed_record.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bed_io/read_bed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bed_io/read_bed.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bed_io/write_bed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/bed_io/write_bed.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/blast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/blast.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/blast/blast_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/blast/blast_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/blast/blast_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/blast/blast_record.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/consensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/consensus.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/file_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/file_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/file_cstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/file_cstyle.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/file_forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/file_forwards.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/file_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/file_mapping.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/file_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/file_page.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/string_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/file/string_mmap.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_abndm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_abndm.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_begin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_begin.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_bndm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_bndm.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_bom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_bom.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_horspool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_horspool.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_lambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_lambda.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_multi.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_pex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_pex.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_score.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_shiftand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_shiftand.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_shiftor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_shiftor.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_simple.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_wumanber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/find/find_wumanber.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/gff_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/gff_io.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/gff_io/gff_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/gff_io/gff_file.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/gff_io/gff_io_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/gff_io/gff_io_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/graph_algorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/graph_algorithms.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/graph_align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/graph_align.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/graph_msa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/graph_msa.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/graph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/graph_types.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/find2_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/find2_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/find2_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/find2_index.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/find_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/find_index.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/index_bwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/index_bwt.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/index_dfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/index_dfi.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/index_fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/index_fm.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/index_lcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/index_lcp.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/radix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/index/radix.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/journaled_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/journaled_set.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/map.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/map/map_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/map/map_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/map/map_chooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/map/map_chooser.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/map/map_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/map/map_vector.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/map/sumlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/map/sumlist.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/math.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/dequeue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/dequeue.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/map.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/memset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/memset.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/set.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/svg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/svg.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/terminal.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/union_find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/misc/union_find.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/modifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/modifier.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/parallel.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/parse_lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/parse_lm.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/pipe.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/pipe/pipe_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/pipe/pipe_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/pipe/pipe_namer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/pipe/pipe_namer.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/pipe/pool_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/pipe/pool_base.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/platform.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/random.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/realign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/realign.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/rna_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/rna_io.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/roi_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/roi_io.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/roi_io/read_roi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/roi_io/read_roi.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/roi_io/roi_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/roi_io/roi_file.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/score.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/seeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/seeds.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/seq_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/seq_io.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/seq_io/bam_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/seq_io/bam_sam.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/sequence.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/statistics.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/store.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/store/store_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/store/store_all.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/store/store_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/store/store_io.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/stream.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/system.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/tabix_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/tabix_io.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/translation.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/ucsc_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/ucsc_io.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/ucsc_io/ucsc_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/ucsc_io/ucsc_io.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/vcf_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/vcf_io.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/vcf_io/read_vcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/vcf_io/read_vcf.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/vcf_io/vcf_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/vcf_io/vcf_file.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/SearchStringSet/lib/seqan/version.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/System Utilities/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/System Utilities/Makefile -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/System Utilities/SpPointer/SpPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/System Utilities/SpPointer/SpPointer.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/System Utilities/SpPointer/SpPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/System Utilities/SpPointer/SpPointer.h -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/System Utilities/SpPointer/SpPointer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/System Utilities/SpPointer/SpPointer.sln -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/System Utilities/include/SP_SysUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/System Utilities/include/SP_SysUtils.hpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/System Utilities/src/SP_SysUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/System Utilities/src/SP_SysUtils.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/_Legacy/System Utilities/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/_Legacy/System Utilities/test/Makefile -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/config/ini_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/config/ini_cfg.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/d3d11/interface/device/id3d11device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/d3d11/interface/device/id3d11device.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/d3d11/interface/id3d11devicechild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/d3d11/interface/id3d11devicechild.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/d3d9/d3d9_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/d3d9/d3d9_exports.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/d3d9/d3d9_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/d3d9/d3d9_hooks.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/d3d9/d3d9_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/d3d9/d3d9_main.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dx_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dx_main.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/dxgi_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/dxgi_errors.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/dxgi_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/dxgi_exports.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/dxgi_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/dxgi_hooks.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/dxgi_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/dxgi_main.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/interface/device/idxgidevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/interface/device/idxgidevice.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/interface/device/idxgidevice1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/interface/device/idxgidevice1.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/interface/device/idxgidevice2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/interface/device/idxgidevice2.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/interface/device/idxgidevice3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/interface/device/idxgidevice3.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/interface/device/idxgidevice4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/interface/device/idxgidevice4.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/interface/factory/idxgifactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/interface/factory/idxgifactory.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/interface/idxgiadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/interface/idxgiadapter.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/interface/idxgiadapter_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/interface/idxgiadapter_impl.hpp -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/interface/idxgiobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/interface/idxgiobject.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/interface/idxgiobject_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/interface/idxgiobject_impl.hpp -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/dx/dxgi/interface/idxgisubobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/dx/dxgi/interface/idxgisubobject.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/environment.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/error.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/error/error_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/error/error_code.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/file.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/file/file_overloads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/file/file_overloads.hpp -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/file/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/file/path.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/gui/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/gui/console.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/gui/console/console_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/gui/console/console_message.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/gui/console/console_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/gui/console/console_output.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/gui/console/console_output_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/gui/console/console_output_interface.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/gui/input/text/caret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/gui/input/text/caret.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/gui/message_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/gui/message_box.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/io.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/io/cmd_ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/io/cmd_ostream.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/io/keybinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/io/keybinds.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/io/powershell_ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/io/powershell_ostream.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/io/vk_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/io/vk_names.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/log.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/main.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/main/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/main/preferences.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/memory.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/memory/aob_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/memory/aob_scan.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/memory/injection/asm/x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/memory/injection/asm/x64.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/memory/injection/asm/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/memory/injection/asm/x86.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/memory/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/memory/patch.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/memory/patch/byte_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/memory/patch/byte_patch.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/memory/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/memory/pointer.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/os.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/os/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/os/unix.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/os/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/os/win.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/os/windows/com/com_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/os/windows/com/com_main.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/os/windows/com/interface/iunknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/os/windows/com/interface/iunknown.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/os/windows/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/os/windows/dll.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/preferences/user_setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/preferences/user_setting.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/preprocessor.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/sp.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/string.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/string/string_overloads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/string/string_overloads.hpp -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/system.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/system/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/system/process.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/system/process/child.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/system/process/child.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/utilities.h -------------------------------------------------------------------------------- /Cpp-Utilities/include/sp/utility/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/include/sp/utility/history.h -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/LICENSE.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/README.md -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/cpp/INIReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/cpp/INIReader.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/cpp/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/cpp/INIReader.h -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/examples/INIReaderExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/examples/INIReaderExample.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/examples/config.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/examples/config.def -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/examples/ini_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/examples/ini_dump.c -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/examples/ini_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/examples/ini_example.c -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/examples/ini_xmacros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/examples/ini_xmacros.c -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/examples/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/examples/test.ini -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/extra/Makefile.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/extra/Makefile.static -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/ini.c -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/ini.h -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/bad_comment.ini: -------------------------------------------------------------------------------- 1 | This is an error 2 | -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/bad_multi.ini: -------------------------------------------------------------------------------- 1 | indented 2 | -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/bad_section.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/bad_section.ini -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/baseline_handler_lineno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/baseline_handler_lineno.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/baseline_heap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/baseline_heap.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/baseline_heap_max_line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/baseline_heap_max_line.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/baseline_heap_realloc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/baseline_heap_realloc.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/baseline_heap_realloc_max_line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/baseline_heap_realloc_max_line.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/baseline_heap_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/baseline_heap_string.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/baseline_multi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/baseline_multi.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/baseline_multi_max_line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/baseline_multi_max_line.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/baseline_single.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/baseline_single.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/baseline_stop_on_first_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/baseline_stop_on_first_error.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/baseline_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/baseline_string.txt -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/bom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/bom.ini -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/multi_line.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/multi_line.ini -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/normal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/normal.ini -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/unittest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/unittest.bat -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/unittest.c -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/unittest.sh -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/unittest_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/unittest_string.c -------------------------------------------------------------------------------- /Cpp-Utilities/lib/inih/tests/user_error.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/lib/inih/tests/user_error.ini -------------------------------------------------------------------------------- /Cpp-Utilities/sp_utils.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/sp_utils.sln -------------------------------------------------------------------------------- /Cpp-Utilities/sp_utils.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/sp_utils.vcxproj -------------------------------------------------------------------------------- /Cpp-Utilities/sp_utils.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/sp_utils.vcxproj.filters -------------------------------------------------------------------------------- /Cpp-Utilities/src/config/ini_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/config/ini_cfg.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/d3d9/d3d9.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/d3d9/d3d9.def -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/d3d9/d3d9_exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/d3d9/d3d9_exports.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/d3d9/d3d9_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/d3d9/d3d9_hooks.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/d3d9/d3d9_hooks_asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/d3d9/d3d9_hooks_asm.asm -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/d3d9/d3d9_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/d3d9/d3d9_main.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/dx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/dx.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/dxgi/dxgi.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/dxgi/dxgi.def -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/dxgi/dxgi_errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/dxgi/dxgi_errors.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/dxgi/dxgi_exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/dxgi/dxgi_exports.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/dxgi/dxgi_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/dxgi/dxgi_hooks.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/dxgi/dxgi_hooks_asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/dxgi/dxgi_hooks_asm.asm -------------------------------------------------------------------------------- /Cpp-Utilities/src/dx/dxgi/dxgi_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/dx/dxgi/dxgi_main.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/file.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/io.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/log.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/main.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/main/preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/main/preferences.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/memory.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/memory/aob_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/memory/aob_scan.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/memory/injection/asm/x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/memory/injection/asm/x64.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/memory/injection/asm/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/memory/injection/asm/x86.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/os/windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/os/windows.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/os/windows/com/com_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/os/windows/com/com_main.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/os/windows/com/interface/iunknown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/os/windows/com/interface/iunknown.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/os/windows/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/os/windows/dll.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/sp.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/src/string.cpp -------------------------------------------------------------------------------- /Cpp-Utilities/test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/test/test.vcxproj -------------------------------------------------------------------------------- /Cpp-Utilities/test/test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/test/test.vcxproj.filters -------------------------------------------------------------------------------- /Cpp-Utilities/test/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/Cpp-Utilities/test/tests.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/README.md -------------------------------------------------------------------------------- /d3d11-wrapper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/.gitignore -------------------------------------------------------------------------------- /d3d11-wrapper/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/.gitmodules -------------------------------------------------------------------------------- /d3d11-wrapper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/LICENSE -------------------------------------------------------------------------------- /d3d11-wrapper/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/Readme.md -------------------------------------------------------------------------------- /d3d11-wrapper/d3d11_wrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/d3d11_wrapper.sln -------------------------------------------------------------------------------- /d3d11-wrapper/d3d11_wrapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/d3d11_wrapper.vcxproj -------------------------------------------------------------------------------- /d3d11-wrapper/d3d11_wrapper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/d3d11_wrapper.vcxproj.filters -------------------------------------------------------------------------------- /d3d11-wrapper/include/d3d11/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/include/d3d11/exports.h -------------------------------------------------------------------------------- /d3d11-wrapper/include/d3d11/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/include/d3d11/main.h -------------------------------------------------------------------------------- /d3d11-wrapper/include/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/include/dllmain.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DX11FontWrapper/FW1FontWrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DX11FontWrapper/FW1FontWrapper.sln -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw/DebugDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw/DebugDraw.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw/DebugDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw/DebugDraw.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw/Readme.md -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw_dbg_x64.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw_dbg_x64.idb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw_dbg_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw_dbg_x64.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw_dbg_x64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw_dbg_x64.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw_dbg_x86.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw_dbg_x86.idb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw_dbg_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw_dbg_x86.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw_dbg_x86.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw_dbg_x86.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw_x64.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw_x64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw_x64.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw_x86.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DebugDraw_x86.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DebugDraw_x86.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/CREDITS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/CREDITS.TXT -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/LICENSE.md -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/README.md -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/README.TXT -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/comeasy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/comeasy/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/comeasy/comeasy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/comeasy/comeasy.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/comeasy/wrotei.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/comeasy/wrotei.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/comeasy/wrotei.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/comeasy/wrotei.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/commem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/commem/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/commem/commem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/commem/commem.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/common.mak -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/cping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/cping/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/cping/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/cping/ReadMe.Txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/cping/cping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/cping/cping.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/cping/cping.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/cping/iping.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/cping/iping.idl -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/disas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/disas/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/disas/arm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/disas/arm.asm -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/disas/disas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/disas/disas.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/disas/ia64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/disas/ia64.asm -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/disas/unk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/disas/unk.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/disas/x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/disas/x64.asm -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/disas/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/disas/x86.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dtest/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dtest/NORMAL_IA64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dtest/NORMAL_IA64.TXT -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dtest/NORMAL_X64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dtest/NORMAL_X64.TXT -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dtest/NORMAL_X86.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dtest/NORMAL_X86.TXT -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dtest/dtarge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dtest/dtarge.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dtest/dtarge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dtest/dtarge.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dtest/dtarge.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dtest/dtarge.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dtest/dtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dtest/dtest.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dumpe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dumpe/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dumpe/dumpe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dumpe/dumpe.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dumpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dumpi/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/dumpi/dumpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/dumpi/dumpi.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/echo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/echo/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/echo/echofx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/echo/echofx.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/echo/echofx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/echo/echofx.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/echo/echonul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/echo/echonul.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/echo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/echo/main.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/einst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/einst/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/einst/edll1x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/einst/edll1x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/einst/edll2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/einst/edll2x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/einst/edll3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/einst/edll3x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/einst/einst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/einst/einst.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/excep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/excep/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/excep/excep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/excep/excep.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/excep/firstexc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/excep/firstexc.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/excep/firstexc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/excep/firstexc.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/findfunc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/findfunc/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/findfunc/extend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/findfunc/extend.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/findfunc/extend.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/findfunc/extend.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/findfunc/findfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/findfunc/findfunc.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/findfunc/symtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/findfunc/symtest.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/findfunc/target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/findfunc/target.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/findfunc/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/findfunc/target.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/findfunc/target.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/findfunc/target.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/impmunge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/impmunge/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/impmunge/impmunge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/impmunge/impmunge.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/member/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/member/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/member/member.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/member/member.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/opengl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/opengl/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/opengl/ogldet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/opengl/ogldet.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/opengl/ogldet.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/opengl/ogldet.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/opengl/testogl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/opengl/testogl.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/region/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/region/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/region/region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/region/region.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/setdll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/setdll/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/setdll/setdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/setdll/setdll.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/simple/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/simple/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/simple/simple.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/simple/simple.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/simple/simple.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/simple/sleep5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/simple/sleep5.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/NORMAL_IA64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/NORMAL_IA64.TXT -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/NORMAL_X64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/NORMAL_X64.TXT -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/NORMAL_X86.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/NORMAL_X86.TXT -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/dslept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/dslept.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/dslept.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/dslept.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/sleepbed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/sleepbed.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/sleepnew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/sleepnew.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/sleepold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/sleepold.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/slept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/slept.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/slept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/slept.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/slept.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/slept.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/slept/verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/slept/verify.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/syelog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/syelog/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/syelog/sltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/syelog/sltest.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/syelog/sltestp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/syelog/sltestp.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/syelog/syelog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/syelog/syelog.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/syelog/syelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/syelog/syelog.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/syelog/syelogd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/syelog/syelogd.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/NORMAL_IA64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/NORMAL_IA64.TXT -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/NORMAL_X64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/NORMAL_X64.TXT -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/talloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/talloc.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/tdll1x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/tdll1x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/tdll2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/tdll2x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/tdll3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/tdll3x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/tdll4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/tdll4x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/tdll5x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/tdll5x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/tdll6x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/tdll6x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/tdll7x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/tdll7x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/tdll8x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/tdll8x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/talloc/tdll9x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/talloc/tdll9x.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/traceapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/traceapi/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/traceapi/_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/traceapi/_win32.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/traceapi/testapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/traceapi/testapi.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/traceapi/trcapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/traceapi/trcapi.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/traceapi/trcapi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/traceapi/trcapi.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracebld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracebld/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracebld/tracebld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracebld/tracebld.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracebld/tracebld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracebld/tracebld.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracebld/trcbld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracebld/trcbld.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracebld/trcbld.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracebld/trcbld.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracelnk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracelnk/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracelnk/trclnk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracelnk/trclnk.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracelnk/trclnk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracelnk/trclnk.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracemem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracemem/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracemem/trcmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracemem/trcmem.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracemem/trcmem.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracemem/trcmem.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracereg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracereg/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracereg/trcreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracereg/trcreg.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracereg/trcreg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracereg/trcreg.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/traceser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/traceser/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/traceser/trcser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/traceser/trcser.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/traceser/trcser.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/traceser/trcser.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracessl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracessl/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracessl/trcssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracessl/trcssl.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracessl/trcssl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracessl/trcssl.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracetcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracetcp/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracetcp/trctcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracetcp/trctcp.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tracetcp/trctcp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tracetcp/trctcp.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tryman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tryman/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tryman/managed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tryman/managed.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tryman/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tryman/size.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tryman/tryman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tryman/tryman.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tryman/tstman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tryman/tstman.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/tryman/tstman.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/tryman/tstman.rc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/withdll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/withdll/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/samples/withdll/withdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/samples/withdll/withdll.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/src/Makefile -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/src/creatwth.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/src/detours.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/src/detours.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/src/detver.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/src/disasm.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/disolarm.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/disolarm64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/disolia64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_IA64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/disolx64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/disolx86.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X86_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/src/image.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/src/modules.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/src/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/src/uimports.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/Detours/system.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/Detours/system.mak -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/.editorconfig -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/.gitattributes -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/.gitignore -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/.nuget/directxtk_desktop_2015.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/.nuget/directxtk_desktop_2015.nuspec -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/.nuget/directxtk_desktop_2015.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/.nuget/directxtk_desktop_2015.targets -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/.nuget/directxtk_uwp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/.nuget/directxtk_uwp.nuspec -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/.nuget/directxtk_uwp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/.nuget/directxtk_uwp.targets -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/.nuget/signconfig_desktop_2015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/.nuget/signconfig_desktop_2015.xml -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/.nuget/signconfig_uwp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/.nuget/signconfig_uwp.xml -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Audio/AudioEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Audio/AudioEngine.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Audio/DynamicSoundEffectInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Audio/DynamicSoundEffectInstance.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Audio/SoundCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Audio/SoundCommon.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Audio/SoundCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Audio/SoundCommon.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Audio/SoundEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Audio/SoundEffect.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Audio/SoundEffectInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Audio/SoundEffectInstance.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Audio/WAVFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Audio/WAVFileReader.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Audio/WAVFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Audio/WAVFileReader.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Audio/WaveBank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Audio/WaveBank.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Audio/WaveBankReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Audio/WaveBankReader.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Audio/WaveBankReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Audio/WaveBankReader.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2015.sln -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2015.vcxproj -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2015_DXSDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2015_DXSDK.sln -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2015_Win10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2015_Win10.sln -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2015_Win10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2015_Win10.vcxproj -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2017.sln -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2017.vcxproj -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2017_DXSDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2017_DXSDK.sln -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2017_Win10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2017_Win10.sln -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2017_Win10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Desktop_2017_Win10.vcxproj -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Windows10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Windows10.sln -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Windows10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Windows10.vcxproj -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Windows10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Windows10.vcxproj.filters -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Windows10_2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Windows10_2015.sln -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_Windows10_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_Windows10_2015.vcxproj -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_XboxOneXDK_2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_XboxOneXDK_2015.sln -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_XboxOneXDK_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_XboxOneXDK_2015.vcxproj -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_XboxOneXDK_2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_XboxOneXDK_2017.sln -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/DirectXTK_XboxOneXDK_2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/DirectXTK_XboxOneXDK_2017.vcxproj -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/Audio.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/CommonStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/CommonStates.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/DDSTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/DDSTextureLoader.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/DirectXHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/DirectXHelpers.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/Effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/Effects.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/GamePad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/GamePad.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/GeometricPrimitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/GeometricPrimitive.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/GraphicsMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/GraphicsMemory.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/Keyboard.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/Model.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/Mouse.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/PostProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/PostProcess.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/PrimitiveBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/PrimitiveBatch.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/ScreenGrab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/ScreenGrab.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/SimpleMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/SimpleMath.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/SimpleMath.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/SimpleMath.inl -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/SpriteBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/SpriteBatch.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/SpriteFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/SpriteFont.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/VertexTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/VertexTypes.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/WICTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/WICTextureLoader.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Inc/XboxDDSTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Inc/XboxDDSTextureLoader.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/LICENSE -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/BitmapImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/BitmapImporter.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/BitmapUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/BitmapUtils.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/CharacterRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/CharacterRegion.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/CommandLineOptions.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/CommandLineParser.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/Glyph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/Glyph.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/GlyphCropper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/GlyphCropper.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/GlyphPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/GlyphPacker.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/IFontImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/IFontImporter.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/MakeSpriteFont.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/MakeSpriteFont.csproj -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/Program.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/SpriteFontWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/SpriteFontWriter.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/TrueTypeImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/MakeSpriteFont/TrueTypeImporter.cs -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Readme.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/AlignedNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/AlignedNew.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/AlphaTestEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/AlphaTestEffect.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/BasicEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/BasicEffect.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/BasicPostProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/BasicPostProcess.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Bezier.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/BinaryReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/BinaryReader.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/BinaryReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/BinaryReader.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/CommonStates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/CommonStates.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/ConstantBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/ConstantBuffer.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/DDSTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/DDSTextureLoader.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/DGSLEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/DGSLEffect.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/DGSLEffectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/DGSLEffectFactory.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/DebugEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/DebugEffect.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/DemandCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/DemandCreate.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/DualPostProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/DualPostProcess.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/DualTextureEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/DualTextureEffect.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/EffectCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/EffectCommon.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/EffectCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/EffectCommon.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/EffectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/EffectFactory.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/EnvironmentMapEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/EnvironmentMapEffect.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/GamePad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/GamePad.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/GeometricPrimitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/GeometricPrimitive.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Geometry.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Geometry.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/GraphicsMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/GraphicsMemory.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Keyboard.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/LoaderHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/LoaderHelpers.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Model.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/ModelLoadCMO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/ModelLoadCMO.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/ModelLoadSDKMESH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/ModelLoadSDKMESH.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/ModelLoadVBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/ModelLoadVBO.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Mouse.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/NormalMapEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/NormalMapEffect.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/PBREffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/PBREffect.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/PlatformHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/PlatformHelpers.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/PrimitiveBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/PrimitiveBatch.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/SDKMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/SDKMesh.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/ScreenGrab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/ScreenGrab.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/AlphaTestEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/AlphaTestEffect.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/BasicEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/BasicEffect.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/Common.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/Common.fxh -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/CompileShaders.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/CompileShaders.cmd -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/DGSLEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/DGSLEffect.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/DGSLLambert.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/DGSLLambert.hlsl -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/DGSLPhong.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/DGSLPhong.hlsl -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/DGSLUnlit.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/DGSLUnlit.hlsl -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/DebugEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/DebugEffect.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/DualTextureEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/DualTextureEffect.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/EnvironmentMapEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/EnvironmentMapEffect.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/Lighting.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/Lighting.fxh -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/NormalMapEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/NormalMapEffect.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/PBRCommon.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/PBRCommon.fxh -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/PBREffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/PBREffect.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/PostProcess.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/PostProcess.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/SkinnedEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/SkinnedEffect.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/SpriteEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/SpriteEffect.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/Structures.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/Structures.fxh -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/ToneMap.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/ToneMap.fx -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/Shaders/Utilities.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/Shaders/Utilities.fxh -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/SharedResourcePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/SharedResourcePool.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/SimpleMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/SimpleMath.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/SkinnedEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/SkinnedEffect.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/SpriteBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/SpriteBatch.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/SpriteFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/SpriteFont.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/TeapotData.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/TeapotData.inc -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/ToneMapPostProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/ToneMapPostProcess.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/VertexTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/VertexTypes.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/WICTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/WICTextureLoader.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/XboxDDSTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/XboxDDSTextureLoader.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/dds.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/pch.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/pch.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/Src/vbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/Src/vbo.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/XWBTool/xwbtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/XWBTool/xwbtool.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/XWBTool/xwbtool_Desktop_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/XWBTool/xwbtool_Desktop_2015.vcxproj -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK/XWBTool/xwbtool_Desktop_2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK/XWBTool/xwbtool_Desktop_2017.vcxproj -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK_dbg_x64.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK_dbg_x64.idb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK_dbg_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK_dbg_x64.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK_dbg_x64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK_dbg_x64.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK_dbg_x86.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK_dbg_x86.idb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK_dbg_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK_dbg_x86.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK_dbg_x86.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK_dbg_x86.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK_x64.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK_x64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK_x64.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK_x86.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/DirectXTK_x86.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/DirectXTK_x86.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/FW1FontWrapper_dbg_x64.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/FW1FontWrapper_dbg_x64.idb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/FW1FontWrapper_dbg_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/FW1FontWrapper_dbg_x64.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/FW1FontWrapper_dbg_x64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/FW1FontWrapper_dbg_x64.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/FW1FontWrapper_dbg_x86.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/FW1FontWrapper_dbg_x86.idb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/FW1FontWrapper_dbg_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/FW1FontWrapper_dbg_x86.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/FW1FontWrapper_dbg_x86.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/FW1FontWrapper_dbg_x86.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/FW1FontWrapper_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/FW1FontWrapper_x64.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/FW1FontWrapper_x64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/FW1FontWrapper_x64.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/FW1FontWrapper_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/FW1FontWrapper_x86.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/FW1FontWrapper_x86.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/FW1FontWrapper_x86.pdb -------------------------------------------------------------------------------- /d3d11-wrapper/lib/detours_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/detours_x64.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/detours_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/detours_x86.lib -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/LICENSE.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/README.md -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/cpp/INIReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/cpp/INIReader.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/cpp/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/cpp/INIReader.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/examples/INIReaderExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/examples/INIReaderExample.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/examples/config.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/examples/config.def -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/examples/ini_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/examples/ini_dump.c -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/examples/ini_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/examples/ini_example.c -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/examples/ini_xmacros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/examples/ini_xmacros.c -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/examples/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/examples/test.ini -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/extra/Makefile.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/extra/Makefile.static -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/ini.c -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/ini.h -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/bad_comment.ini: -------------------------------------------------------------------------------- 1 | This is an error 2 | -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/bad_multi.ini: -------------------------------------------------------------------------------- 1 | indented 2 | -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/bad_section.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/bad_section.ini -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/baseline_handler_lineno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/baseline_handler_lineno.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/baseline_heap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/baseline_heap.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/baseline_heap_max_line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/baseline_heap_max_line.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/baseline_heap_realloc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/baseline_heap_realloc.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/baseline_heap_realloc_max_line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/baseline_heap_realloc_max_line.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/baseline_heap_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/baseline_heap_string.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/baseline_multi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/baseline_multi.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/baseline_multi_max_line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/baseline_multi_max_line.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/baseline_single.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/baseline_single.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/baseline_stop_on_first_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/baseline_stop_on_first_error.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/baseline_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/baseline_string.txt -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/bom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/bom.ini -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/multi_line.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/multi_line.ini -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/normal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/normal.ini -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/unittest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/unittest.bat -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/unittest.c -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/unittest.sh -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/unittest_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/unittest_string.c -------------------------------------------------------------------------------- /d3d11-wrapper/lib/inih/tests/user_error.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/lib/inih/tests/user_error.ini -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/MakeSpriteFont.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/MakeSpriteFont.exe -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/MakeSpriteFonts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/MakeSpriteFonts.bat -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/MakeSpriteFontsJP.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/MakeSpriteFontsJP.bat -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/SpriteFonts/arial.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/SpriteFonts/arial.spritefont -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/SpriteFonts/arial_bold.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/SpriteFonts/arial_bold.spritefont -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/SpriteFonts/arial_italic.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/SpriteFonts/arial_italic.spritefont -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/SpriteFonts/arial_strike.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/SpriteFonts/arial_strike.spritefont -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/SpriteFonts/arial_underline.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/SpriteFonts/arial_underline.spritefont -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/SpriteFonts/courier_new.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/SpriteFonts/courier_new.spritefont -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/SpriteFonts/courier_new_bold.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/SpriteFonts/courier_new_bold.spritefont -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/SpriteFonts/courier_new_italic.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/SpriteFonts/courier_new_italic.spritefont -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/SpriteFonts/courier_new_strike.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/SpriteFonts/courier_new_strike.spritefont -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/SpriteFonts/courier_new_underline.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/SpriteFonts/courier_new_underline.spritefont -------------------------------------------------------------------------------- /d3d11-wrapper/rsrc/SpriteFonts/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/rsrc/SpriteFonts/resource.rc -------------------------------------------------------------------------------- /d3d11-wrapper/src/d3d11/d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/src/d3d11/d3d11.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/src/d3d11/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/src/d3d11/exports.def -------------------------------------------------------------------------------- /d3d11-wrapper/src/d3d11/exports_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/src/d3d11/exports_.cpp -------------------------------------------------------------------------------- /d3d11-wrapper/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungFine0825/RenderDocInjector/HEAD/d3d11-wrapper/src/dllmain.cpp --------------------------------------------------------------------------------