├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── 3rdparty ├── googletest │ ├── .clang-format │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ ├── 00-bug_report.yml │ │ │ ├── 10-feature_request.yml │ │ │ └── config.yml │ ├── .gitignore │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── MODULE.bazel │ ├── README.md │ ├── WORKSPACE │ ├── WORKSPACE.bzlmod │ ├── ci │ │ ├── linux-presubmit.sh │ │ ├── macos-presubmit.sh │ │ └── windows-presubmit.bat │ ├── docs │ │ ├── _config.yml │ │ ├── _data │ │ │ └── navigation.yml │ │ ├── _layouts │ │ │ └── default.html │ │ ├── _sass │ │ │ └── main.scss │ │ ├── advanced.md │ │ ├── assets │ │ │ └── css │ │ │ │ └── style.scss │ │ ├── community_created_documentation.md │ │ ├── faq.md │ │ ├── gmock_cheat_sheet.md │ │ ├── gmock_cook_book.md │ │ ├── gmock_faq.md │ │ ├── gmock_for_dummies.md │ │ ├── index.md │ │ ├── pkgconfig.md │ │ ├── platforms.md │ │ ├── primer.md │ │ ├── quickstart-bazel.md │ │ ├── quickstart-cmake.md │ │ ├── reference │ │ │ ├── actions.md │ │ │ ├── assertions.md │ │ │ ├── matchers.md │ │ │ ├── mocking.md │ │ │ └── testing.md │ │ └── samples.md │ ├── fake_fuchsia_sdk.bzl │ ├── googlemock │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ │ ├── gmock.pc.in │ │ │ └── gmock_main.pc.in │ │ ├── docs │ │ │ └── README.md │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── README.md │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ ├── gmock-port.h │ │ │ │ └── gmock-pp.h │ │ ├── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ │ └── test │ │ │ ├── BUILD.bazel │ │ │ ├── gmock-actions_test.cc │ │ │ ├── gmock-cardinalities_test.cc │ │ │ ├── gmock-function-mocker_test.cc │ │ │ ├── gmock-internal-utils_test.cc │ │ │ ├── gmock-matchers-arithmetic_test.cc │ │ │ ├── gmock-matchers-comparisons_test.cc │ │ │ ├── gmock-matchers-containers_test.cc │ │ │ ├── gmock-matchers-misc_test.cc │ │ │ ├── gmock-matchers_test.h │ │ │ ├── gmock-more-actions_test.cc │ │ │ ├── gmock-nice-strict_test.cc │ │ │ ├── gmock-port_test.cc │ │ │ ├── gmock-pp-string_test.cc │ │ │ ├── gmock-pp_test.cc │ │ │ ├── gmock-spec-builders_test.cc │ │ │ ├── gmock_all_test.cc │ │ │ ├── gmock_ex_test.cc │ │ │ ├── gmock_leak_test.py │ │ │ ├── gmock_leak_test_.cc │ │ │ ├── gmock_link2_test.cc │ │ │ ├── gmock_link_test.cc │ │ │ ├── gmock_link_test.h │ │ │ ├── gmock_output_test.py │ │ │ ├── gmock_output_test_.cc │ │ │ ├── gmock_output_test_golden.txt │ │ │ ├── gmock_stress_test.cc │ │ │ ├── gmock_test.cc │ │ │ └── gmock_test_utils.py │ ├── googletest │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ │ ├── Config.cmake.in │ │ │ ├── gtest.pc.in │ │ │ ├── gtest_main.pc.in │ │ │ ├── internal_utils.cmake │ │ │ └── libgtest.la.in │ │ ├── docs │ │ │ └── README.md │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-assertion-result.h │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-matchers.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── README.md │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port-arch.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ └── gtest-type-util.h │ │ ├── samples │ │ │ ├── prime_tables.h │ │ │ ├── sample1.cc │ │ │ ├── sample1.h │ │ │ ├── sample10_unittest.cc │ │ │ ├── sample1_unittest.cc │ │ │ ├── sample2.cc │ │ │ ├── sample2.h │ │ │ ├── sample2_unittest.cc │ │ │ ├── sample3-inl.h │ │ │ ├── sample3_unittest.cc │ │ │ ├── sample4.cc │ │ │ ├── sample4.h │ │ │ ├── sample4_unittest.cc │ │ │ ├── sample5_unittest.cc │ │ │ ├── sample6_unittest.cc │ │ │ ├── sample7_unittest.cc │ │ │ ├── sample8_unittest.cc │ │ │ └── sample9_unittest.cc │ │ ├── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-assertion-result.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-matchers.cc │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ │ └── test │ │ │ ├── BUILD.bazel │ │ │ ├── googletest-break-on-failure-unittest.py │ │ │ ├── googletest-break-on-failure-unittest_.cc │ │ │ ├── googletest-catch-exceptions-test.py │ │ │ ├── googletest-catch-exceptions-test_.cc │ │ │ ├── googletest-color-test.py │ │ │ ├── googletest-color-test_.cc │ │ │ ├── googletest-death-test-test.cc │ │ │ ├── googletest-death-test_ex_test.cc │ │ │ ├── googletest-env-var-test.py │ │ │ ├── googletest-env-var-test_.cc │ │ │ ├── googletest-failfast-unittest.py │ │ │ ├── googletest-failfast-unittest_.cc │ │ │ ├── googletest-filepath-test.cc │ │ │ ├── googletest-filter-unittest.py │ │ │ ├── googletest-filter-unittest_.cc │ │ │ ├── googletest-global-environment-unittest.py │ │ │ ├── googletest-global-environment-unittest_.cc │ │ │ ├── googletest-json-outfiles-test.py │ │ │ ├── googletest-json-output-unittest.py │ │ │ ├── googletest-list-tests-unittest.py │ │ │ ├── googletest-list-tests-unittest_.cc │ │ │ ├── googletest-listener-test.cc │ │ │ ├── googletest-message-test.cc │ │ │ ├── googletest-options-test.cc │ │ │ ├── googletest-output-test-golden-lin.txt │ │ │ ├── googletest-output-test.py │ │ │ ├── googletest-output-test_.cc │ │ │ ├── googletest-param-test-invalid-name1-test.py │ │ │ ├── googletest-param-test-invalid-name1-test_.cc │ │ │ ├── googletest-param-test-invalid-name2-test.py │ │ │ ├── googletest-param-test-invalid-name2-test_.cc │ │ │ ├── googletest-param-test-test.cc │ │ │ ├── googletest-param-test-test.h │ │ │ ├── googletest-param-test2-test.cc │ │ │ ├── googletest-port-test.cc │ │ │ ├── googletest-printers-test.cc │ │ │ ├── googletest-setuptestsuite-test.py │ │ │ ├── googletest-setuptestsuite-test_.cc │ │ │ ├── googletest-shuffle-test.py │ │ │ ├── googletest-shuffle-test_.cc │ │ │ ├── googletest-test-part-test.cc │ │ │ ├── googletest-throw-on-failure-test.py │ │ │ ├── googletest-throw-on-failure-test_.cc │ │ │ ├── googletest-uninitialized-test.py │ │ │ ├── googletest-uninitialized-test_.cc │ │ │ ├── gtest-typed-test2_test.cc │ │ │ ├── gtest-typed-test_test.cc │ │ │ ├── gtest-typed-test_test.h │ │ │ ├── gtest-unittest-api_test.cc │ │ │ ├── gtest_all_test.cc │ │ │ ├── gtest_assert_by_exception_test.cc │ │ │ ├── gtest_dirs_test.cc │ │ │ ├── gtest_environment_test.cc │ │ │ ├── gtest_help_test.py │ │ │ ├── gtest_help_test_.cc │ │ │ ├── gtest_json_test_utils.py │ │ │ ├── gtest_list_output_unittest.py │ │ │ ├── gtest_list_output_unittest_.cc │ │ │ ├── gtest_main_unittest.cc │ │ │ ├── gtest_no_test_unittest.cc │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ ├── gtest_premature_exit_test.cc │ │ │ ├── gtest_prod_test.cc │ │ │ ├── gtest_repeat_test.cc │ │ │ ├── gtest_skip_check_output_test.py │ │ │ ├── gtest_skip_environment_check_output_test.py │ │ │ ├── gtest_skip_in_environment_setup_test.cc │ │ │ ├── gtest_skip_test.cc │ │ │ ├── gtest_sole_header_test.cc │ │ │ ├── gtest_stress_test.cc │ │ │ ├── gtest_test_macro_stack_footprint_test.cc │ │ │ ├── gtest_test_utils.py │ │ │ ├── gtest_testbridge_test.py │ │ │ ├── gtest_testbridge_test_.cc │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ ├── gtest_unittest.cc │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ ├── gtest_xml_output_unittest.py │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ ├── gtest_xml_test_utils.py │ │ │ ├── production.cc │ │ │ └── production.h │ └── googletest_deps.bzl ├── protobuf-cpp │ └── protobuf-3.21.5 │ │ ├── BUILD.bazel │ │ ├── CHANGES.txt │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS.txt │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── aclocal.m4 │ │ ├── ar-lib │ │ ├── autogen.sh │ │ ├── benchmarks │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.md │ │ ├── benchmarks.proto │ │ ├── cpp │ │ │ └── cpp_benchmark.cc │ │ ├── datasets │ │ │ ├── google_message1 │ │ │ │ ├── proto2 │ │ │ │ │ └── benchmark_message1_proto2.proto │ │ │ │ └── proto3 │ │ │ │ │ └── benchmark_message1_proto3.proto │ │ │ ├── google_message2 │ │ │ │ └── benchmark_message2.proto │ │ │ ├── google_message3 │ │ │ │ ├── benchmark_message3.proto │ │ │ │ ├── benchmark_message3_1.proto │ │ │ │ ├── benchmark_message3_2.proto │ │ │ │ ├── benchmark_message3_3.proto │ │ │ │ ├── benchmark_message3_4.proto │ │ │ │ ├── benchmark_message3_5.proto │ │ │ │ ├── benchmark_message3_6.proto │ │ │ │ ├── benchmark_message3_7.proto │ │ │ │ └── benchmark_message3_8.proto │ │ │ └── google_message4 │ │ │ │ ├── benchmark_message4.proto │ │ │ │ ├── benchmark_message4_1.proto │ │ │ │ ├── benchmark_message4_2.proto │ │ │ │ └── benchmark_message4_3.proto │ │ ├── gogo │ │ │ └── cpp_no_group │ │ │ │ └── cpp_benchmark.cc │ │ ├── google_size.proto │ │ ├── python │ │ │ └── python_benchmark_messages.cc │ │ └── util │ │ │ ├── gogo_data_scrubber.cc │ │ │ ├── proto3_data_stripper.cc │ │ │ ├── protoc-gen-gogoproto.cc │ │ │ └── protoc-gen-proto2_to_proto3.cc │ │ ├── build_defs │ │ ├── BUILD.bazel │ │ ├── cc_proto_blacklist_test.bzl │ │ ├── compiler_config_setting.bzl │ │ └── cpp_opts.bzl │ │ ├── build_files_updated_unittest.sh │ │ ├── cmake │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── conformance.cmake │ │ ├── examples.cmake │ │ ├── extract_includes.bat.in │ │ ├── install.cmake │ │ ├── libprotobuf-lite.cmake │ │ ├── libprotobuf.cmake │ │ ├── libprotoc.cmake │ │ ├── protobuf-config-version.cmake.in │ │ ├── protobuf-config.cmake.in │ │ ├── protobuf-lite.pc.cmake │ │ ├── protobuf-module.cmake.in │ │ ├── protobuf-options.cmake │ │ ├── protobuf.pc.cmake │ │ ├── protoc.cmake │ │ ├── tests.cmake │ │ └── version.rc.in │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── conformance │ │ ├── BUILD.bazel │ │ ├── ConformanceJava.java │ │ ├── ConformanceJavaLite.java │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.md │ │ ├── binary_json_conformance_suite.cc │ │ ├── binary_json_conformance_suite.h │ │ ├── conformance.proto │ │ ├── conformance_cpp.cc │ │ ├── conformance_objc.m │ │ ├── conformance_php.php │ │ ├── conformance_python.py │ │ ├── conformance_ruby.rb │ │ ├── conformance_test.cc │ │ ├── conformance_test.h │ │ ├── conformance_test_main.cc │ │ ├── conformance_test_runner.cc │ │ ├── defs.bzl │ │ ├── failure_list_cpp.txt │ │ ├── failure_list_csharp.txt │ │ ├── failure_list_java.txt │ │ ├── failure_list_js.txt │ │ ├── failure_list_objc.txt │ │ ├── failure_list_php.txt │ │ ├── failure_list_php_c.txt │ │ ├── failure_list_python-post26.txt │ │ ├── failure_list_python.txt │ │ ├── failure_list_python_cpp.txt │ │ ├── failure_list_ruby.txt │ │ ├── text_format_conformance_suite.cc │ │ ├── text_format_conformance_suite.h │ │ └── third_party │ │ │ └── jsoncpp │ │ │ ├── json.h │ │ │ └── jsoncpp.cpp │ │ ├── csharp │ │ └── BUILD.bazel │ │ ├── depcomp │ │ ├── editors │ │ ├── README.txt │ │ ├── proto.vim │ │ └── protobuf-mode.el │ │ ├── examples │ │ ├── AddPerson.java │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── ListPeople.java │ │ ├── Makefile │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── add_person.cc │ │ ├── add_person.dart │ │ ├── add_person.py │ │ ├── addressbook.proto │ │ ├── go │ │ │ ├── cmd │ │ │ │ ├── add_person │ │ │ │ │ ├── add_person.go │ │ │ │ │ └── add_person_test.go │ │ │ │ └── list_people │ │ │ │ │ ├── list_people.go │ │ │ │ │ └── list_people_test.go │ │ │ ├── go.mod │ │ │ └── go.sum │ │ ├── list_people.cc │ │ ├── list_people.dart │ │ ├── list_people.py │ │ └── pubspec.yaml │ │ ├── generate_descriptor_proto.sh │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── m4 │ │ ├── ac_system_extensions.m4 │ │ ├── acx_check_suncc.m4 │ │ ├── ax_cxx_compile_stdcxx.m4 │ │ ├── ax_prog_cc_for_build.m4 │ │ ├── ax_prog_cxx_for_build.m4 │ │ ├── ax_pthread.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── stl_hash.m4 │ │ ├── maven_install.json │ │ ├── missing │ │ ├── objectivec │ │ └── GPBProtocolBuffers.m │ │ ├── php │ │ └── BUILD.bazel │ │ ├── protobuf-lite.pc.in │ │ ├── protobuf.bzl │ │ ├── protobuf.pc.in │ │ ├── protobuf_deps.bzl │ │ ├── protobuf_release.bzl │ │ ├── protobuf_version.bzl │ │ ├── ruby │ │ └── BUILD.bazel │ │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.md │ │ ├── google │ │ │ └── protobuf │ │ │ │ ├── any.cc │ │ │ │ ├── any.h │ │ │ │ ├── any.pb.cc │ │ │ │ ├── any.pb.h │ │ │ │ ├── any.proto │ │ │ │ ├── any_lite.cc │ │ │ │ ├── any_test.cc │ │ │ │ ├── any_test.proto │ │ │ │ ├── api.pb.cc │ │ │ │ ├── api.pb.h │ │ │ │ ├── api.proto │ │ │ │ ├── arena.cc │ │ │ │ ├── arena.h │ │ │ │ ├── arena_impl.h │ │ │ │ ├── arena_test_util.cc │ │ │ │ ├── arena_test_util.h │ │ │ │ ├── arena_unittest.cc │ │ │ │ ├── arenastring.cc │ │ │ │ ├── arenastring.h │ │ │ │ ├── arenastring_unittest.cc │ │ │ │ ├── arenaz_sampler.cc │ │ │ │ ├── arenaz_sampler.h │ │ │ │ ├── arenaz_sampler_test.cc │ │ │ │ ├── compiler │ │ │ │ ├── annotation_test_util.cc │ │ │ │ ├── annotation_test_util.h │ │ │ │ ├── code_generator.cc │ │ │ │ ├── code_generator.h │ │ │ │ ├── command_line_interface.cc │ │ │ │ ├── command_line_interface.h │ │ │ │ ├── command_line_interface_unittest.cc │ │ │ │ ├── cpp │ │ │ │ │ ├── bootstrap_unittest.cc │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ ├── enum.cc │ │ │ │ │ ├── enum.h │ │ │ │ │ ├── enum_field.cc │ │ │ │ │ ├── enum_field.h │ │ │ │ │ ├── extension.cc │ │ │ │ │ ├── extension.h │ │ │ │ │ ├── field.cc │ │ │ │ │ ├── field.h │ │ │ │ │ ├── file.cc │ │ │ │ │ ├── file.h │ │ │ │ │ ├── generator.cc │ │ │ │ │ ├── generator.h │ │ │ │ │ ├── helpers.cc │ │ │ │ │ ├── helpers.h │ │ │ │ │ ├── map_field.cc │ │ │ │ │ ├── map_field.h │ │ │ │ │ ├── message.cc │ │ │ │ │ ├── message.h │ │ │ │ │ ├── message_field.cc │ │ │ │ │ ├── message_field.h │ │ │ │ │ ├── message_layout_helper.h │ │ │ │ │ ├── message_size_unittest.cc │ │ │ │ │ ├── metadata_test.cc │ │ │ │ │ ├── move_unittest.cc │ │ │ │ │ ├── names.h │ │ │ │ │ ├── options.h │ │ │ │ │ ├── padding_optimizer.cc │ │ │ │ │ ├── padding_optimizer.h │ │ │ │ │ ├── parse_function_generator.cc │ │ │ │ │ ├── parse_function_generator.h │ │ │ │ │ ├── plugin_unittest.cc │ │ │ │ │ ├── primitive_field.cc │ │ │ │ │ ├── primitive_field.h │ │ │ │ │ ├── service.cc │ │ │ │ │ ├── service.h │ │ │ │ │ ├── string_field.cc │ │ │ │ │ ├── string_field.h │ │ │ │ │ ├── test_bad_identifiers.proto │ │ │ │ │ ├── test_large_enum_value.proto │ │ │ │ │ ├── unittest.cc │ │ │ │ │ ├── unittest.h │ │ │ │ │ └── unittest.inc │ │ │ │ ├── csharp │ │ │ │ │ ├── csharp_bootstrap_unittest.cc │ │ │ │ │ ├── csharp_doc_comment.cc │ │ │ │ │ ├── csharp_doc_comment.h │ │ │ │ │ ├── csharp_enum.cc │ │ │ │ │ ├── csharp_enum.h │ │ │ │ │ ├── csharp_enum_field.cc │ │ │ │ │ ├── csharp_enum_field.h │ │ │ │ │ ├── csharp_field_base.cc │ │ │ │ │ ├── csharp_field_base.h │ │ │ │ │ ├── csharp_generator.cc │ │ │ │ │ ├── csharp_generator.h │ │ │ │ │ ├── csharp_generator_unittest.cc │ │ │ │ │ ├── csharp_helpers.cc │ │ │ │ │ ├── csharp_helpers.h │ │ │ │ │ ├── csharp_map_field.cc │ │ │ │ │ ├── csharp_map_field.h │ │ │ │ │ ├── csharp_message.cc │ │ │ │ │ ├── csharp_message.h │ │ │ │ │ ├── csharp_message_field.cc │ │ │ │ │ ├── csharp_message_field.h │ │ │ │ │ ├── csharp_names.h │ │ │ │ │ ├── csharp_options.h │ │ │ │ │ ├── csharp_primitive_field.cc │ │ │ │ │ ├── csharp_primitive_field.h │ │ │ │ │ ├── csharp_reflection_class.cc │ │ │ │ │ ├── csharp_reflection_class.h │ │ │ │ │ ├── csharp_repeated_enum_field.cc │ │ │ │ │ ├── csharp_repeated_enum_field.h │ │ │ │ │ ├── csharp_repeated_message_field.cc │ │ │ │ │ ├── csharp_repeated_message_field.h │ │ │ │ │ ├── csharp_repeated_primitive_field.cc │ │ │ │ │ ├── csharp_repeated_primitive_field.h │ │ │ │ │ ├── csharp_source_generator_base.cc │ │ │ │ │ ├── csharp_source_generator_base.h │ │ │ │ │ ├── csharp_wrapper_field.cc │ │ │ │ │ └── csharp_wrapper_field.h │ │ │ │ ├── importer.cc │ │ │ │ ├── importer.h │ │ │ │ ├── importer_unittest.cc │ │ │ │ ├── java │ │ │ │ │ ├── context.cc │ │ │ │ │ ├── context.h │ │ │ │ │ ├── doc_comment.cc │ │ │ │ │ ├── doc_comment.h │ │ │ │ │ ├── doc_comment_unittest.cc │ │ │ │ │ ├── enum.cc │ │ │ │ │ ├── enum.h │ │ │ │ │ ├── enum_field.cc │ │ │ │ │ ├── enum_field.h │ │ │ │ │ ├── enum_field_lite.cc │ │ │ │ │ ├── enum_field_lite.h │ │ │ │ │ ├── enum_lite.cc │ │ │ │ │ ├── enum_lite.h │ │ │ │ │ ├── extension.cc │ │ │ │ │ ├── extension.h │ │ │ │ │ ├── extension_lite.cc │ │ │ │ │ ├── extension_lite.h │ │ │ │ │ ├── field.cc │ │ │ │ │ ├── field.h │ │ │ │ │ ├── file.cc │ │ │ │ │ ├── file.h │ │ │ │ │ ├── generator.cc │ │ │ │ │ ├── generator.h │ │ │ │ │ ├── generator_factory.cc │ │ │ │ │ ├── generator_factory.h │ │ │ │ │ ├── helpers.cc │ │ │ │ │ ├── helpers.h │ │ │ │ │ ├── java_generator.h │ │ │ │ │ ├── kotlin_generator.cc │ │ │ │ │ ├── kotlin_generator.h │ │ │ │ │ ├── map_field.cc │ │ │ │ │ ├── map_field.h │ │ │ │ │ ├── map_field_lite.cc │ │ │ │ │ ├── map_field_lite.h │ │ │ │ │ ├── message.cc │ │ │ │ │ ├── message.h │ │ │ │ │ ├── message_builder.cc │ │ │ │ │ ├── message_builder.h │ │ │ │ │ ├── message_builder_lite.cc │ │ │ │ │ ├── message_builder_lite.h │ │ │ │ │ ├── message_field.cc │ │ │ │ │ ├── message_field.h │ │ │ │ │ ├── message_field_lite.cc │ │ │ │ │ ├── message_field_lite.h │ │ │ │ │ ├── message_lite.cc │ │ │ │ │ ├── message_lite.h │ │ │ │ │ ├── name_resolver.cc │ │ │ │ │ ├── name_resolver.h │ │ │ │ │ ├── names.h │ │ │ │ │ ├── options.h │ │ │ │ │ ├── plugin_unittest.cc │ │ │ │ │ ├── primitive_field.cc │ │ │ │ │ ├── primitive_field.h │ │ │ │ │ ├── primitive_field_lite.cc │ │ │ │ │ ├── primitive_field_lite.h │ │ │ │ │ ├── service.cc │ │ │ │ │ ├── service.h │ │ │ │ │ ├── shared_code_generator.cc │ │ │ │ │ ├── shared_code_generator.h │ │ │ │ │ ├── string_field.cc │ │ │ │ │ ├── string_field.h │ │ │ │ │ ├── string_field_lite.cc │ │ │ │ │ └── string_field_lite.h │ │ │ │ ├── main.cc │ │ │ │ ├── mock_code_generator.cc │ │ │ │ ├── mock_code_generator.h │ │ │ │ ├── objectivec │ │ │ │ │ ├── objectivec_enum.cc │ │ │ │ │ ├── objectivec_enum.h │ │ │ │ │ ├── objectivec_enum_field.cc │ │ │ │ │ ├── objectivec_enum_field.h │ │ │ │ │ ├── objectivec_extension.cc │ │ │ │ │ ├── objectivec_extension.h │ │ │ │ │ ├── objectivec_field.cc │ │ │ │ │ ├── objectivec_field.h │ │ │ │ │ ├── objectivec_file.cc │ │ │ │ │ ├── objectivec_file.h │ │ │ │ │ ├── objectivec_generator.cc │ │ │ │ │ ├── objectivec_generator.h │ │ │ │ │ ├── objectivec_helpers.cc │ │ │ │ │ ├── objectivec_helpers.h │ │ │ │ │ ├── objectivec_helpers_unittest.cc │ │ │ │ │ ├── objectivec_map_field.cc │ │ │ │ │ ├── objectivec_map_field.h │ │ │ │ │ ├── objectivec_message.cc │ │ │ │ │ ├── objectivec_message.h │ │ │ │ │ ├── objectivec_message_field.cc │ │ │ │ │ ├── objectivec_message_field.h │ │ │ │ │ ├── objectivec_nsobject_methods.h │ │ │ │ │ ├── objectivec_oneof.cc │ │ │ │ │ ├── objectivec_oneof.h │ │ │ │ │ ├── objectivec_primitive_field.cc │ │ │ │ │ └── objectivec_primitive_field.h │ │ │ │ ├── package_info.h │ │ │ │ ├── parser.cc │ │ │ │ ├── parser.h │ │ │ │ ├── parser_unittest.cc │ │ │ │ ├── php │ │ │ │ │ ├── php_generator.cc │ │ │ │ │ └── php_generator.h │ │ │ │ ├── plugin.cc │ │ │ │ ├── plugin.h │ │ │ │ ├── plugin.pb.cc │ │ │ │ ├── plugin.pb.h │ │ │ │ ├── plugin.proto │ │ │ │ ├── python │ │ │ │ │ ├── generator.cc │ │ │ │ │ ├── generator.h │ │ │ │ │ ├── helpers.cc │ │ │ │ │ ├── helpers.h │ │ │ │ │ ├── plugin_unittest.cc │ │ │ │ │ ├── pyi_generator.cc │ │ │ │ │ ├── pyi_generator.h │ │ │ │ │ └── python_generator.h │ │ │ │ ├── ruby │ │ │ │ │ ├── ruby_generated_code.proto │ │ │ │ │ ├── ruby_generated_code_pb.rb │ │ │ │ │ ├── ruby_generated_code_proto2.proto │ │ │ │ │ ├── ruby_generated_code_proto2_import.proto │ │ │ │ │ ├── ruby_generated_code_proto2_pb.rb │ │ │ │ │ ├── ruby_generated_pkg_explicit.proto │ │ │ │ │ ├── ruby_generated_pkg_explicit_legacy.proto │ │ │ │ │ ├── ruby_generated_pkg_explicit_legacy_pb.rb │ │ │ │ │ ├── ruby_generated_pkg_explicit_pb.rb │ │ │ │ │ ├── ruby_generated_pkg_implicit.proto │ │ │ │ │ ├── ruby_generated_pkg_implicit_pb.rb │ │ │ │ │ ├── ruby_generator.cc │ │ │ │ │ ├── ruby_generator.h │ │ │ │ │ └── ruby_generator_unittest.cc │ │ │ │ ├── scc.h │ │ │ │ ├── subprocess.cc │ │ │ │ ├── subprocess.h │ │ │ │ ├── test_plugin.cc │ │ │ │ ├── zip_output_unittest.sh │ │ │ │ ├── zip_writer.cc │ │ │ │ └── zip_writer.h │ │ │ │ ├── descriptor.cc │ │ │ │ ├── descriptor.h │ │ │ │ ├── descriptor.pb.cc │ │ │ │ ├── descriptor.pb.h │ │ │ │ ├── descriptor.proto │ │ │ │ ├── descriptor_database.cc │ │ │ │ ├── descriptor_database.h │ │ │ │ ├── descriptor_database_unittest.cc │ │ │ │ ├── descriptor_unittest.cc │ │ │ │ ├── drop_unknown_fields_test.cc │ │ │ │ ├── duration.pb.cc │ │ │ │ ├── duration.pb.h │ │ │ │ ├── duration.proto │ │ │ │ ├── dynamic_message.cc │ │ │ │ ├── dynamic_message.h │ │ │ │ ├── dynamic_message_unittest.cc │ │ │ │ ├── empty.pb.cc │ │ │ │ ├── empty.pb.h │ │ │ │ ├── empty.proto │ │ │ │ ├── endian.h │ │ │ │ ├── explicitly_constructed.h │ │ │ │ ├── extension_set.cc │ │ │ │ ├── extension_set.h │ │ │ │ ├── extension_set_heavy.cc │ │ │ │ ├── extension_set_inl.h │ │ │ │ ├── extension_set_unittest.cc │ │ │ │ ├── field_access_listener.h │ │ │ │ ├── field_mask.pb.cc │ │ │ │ ├── field_mask.pb.h │ │ │ │ ├── field_mask.proto │ │ │ │ ├── generated_enum_reflection.h │ │ │ │ ├── generated_enum_util.cc │ │ │ │ ├── generated_enum_util.h │ │ │ │ ├── generated_message_bases.cc │ │ │ │ ├── generated_message_bases.h │ │ │ │ ├── generated_message_reflection.cc │ │ │ │ ├── generated_message_reflection.h │ │ │ │ ├── generated_message_reflection_unittest.cc │ │ │ │ ├── generated_message_tctable_decl.h │ │ │ │ ├── generated_message_tctable_full.cc │ │ │ │ ├── generated_message_tctable_impl.h │ │ │ │ ├── generated_message_tctable_lite.cc │ │ │ │ ├── generated_message_tctable_lite_test.cc │ │ │ │ ├── generated_message_util.cc │ │ │ │ ├── generated_message_util.h │ │ │ │ ├── has_bits.h │ │ │ │ ├── implicit_weak_message.cc │ │ │ │ ├── implicit_weak_message.h │ │ │ │ ├── inlined_string_field.cc │ │ │ │ ├── inlined_string_field.h │ │ │ │ ├── inlined_string_field_unittest.cc │ │ │ │ ├── io │ │ │ │ ├── coded_stream.cc │ │ │ │ ├── coded_stream.h │ │ │ │ ├── coded_stream_unittest.cc │ │ │ │ ├── gzip_stream.cc │ │ │ │ ├── gzip_stream.h │ │ │ │ ├── gzip_stream_unittest.sh │ │ │ │ ├── io_win32.cc │ │ │ │ ├── io_win32.h │ │ │ │ ├── io_win32_unittest.cc │ │ │ │ ├── package_info.h │ │ │ │ ├── printer.cc │ │ │ │ ├── printer.h │ │ │ │ ├── printer_unittest.cc │ │ │ │ ├── strtod.cc │ │ │ │ ├── strtod.h │ │ │ │ ├── tokenizer.cc │ │ │ │ ├── tokenizer.h │ │ │ │ ├── tokenizer_unittest.cc │ │ │ │ ├── zero_copy_stream.cc │ │ │ │ ├── zero_copy_stream.h │ │ │ │ ├── zero_copy_stream_impl.cc │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ │ ├── zero_copy_stream_impl_lite.h │ │ │ │ └── zero_copy_stream_unittest.cc │ │ │ │ ├── lite_arena_unittest.cc │ │ │ │ ├── lite_unittest.cc │ │ │ │ ├── map.cc │ │ │ │ ├── map.h │ │ │ │ ├── map_entry.h │ │ │ │ ├── map_entry_lite.h │ │ │ │ ├── map_field.cc │ │ │ │ ├── map_field.h │ │ │ │ ├── map_field_inl.h │ │ │ │ ├── map_field_lite.h │ │ │ │ ├── map_field_test.cc │ │ │ │ ├── map_lite_test_util.cc │ │ │ │ ├── map_lite_test_util.h │ │ │ │ ├── map_lite_unittest.proto │ │ │ │ ├── map_proto2_unittest.proto │ │ │ │ ├── map_test.cc │ │ │ │ ├── map_test.inc │ │ │ │ ├── map_test_util.h │ │ │ │ ├── map_test_util.inc │ │ │ │ ├── map_test_util_impl.h │ │ │ │ ├── map_type_handler.h │ │ │ │ ├── map_unittest.proto │ │ │ │ ├── message.cc │ │ │ │ ├── message.h │ │ │ │ ├── message_lite.cc │ │ │ │ ├── message_lite.h │ │ │ │ ├── message_unittest.cc │ │ │ │ ├── message_unittest.inc │ │ │ │ ├── metadata.h │ │ │ │ ├── metadata_lite.h │ │ │ │ ├── no_field_presence_test.cc │ │ │ │ ├── package_info.h │ │ │ │ ├── parse_context.cc │ │ │ │ ├── parse_context.h │ │ │ │ ├── port.h │ │ │ │ ├── port_def.inc │ │ │ │ ├── port_undef.inc │ │ │ │ ├── preserve_unknown_enum_test.cc │ │ │ │ ├── proto3_arena_lite_unittest.cc │ │ │ │ ├── proto3_arena_unittest.cc │ │ │ │ ├── proto3_lite_unittest.cc │ │ │ │ ├── proto3_lite_unittest.inc │ │ │ │ ├── reflection.h │ │ │ │ ├── reflection_internal.h │ │ │ │ ├── reflection_ops.cc │ │ │ │ ├── reflection_ops.h │ │ │ │ ├── reflection_ops_unittest.cc │ │ │ │ ├── reflection_tester.cc │ │ │ │ ├── reflection_tester.h │ │ │ │ ├── repeated_field.cc │ │ │ │ ├── repeated_field.h │ │ │ │ ├── repeated_field_reflection_unittest.cc │ │ │ │ ├── repeated_field_unittest.cc │ │ │ │ ├── repeated_ptr_field.cc │ │ │ │ ├── repeated_ptr_field.h │ │ │ │ ├── service.cc │ │ │ │ ├── service.h │ │ │ │ ├── source_context.pb.cc │ │ │ │ ├── source_context.pb.h │ │ │ │ ├── source_context.proto │ │ │ │ ├── string_member_robber.h │ │ │ │ ├── struct.pb.cc │ │ │ │ ├── struct.pb.h │ │ │ │ ├── struct.proto │ │ │ │ ├── stubs │ │ │ │ ├── bytestream.cc │ │ │ │ ├── bytestream.h │ │ │ │ ├── bytestream_unittest.cc │ │ │ │ ├── callback.h │ │ │ │ ├── casts.h │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── common_unittest.cc │ │ │ │ ├── hash.h │ │ │ │ ├── int128.cc │ │ │ │ ├── int128.h │ │ │ │ ├── int128_unittest.cc │ │ │ │ ├── logging.h │ │ │ │ ├── macros.h │ │ │ │ ├── map_util.h │ │ │ │ ├── mathutil.h │ │ │ │ ├── mutex.h │ │ │ │ ├── once.h │ │ │ │ ├── platform_macros.h │ │ │ │ ├── port.h │ │ │ │ ├── status.cc │ │ │ │ ├── status.h │ │ │ │ ├── status_macros.h │ │ │ │ ├── status_test.cc │ │ │ │ ├── statusor.cc │ │ │ │ ├── statusor.h │ │ │ │ ├── statusor_test.cc │ │ │ │ ├── stl_util.h │ │ │ │ ├── stringpiece.cc │ │ │ │ ├── stringpiece.h │ │ │ │ ├── stringpiece_unittest.cc │ │ │ │ ├── stringprintf.cc │ │ │ │ ├── stringprintf.h │ │ │ │ ├── stringprintf_unittest.cc │ │ │ │ ├── structurally_valid.cc │ │ │ │ ├── structurally_valid_unittest.cc │ │ │ │ ├── strutil.cc │ │ │ │ ├── strutil.h │ │ │ │ ├── strutil_unittest.cc │ │ │ │ ├── substitute.cc │ │ │ │ ├── substitute.h │ │ │ │ ├── template_util.h │ │ │ │ ├── template_util_unittest.cc │ │ │ │ ├── time.cc │ │ │ │ ├── time.h │ │ │ │ └── time_test.cc │ │ │ │ ├── test_messages_proto2.proto │ │ │ │ ├── test_messages_proto3.proto │ │ │ │ ├── test_util.cc │ │ │ │ ├── test_util.h │ │ │ │ ├── test_util.inc │ │ │ │ ├── test_util2.h │ │ │ │ ├── test_util_lite.cc │ │ │ │ ├── test_util_lite.h │ │ │ │ ├── testdata │ │ │ │ ├── bad_utf8_string │ │ │ │ ├── golden_message │ │ │ │ ├── golden_message_maps │ │ │ │ ├── golden_message_oneof_implemented │ │ │ │ ├── golden_message_proto3 │ │ │ │ ├── golden_packed_fields_message │ │ │ │ ├── map_test_data.txt │ │ │ │ ├── text_format_unittest_data.txt │ │ │ │ ├── text_format_unittest_data_oneof_implemented.txt │ │ │ │ ├── text_format_unittest_data_pointy.txt │ │ │ │ ├── text_format_unittest_data_pointy_oneof.txt │ │ │ │ ├── text_format_unittest_extensions_data.txt │ │ │ │ └── text_format_unittest_extensions_data_pointy.txt │ │ │ │ ├── testing │ │ │ │ ├── file.cc │ │ │ │ ├── file.h │ │ │ │ ├── googletest.cc │ │ │ │ ├── googletest.h │ │ │ │ ├── zcgunzip.cc │ │ │ │ └── zcgzip.cc │ │ │ │ ├── text_format.cc │ │ │ │ ├── text_format.h │ │ │ │ ├── text_format_unittest.cc │ │ │ │ ├── timestamp.pb.cc │ │ │ │ ├── timestamp.pb.h │ │ │ │ ├── timestamp.proto │ │ │ │ ├── type.pb.cc │ │ │ │ ├── type.pb.h │ │ │ │ ├── type.proto │ │ │ │ ├── unittest.proto │ │ │ │ ├── unittest_arena.proto │ │ │ │ ├── unittest_custom_options.proto │ │ │ │ ├── unittest_drop_unknown_fields.proto │ │ │ │ ├── unittest_embed_optimize_for.proto │ │ │ │ ├── unittest_empty.proto │ │ │ │ ├── unittest_enormous_descriptor.proto │ │ │ │ ├── unittest_import.proto │ │ │ │ ├── unittest_import_lite.proto │ │ │ │ ├── unittest_import_public.proto │ │ │ │ ├── unittest_import_public_lite.proto │ │ │ │ ├── unittest_lazy_dependencies.proto │ │ │ │ ├── unittest_lazy_dependencies_custom_option.proto │ │ │ │ ├── unittest_lazy_dependencies_enum.proto │ │ │ │ ├── unittest_lite.proto │ │ │ │ ├── unittest_lite_imports_nonlite.proto │ │ │ │ ├── unittest_mset.proto │ │ │ │ ├── unittest_mset_wire_format.proto │ │ │ │ ├── unittest_no_field_presence.proto │ │ │ │ ├── unittest_no_generic_services.proto │ │ │ │ ├── unittest_optimize_for.proto │ │ │ │ ├── unittest_preserve_unknown_enum.proto │ │ │ │ ├── unittest_preserve_unknown_enum2.proto │ │ │ │ ├── unittest_proto3.proto │ │ │ │ ├── unittest_proto3_arena.proto │ │ │ │ ├── unittest_proto3_arena_lite.proto │ │ │ │ ├── unittest_proto3_lite.proto │ │ │ │ ├── unittest_proto3_optional.proto │ │ │ │ ├── unittest_well_known_types.proto │ │ │ │ ├── unknown_field_set.cc │ │ │ │ ├── unknown_field_set.h │ │ │ │ ├── unknown_field_set_unittest.cc │ │ │ │ ├── util │ │ │ │ ├── delimited_message_util.cc │ │ │ │ ├── delimited_message_util.h │ │ │ │ ├── delimited_message_util_test.cc │ │ │ │ ├── field_comparator.cc │ │ │ │ ├── field_comparator.h │ │ │ │ ├── field_comparator_test.cc │ │ │ │ ├── field_mask_util.cc │ │ │ │ ├── field_mask_util.h │ │ │ │ ├── field_mask_util_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── datapiece.cc │ │ │ │ │ ├── datapiece.h │ │ │ │ │ ├── default_value_objectwriter.cc │ │ │ │ │ ├── default_value_objectwriter.h │ │ │ │ │ ├── default_value_objectwriter_test.cc │ │ │ │ │ ├── error_listener.cc │ │ │ │ │ ├── error_listener.h │ │ │ │ │ ├── expecting_objectwriter.h │ │ │ │ │ ├── field_mask_utility.cc │ │ │ │ │ ├── field_mask_utility.h │ │ │ │ │ ├── json_escaping.cc │ │ │ │ │ ├── json_escaping.h │ │ │ │ │ ├── json_objectwriter.cc │ │ │ │ │ ├── json_objectwriter.h │ │ │ │ │ ├── json_objectwriter_test.cc │ │ │ │ │ ├── json_stream_parser.cc │ │ │ │ │ ├── json_stream_parser.h │ │ │ │ │ ├── json_stream_parser_test.cc │ │ │ │ │ ├── location_tracker.h │ │ │ │ │ ├── mock_error_listener.h │ │ │ │ │ ├── object_location_tracker.h │ │ │ │ │ ├── object_source.h │ │ │ │ │ ├── object_writer.cc │ │ │ │ │ ├── object_writer.h │ │ │ │ │ ├── proto_writer.cc │ │ │ │ │ ├── proto_writer.h │ │ │ │ │ ├── protostream_objectsource.cc │ │ │ │ │ ├── protostream_objectsource.h │ │ │ │ │ ├── protostream_objectsource_test.cc │ │ │ │ │ ├── protostream_objectwriter.cc │ │ │ │ │ ├── protostream_objectwriter.h │ │ │ │ │ ├── protostream_objectwriter_test.cc │ │ │ │ │ ├── structured_objectwriter.h │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── anys.proto │ │ │ │ │ │ ├── books.proto │ │ │ │ │ │ ├── default_value.proto │ │ │ │ │ │ ├── default_value_test.proto │ │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ │ ├── maps.proto │ │ │ │ │ │ ├── oneofs.proto │ │ │ │ │ │ ├── proto3.proto │ │ │ │ │ │ ├── struct.proto │ │ │ │ │ │ ├── timestamp_duration.proto │ │ │ │ │ │ └── wrappers.proto │ │ │ │ │ ├── type_info.cc │ │ │ │ │ ├── type_info.h │ │ │ │ │ ├── type_info_test_helper.cc │ │ │ │ │ ├── type_info_test_helper.h │ │ │ │ │ ├── utility.cc │ │ │ │ │ └── utility.h │ │ │ │ ├── json_format.proto │ │ │ │ ├── json_format_proto3.proto │ │ │ │ ├── json_util.cc │ │ │ │ ├── json_util.h │ │ │ │ ├── json_util_test.cc │ │ │ │ ├── message_differencer.cc │ │ │ │ ├── message_differencer.h │ │ │ │ ├── message_differencer_unittest.cc │ │ │ │ ├── message_differencer_unittest.proto │ │ │ │ ├── package_info.h │ │ │ │ ├── time_util.cc │ │ │ │ ├── time_util.h │ │ │ │ ├── time_util_test.cc │ │ │ │ ├── type_resolver.h │ │ │ │ ├── type_resolver_util.cc │ │ │ │ ├── type_resolver_util.h │ │ │ │ └── type_resolver_util_test.cc │ │ │ │ ├── well_known_types_unittest.cc │ │ │ │ ├── wire_format.cc │ │ │ │ ├── wire_format.h │ │ │ │ ├── wire_format_lite.cc │ │ │ │ ├── wire_format_lite.h │ │ │ │ ├── wire_format_unittest.cc │ │ │ │ ├── wire_format_unittest.inc │ │ │ │ ├── wrappers.pb.cc │ │ │ │ ├── wrappers.pb.h │ │ │ │ └── wrappers.proto │ │ ├── libprotobuf-lite.map │ │ ├── libprotobuf.map │ │ ├── libprotoc.map │ │ └── solaris │ │ │ └── libstdc++.la │ │ ├── test-driver │ │ ├── third_party │ │ ├── googletest │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.md │ │ │ ├── WORKSPACE │ │ │ ├── aclocal.m4 │ │ │ ├── build-aux │ │ │ │ ├── install-sh │ │ │ │ └── missing │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── googlemock │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.md │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── build-aux │ │ │ │ │ ├── compile │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── missing │ │ │ │ │ └── test-driver │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── fused-src │ │ │ │ │ ├── gmock-gtest-all.cc │ │ │ │ │ ├── gmock │ │ │ │ │ │ └── gmock.h │ │ │ │ │ ├── gmock_main.cc │ │ │ │ │ └── gtest │ │ │ │ │ │ └── gtest.h │ │ │ │ ├── include │ │ │ │ │ └── gmock │ │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ │ ├── gmock.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ │ ├── gmock-port.h │ │ │ │ │ │ └── gmock-pp.h │ │ │ │ ├── make │ │ │ │ │ └── Makefile │ │ │ │ ├── msvc │ │ │ │ │ ├── 2005 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcproj │ │ │ │ │ │ ├── gmock_config.vsprops │ │ │ │ │ │ ├── gmock_main.vcproj │ │ │ │ │ │ └── gmock_test.vcproj │ │ │ │ │ └── 2010 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ ├── scripts │ │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ │ ├── generator │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── README.cppclean │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ast.py │ │ │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ │ │ ├── keywords.py │ │ │ │ │ │ │ ├── tokenize.py │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ └── gmock_gen.py │ │ │ │ │ ├── gmock-config.in │ │ │ │ │ └── gmock_doctor.py │ │ │ │ ├── src │ │ │ │ │ ├── gmock-all.cc │ │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ │ ├── gmock-matchers.cc │ │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ │ ├── gmock.cc │ │ │ │ │ └── gmock_main.cc │ │ │ │ └── test │ │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ │ ├── gmock-function-mocker_test.cc │ │ │ │ │ ├── gmock-generated-actions_test.cc │ │ │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ │ ├── gmock-port_test.cc │ │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ │ ├── gmock_all_test.cc │ │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ │ ├── gmock_leak_test.py │ │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ │ ├── gmock_link_test.cc │ │ │ │ │ ├── gmock_link_test.h │ │ │ │ │ ├── gmock_output_test.py │ │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ │ ├── gmock_test.cc │ │ │ │ │ └── gmock_test_utils.py │ │ │ └── googletest │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.md │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── build-aux │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── depcomp │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ └── test-driver │ │ │ │ ├── cmake │ │ │ │ └── internal_utils.cmake │ │ │ │ ├── codegear │ │ │ │ ├── gtest.cbproj │ │ │ │ ├── gtest.groupproj │ │ │ │ ├── gtest_all.cc │ │ │ │ ├── gtest_link.cc │ │ │ │ ├── gtest_main.cbproj │ │ │ │ └── gtest_unittest.cbproj │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── fused-src │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-all.cc │ │ │ │ │ ├── gtest.h │ │ │ │ │ └── gtest_main.cc │ │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-matchers.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ └── gtest.h │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ │ ├── m4 │ │ │ │ ├── acx_pthread.m4 │ │ │ │ ├── gtest.m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ │ │ ├── make │ │ │ │ └── Makefile │ │ │ │ ├── msvc │ │ │ │ └── 2010 │ │ │ │ │ ├── gtest-md.sln │ │ │ │ │ ├── gtest-md.vcxproj │ │ │ │ │ ├── gtest.sln │ │ │ │ │ ├── gtest.vcxproj │ │ │ │ │ ├── gtest_main-md.vcxproj │ │ │ │ │ ├── gtest_main.vcxproj │ │ │ │ │ ├── gtest_prod_test-md.vcxproj │ │ │ │ │ ├── gtest_prod_test.vcxproj │ │ │ │ │ ├── gtest_unittest-md.vcxproj │ │ │ │ │ └── gtest_unittest.vcxproj │ │ │ │ ├── samples │ │ │ │ ├── prime_tables.h │ │ │ │ ├── sample1.cc │ │ │ │ ├── sample10_unittest.cc │ │ │ │ ├── sample1_unittest.cc │ │ │ │ ├── sample2.cc │ │ │ │ ├── sample2_unittest.cc │ │ │ │ ├── sample3_unittest.cc │ │ │ │ ├── sample4.cc │ │ │ │ ├── sample4_unittest.cc │ │ │ │ ├── sample5_unittest.cc │ │ │ │ ├── sample6_unittest.cc │ │ │ │ ├── sample7_unittest.cc │ │ │ │ ├── sample8_unittest.cc │ │ │ │ └── sample9_unittest.cc │ │ │ │ ├── scripts │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ ├── gtest-config.in │ │ │ │ ├── pump.py │ │ │ │ └── test │ │ │ │ │ └── Makefile │ │ │ │ ├── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-matchers.cc │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-printers.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ │ │ ├── test │ │ │ │ ├── googletest-break-on-failure-unittest.py │ │ │ │ ├── googletest-break-on-failure-unittest_.cc │ │ │ │ ├── googletest-catch-exceptions-test.py │ │ │ │ ├── googletest-catch-exceptions-test_.cc │ │ │ │ ├── googletest-color-test.py │ │ │ │ ├── googletest-color-test_.cc │ │ │ │ ├── googletest-death-test-test.cc │ │ │ │ ├── googletest-death-test_ex_test.cc │ │ │ │ ├── googletest-env-var-test.py │ │ │ │ ├── googletest-env-var-test_.cc │ │ │ │ ├── googletest-filepath-test.cc │ │ │ │ ├── googletest-filter-unittest.py │ │ │ │ ├── googletest-filter-unittest_.cc │ │ │ │ ├── googletest-list-tests-unittest.py │ │ │ │ ├── googletest-list-tests-unittest_.cc │ │ │ │ ├── googletest-listener-test.cc │ │ │ │ ├── googletest-message-test.cc │ │ │ │ ├── googletest-options-test.cc │ │ │ │ ├── googletest-output-test-golden-lin.txt │ │ │ │ ├── googletest-output-test.py │ │ │ │ ├── googletest-output-test_.cc │ │ │ │ ├── googletest-param-test-test.cc │ │ │ │ ├── googletest-param-test-test.h │ │ │ │ ├── googletest-param-test2-test.cc │ │ │ │ ├── googletest-port-test.cc │ │ │ │ ├── googletest-printers-test.cc │ │ │ │ ├── googletest-shuffle-test.py │ │ │ │ ├── googletest-shuffle-test_.cc │ │ │ │ ├── googletest-test-part-test.cc │ │ │ │ ├── googletest-throw-on-failure-test.py │ │ │ │ ├── googletest-throw-on-failure-test_.cc │ │ │ │ ├── googletest-uninitialized-test.py │ │ │ │ ├── googletest-uninitialized-test_.cc │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ ├── gtest_all_test.cc │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ ├── gtest_help_test.py │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ ├── gtest_test_utils.py │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ ├── gtest_unittest.cc │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ ├── production.cc │ │ │ │ └── production.h │ │ │ │ └── xcode │ │ │ │ ├── Config │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ ├── General.xcconfig │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ └── TestTarget.xcconfig │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── Samples │ │ │ │ └── FrameworkSample │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── runtests.sh │ │ │ │ │ ├── widget.cc │ │ │ │ │ ├── widget.h │ │ │ │ │ └── widget_test.cc │ │ │ │ ├── Scripts │ │ │ │ ├── runtests.sh │ │ │ │ └── versiongenerate.py │ │ │ │ └── gtest.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── zlib.BUILD │ │ ├── update_file_lists.sh │ │ └── util │ │ └── python │ │ └── BUILD.bazel └── sqlite_orm │ └── sqlite_orm.h ├── CMakeLists.txt ├── Get-EnvPath.ps1 ├── Invoke-CmdScript.ps1 ├── README.md ├── android_app ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── cpp │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── HttpRequestProcessor.cpp │ │ │ ├── HttpRequestProcessor.h │ │ │ ├── includes │ │ │ └── mbedtls │ │ │ │ └── certs.h │ │ │ └── main.cpp │ ├── proguard-rules.pro │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── deamon │ │ │ │ └── wow │ │ │ │ └── viewer │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night-v27 │ │ │ └── themes.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-v27 │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── deamon │ │ └── wow │ │ └── viewer │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── emscripten_port ├── CMakeLists.txt ├── jsLib.js ├── prejs.js ├── project.data ├── project.js ├── project.wasm ├── serve.js ├── sitemock │ └── index.html ├── src │ ├── HttpRequestProcessor.cpp │ ├── HttpRequestProcessor.h │ ├── RequestProcessor.cpp │ ├── RequestProcessor.h │ └── main.cpp └── test.html ├── find_and_exec_msvc_env.bat ├── run-and-set-envs.ps1 ├── src ├── database │ ├── CEmptySqliteDB.cpp │ ├── CEmptySqliteDB.h │ ├── CSqliteDB.cpp │ ├── CSqliteDB.h │ ├── buildInfoParser │ │ ├── buildDefinition.h │ │ ├── buildInfoParser.cpp │ │ └── buildInfoParser.h │ ├── csvtest │ │ └── csv.h │ └── product_db_parser │ │ ├── productDbParser.cpp │ │ ├── productDbParser.h │ │ └── protobuf_out │ │ ├── ProtoDatabase.pb.cc │ │ └── ProtoDatabase.pb.h ├── db2FileList.txt ├── exporters │ ├── dataExporter │ │ ├── DataExporterClass.cpp │ │ └── DataExporterClass.h │ └── gltfExporter │ │ ├── GLTFExporter.cpp │ │ └── GLTFExporter.h ├── jniLib.cpp ├── main.cpp ├── minimapGenerator │ ├── entities.h │ ├── minimapGenerator.cpp │ ├── minimapGenerator.h │ └── storage │ │ ├── CMinimapDataDB.cpp │ │ └── CMinimapDataDB.h ├── persistance │ ├── CascRequestProcessor.cpp │ ├── CascRequestProcessor.h │ ├── HttpRequestProcessor.cpp │ ├── HttpRequestProcessor.h │ ├── HttpZipRequestProcessor.cpp │ ├── HttpZipRequestProcessor.h │ ├── MpqRequestProcessor.cpp │ ├── MpqRequestProcessor.h │ ├── ZipRequestProcessor.cpp │ ├── ZipRequestProcessor.h │ └── httpFile │ │ ├── httpFile.cpp │ │ └── httpFile.h ├── screenshots │ ├── lodepng │ │ ├── lodepng.cpp │ │ └── lodepng.h │ ├── screenshotMaker.cpp │ └── screenshotMaker.h └── ui │ ├── FrontendUI.cpp │ ├── FrontendUI.h │ ├── childWindow │ ├── BLPViewer.cpp │ ├── BLPViewer.h │ ├── databaseUpdateWorkflow │ │ ├── DatabaseUpdateWorkflow.cpp │ │ └── DatabaseUpdateWorkflow.h │ ├── fileListWindow │ │ ├── FileListWindow.cpp │ │ └── FileListWindow.h │ ├── keysUpdateWorkflow │ │ ├── KeysUpdateWorkflow.cpp │ │ └── KeysUpdateWorkflow.h │ ├── m2Window │ │ ├── M2Window.cpp │ │ └── M2Window.h │ ├── mapSelectionWindow │ │ ├── MapSelectDialog.cpp │ │ └── MapSelectDialog.h │ ├── minimapGeneratonWindow │ │ ├── MinimapGenerationWindow.cpp │ │ └── MinimapGenerationWindow.h │ ├── sceneWindow │ │ ├── SceneWindow.cpp │ │ └── SceneWindow.h │ └── textureRenderer │ │ ├── DebugRendererWindow.cpp │ │ └── DebugRendererWindow.h │ ├── imguiLib │ ├── compactColorPicker │ │ ├── compactColorPicker.cpp │ │ └── compactColorPicker.h │ ├── compactFloatEditor │ │ ├── compactFloatEditor.cpp │ │ └── compactFloatEditor.h │ ├── disablableButton │ │ ├── disablableButton.cpp │ │ └── disablableButton.h │ ├── fileBrowser │ │ └── imfilebrowser.h │ ├── floatCenterSlider │ │ ├── floatCenterSlider.cpp │ │ └── floatCenterSlider.h │ ├── groupPanel │ │ ├── groupPanel.cpp │ │ └── groupPanel.h │ ├── hasFocus │ │ ├── imguiHasFocus.cpp │ │ └── imguiHasFocus.h │ ├── imageButton2 │ │ ├── imageButton2.cpp │ │ └── imageButton2.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imguiCustomConfig.h │ ├── imguiImpl │ │ ├── imgui_impl_android.cpp │ │ ├── imgui_impl_android.h │ │ ├── imgui_impl_glfw.cpp │ │ ├── imgui_impl_glfw.h │ │ ├── imgui_impl_opengl2.cpp │ │ ├── imgui_impl_opengl2.h │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ └── imgui_impl_opengl3_loader.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ ├── stateSaver │ │ ├── stateSaver.cpp │ │ └── stateSaver.h │ └── wheelCapture │ │ ├── wheelCapture.cpp │ │ └── wheelCapture.h │ └── renderer │ └── uiScene │ ├── FrontendUIRenderer.cpp │ ├── FrontendUIRenderer.h │ ├── FrontendUIRendererFactory.cpp │ ├── FrontendUIRendererFactory.h │ ├── IFrontendUIBufferCreate.h │ ├── ImGUIPlan.cpp │ ├── ImGUIPlan.h │ ├── materials │ └── UIMaterial.h │ └── vulkan │ ├── FrontendUIRenderForwardVLK.cpp │ └── FrontendUIRenderForwardVLK.h ├── test ├── CMakeLists.txt └── src │ ├── cameraTests.cpp │ ├── projectionTexturingTests.cpp │ └── tests1.cpp ├── testApps └── TestLightBlending.cpp ├── tileCutter.py ├── visibilityBuffer.txt └── wowViewerLib ├── 3rdparty ├── OffsetAllocator │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── offsetAllocator.cpp │ ├── offsetAllocator.hpp │ └── offsetAllocatorTests.cpp ├── arena-allocator │ ├── arena_alloc.cc │ └── arena_alloc.hh └── glew_win │ ├── LICENSE.txt │ ├── bin │ └── Release │ │ ├── Win32 │ │ ├── glew32.dll │ │ ├── glewinfo.exe │ │ └── visualinfo.exe │ │ └── x64 │ │ ├── glew32.dll │ │ ├── glewinfo.exe │ │ └── visualinfo.exe │ ├── doc │ ├── advanced.html │ ├── basic.html │ ├── build.html │ ├── credits.html │ ├── github.png │ ├── glew.css │ ├── glew.html │ ├── glew.png │ ├── glew.txt │ ├── glxew.html │ ├── gpl.txt │ ├── index.html │ ├── install.html │ ├── khronos.txt │ ├── log.html │ ├── mesa.txt │ ├── new.png │ ├── ogl_sm.jpg │ ├── travis.png │ └── wglew.html │ ├── include │ └── GL │ │ ├── eglew.h │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ └── lib │ └── Release │ ├── Win32 │ ├── glew32.lib │ └── glew32s.lib │ └── x64 │ ├── glew32.lib │ └── glew32s.lib ├── CMakeLists.txt ├── shaders ├── CMakeLists.txt ├── glsl │ ├── bindless │ │ ├── adt │ │ │ ├── adtShader_text.glsl │ │ │ ├── deferred │ │ │ │ └── adtShader.frag │ │ │ ├── forward │ │ │ │ ├── adtShader.frag │ │ │ │ └── adtShader.vert │ │ │ └── visbuffer │ │ │ │ ├── adtShader.frag │ │ │ │ └── adtShader.vert │ │ ├── deferred_excerpt.glsl │ │ ├── lights │ │ │ ├── lightDebugDraw.frag │ │ │ ├── pointLight.frag │ │ │ ├── pointLight.vert │ │ │ ├── spotLight.frag │ │ │ ├── spotLight.vert │ │ │ └── spotLightFullScreen.vert │ │ ├── m2 │ │ │ ├── deferred │ │ │ │ ├── m2Shader.frag │ │ │ │ └── m2Shader_opaq.frag │ │ │ ├── forward │ │ │ │ ├── m2Shader.frag │ │ │ │ ├── m2Shader.vert │ │ │ │ └── m2Shader_opaq.frag │ │ │ └── m2shader_text.glsl │ │ ├── m2Particle │ │ │ ├── deferred │ │ │ │ └── m2ParticleShader.frag │ │ │ ├── forward │ │ │ │ ├── m2ParticleShader.frag │ │ │ │ └── m2ParticleShader.vert │ │ │ └── m2ParticleShader_text.glsl │ │ ├── m2Ribbon │ │ │ ├── forward │ │ │ │ ├── ribbonShader.frag │ │ │ │ └── ribbonShader.vert │ │ │ └── ribbonShader_text.glsl │ │ ├── projected │ │ │ ├── m2_projected.frag │ │ │ └── m2_projected.vert │ │ ├── water │ │ │ ├── waterShader.frag │ │ │ └── waterShader.vert │ │ ├── waterfall │ │ │ ├── deferred │ │ │ │ └── waterFallShader_opaq.frag │ │ │ ├── forward │ │ │ │ ├── waterfallShader.frag │ │ │ │ └── waterfallShader.vert │ │ │ └── waterFallShader_text.glsl │ │ └── wmo │ │ │ ├── deferred │ │ │ ├── wmoShader.frag │ │ │ └── wmoShader_opaq.frag │ │ │ ├── forward │ │ │ ├── wmoShader.frag │ │ │ ├── wmoShader.vert │ │ │ └── wmoShader_opaq.frag │ │ │ └── wmoshader_text.glsl │ ├── common │ │ ├── commonADTMaterial.glsl │ │ ├── commonAdtIndirectDescriptorSet.glsl │ │ ├── commonFogFunctions.glsl │ │ ├── commonFunctions.glsl │ │ ├── commonGBufferData.glsl │ │ ├── commonLightFunctions.glsl │ │ ├── commonM2DescriptorSet.glsl │ │ ├── commonM2IndirectDescriptorSet.glsl │ │ ├── commonM2Material.glsl │ │ ├── commonM2WaterfallDescriptorSet.glsl │ │ ├── commonProjectiveConstants.glsl │ │ ├── commonUboSceneData.glsl │ │ ├── commonWMOIndirectDescriptorSet.glsl │ │ ├── commonWMOMaterial.glsl │ │ └── commonWaterIndirect.glsl │ ├── forwardRendering │ │ ├── adtLodShader.frag │ │ ├── adtLodShader.vert │ │ ├── adtShader.frag │ │ ├── adtShader.vert │ │ ├── drawBBShader.frag │ │ ├── drawBBShader.vert │ │ ├── drawDepthShader.frag │ │ ├── drawFrustumShader.frag │ │ ├── drawFrustumShader.vert │ │ ├── drawLinesShader.frag │ │ ├── drawLinesShader.vert │ │ ├── drawPoints.frag │ │ ├── drawPoints.vert │ │ ├── drawPortalShader.frag │ │ ├── drawPortalShader.vert │ │ ├── drawQuad.vert │ │ ├── ffxgauss4.frag │ │ ├── ffxgauss4_copy.frag │ │ ├── ffxglow.frag │ │ ├── imguiShader.frag │ │ ├── imguiShader.vert │ │ ├── imguiShaderDepth.frag │ │ ├── imguiShader_opaque.frag │ │ ├── m2ParticleShader.frag │ │ ├── m2ParticleShader.vert │ │ ├── m2Shader.frag │ │ ├── m2Shader.vert │ │ ├── renderFrameBufferShader.frag │ │ ├── renderFrameBufferShader.vert │ │ ├── ribbonShader.frag │ │ ├── ribbonShader.vert │ │ ├── skyConus.frag │ │ ├── skyConus.vert │ │ ├── waterShader.frag │ │ ├── waterShader.vert │ │ ├── waterfallShader.frag │ │ ├── waterfallShader.vert │ │ ├── wmoShader.frag │ │ └── wmoShader.vert │ └── stubs │ │ ├── commonGBufferData.frag │ │ ├── commonSceneData.frag │ │ └── stub.vert ├── slang │ ├── common │ │ ├── animation.slang │ │ ├── animationInputs.slang │ │ └── particle │ │ │ ├── particleCommon.slang │ │ │ ├── particleEmit.slang │ │ │ ├── particleEmitterState.slang │ │ │ ├── particleGenerator.slang │ │ │ ├── particleUpdate.slang │ │ │ └── rndSeed.slang │ └── compute │ │ ├── particleEmit.slang │ │ ├── particleEmitterUpdate.slang │ │ ├── particleMakeOlder.slang │ │ └── particleUpdate.slang └── src │ └── spirv │ ├── dumpGLSLShader.h │ ├── dumpShaderFields.h │ ├── dumpShaderMetaData.h │ ├── fileHelpers.h │ ├── spirv_refl_main.cpp │ ├── webGLSLCompiler.cpp │ └── webGLSLCompiler.h └── src ├── engine ├── ApiContainer.cpp ├── ApiContainer.h ├── CameraMatrices.h ├── WowFilesCacheStorage.cpp ├── WowFilesCacheStorage.h ├── algorithms │ ├── C3Spline.cpp │ ├── C3Spline.h │ ├── C3Spline_Bezier3.cpp │ ├── C3Spline_Bezier3.h │ ├── FrameCounter.cpp │ ├── FrameCounter.h │ ├── animate.cpp │ ├── animate.h │ ├── grahamScan.cpp │ ├── grahamScan.h │ ├── hashString.h │ ├── mathHelper.cpp │ ├── mathHelper.h │ ├── mathHelper_culling.cpp │ ├── mathHelper_culling.h │ ├── mathHelper_culling_sse.cpp │ ├── mathHelper_culling_sse.h │ ├── quick-sort-omp.h │ └── utility.h ├── androidLogSupport.h ├── cache │ ├── cache.cpp │ └── cache.h ├── camera │ ├── CameraInterface.h │ ├── firstPersonCamera.cpp │ ├── firstPersonCamera.h │ ├── firstPersonOrthoCamera.cpp │ ├── firstPersonOrthoCamera.h │ ├── firstPersonOrthoStaticCamera.cpp │ ├── firstPersonOrthoStaticCamera.h │ ├── firstPersonOrthoStaticTopDownCamera.cpp │ ├── firstPersonOrthoStaticTopDownCamera.h │ ├── m2TiedCamera.cpp │ ├── m2TiedCamera.h │ ├── planarCamera.cpp │ └── planarCamera.h ├── custom_allocators │ ├── FrameBasedStackAllocator.cpp │ └── FrameBasedStackAllocator.h ├── engineClassList.h ├── geometry │ ├── m2Geom.cpp │ ├── m2Geom.h │ ├── skinGeom.cpp │ ├── skinGeom.h │ ├── wmoGroupGeom.cpp │ ├── wmoGroupGeom.h │ ├── wmoMainGeom.cpp │ └── wmoMainGeom.h ├── managers │ ├── CRibbonEmitter.cpp │ ├── CRibbonEmitter.h │ ├── SceneGraph.cpp │ ├── SceneGraph.h │ ├── animationManager.cpp │ ├── animationManager.h │ └── particles │ │ ├── CGeneratorAniProp.cpp │ │ ├── CGeneratorAniProp.h │ │ ├── CRndSeed.cpp │ │ ├── CRndSeed.h │ │ ├── generators │ │ ├── CBoneGenerator.cpp │ │ ├── CBoneGenerator.h │ │ ├── CParticleGenerator.cpp │ │ ├── CParticleGenerator.h │ │ ├── CPlaneGenerator.cpp │ │ ├── CPlaneGenerator.h │ │ ├── CSphereGenerator.cpp │ │ ├── CSphereGenerator.h │ │ ├── CSplineGenerator.cpp │ │ └── CSplineGenerator.h │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── particleEmitter.cpp │ │ └── particleEmitter.h ├── objects │ ├── SceneObjectWithID.h │ ├── ViewsObjects.cpp │ ├── ViewsObjects.h │ ├── adt │ │ ├── adtObject.cpp │ │ └── adtObject.h │ ├── iMapApi.h │ ├── iScene.cpp │ ├── iScene.h │ ├── iWmoApi.h │ ├── lights │ │ ├── CPointLight.cpp │ │ ├── CPointLight.h │ │ ├── CSpotLight.cpp │ │ ├── CSpotLight.h │ │ ├── CWmoNewLight.cpp │ │ └── CWmoNewLight.h │ ├── liquid │ │ ├── LiquidDataGetters.h │ │ ├── LiquidInstance.cpp │ │ └── LiquidInstance.h │ ├── m2 │ │ ├── m2Helpers │ │ │ ├── CBoneMasterData.cpp │ │ │ ├── CBoneMasterData.h │ │ │ ├── M2MaterialInst.cpp │ │ │ ├── M2MaterialInst.h │ │ │ ├── M2MeshBufferUpdater.cpp │ │ │ └── M2MeshBufferUpdater.h │ │ ├── m2Object.cpp │ │ └── m2Object.h │ ├── objectCache.h │ ├── scenes │ │ ├── EntityActorsFactory.cpp │ │ ├── EntityActorsFactory.h │ │ ├── NullScene.h │ │ ├── dayNightDataHolder │ │ │ ├── DayNightLightHolder.cpp │ │ │ ├── DayNightLightHolder.h │ │ │ └── LightParamCalculate.h │ │ ├── m2Scene.cpp │ │ ├── m2Scene.h │ │ ├── map.cpp │ │ ├── map.h │ │ ├── map_load_max_contants.h │ │ ├── memoryPool │ │ │ ├── MemoryPool.h │ │ │ └── MemoryPool.tcc │ │ ├── wmoScene.cpp │ │ └── wmoScene.h │ ├── wdl │ │ ├── wdlObject.cpp │ │ └── wdlObject.h │ ├── wdt │ │ ├── wdtLightsObject.cpp │ │ └── wdtLightsObject.h │ └── wmo │ │ ├── wmoGroupObject.cpp │ │ ├── wmoGroupObject.h │ │ ├── wmoObject.cpp │ │ └── wmoObject.h ├── opengl │ └── header.h ├── persistance │ ├── PersistentFile.h │ ├── adtFile.cpp │ ├── adtFile.h │ ├── animFile.cpp │ ├── animFile.h │ ├── db2File.cpp │ ├── db2File.h │ ├── header │ │ ├── M2FileHeader.cpp │ │ ├── M2FileHeader.h │ │ ├── adtFileHeader.h │ │ ├── blpFileHeader.h │ │ ├── commonFileStructs.h │ │ ├── ida.h │ │ ├── skelFileHeader.h │ │ ├── skinFileHeader.h │ │ ├── texFileHeader.h │ │ ├── wdlHeader.h │ │ ├── wdtFileHeader.h │ │ └── wmoFileHeader.h │ ├── helper │ │ └── ChunkFileReader.h │ ├── m2File.cpp │ ├── m2File.h │ ├── skelFile.cpp │ ├── skelFile.h │ ├── texFile.cpp │ ├── texFile.h │ ├── wdlFile.cpp │ ├── wdlFile.h │ ├── wdtFile.cpp │ ├── wdtFile.h │ ├── wdtLightFile.cpp │ └── wdtLightFile.h ├── shader │ ├── ShaderDefinitions.cpp │ ├── ShaderRuntimeData.cpp │ └── ShaderRuntimeData.h ├── stringTrim.h ├── texture │ ├── BlpTexture.cpp │ ├── BlpTexture.h │ ├── DxtDecompress.cpp │ └── DxtDecompress.h └── wowCommonClasses.h ├── exporters └── IExporter.h ├── gapi ├── IDeviceFactory.cpp ├── IDeviceFactory.h ├── UniformBufferStructures.h ├── interface │ ├── IDevice.cpp │ ├── IDevice.h │ ├── IFrameBuffer.h │ ├── IOcclusionQuery.h │ ├── IRendererProxy.h │ ├── IShaderPermutation.h │ ├── IVertexBufferBindings.h │ ├── buffers │ │ ├── IBuffer.h │ │ ├── IBufferChunk.h │ │ └── IBufferVersioned.h │ ├── materials │ │ └── IMaterial.h │ ├── meshes │ │ ├── IM2Mesh.h │ │ ├── IMesh.h │ │ ├── IParticleMesh.h │ │ └── ISortableMesh.h │ ├── sortLambda.h │ ├── syncronization │ │ └── IGPUFence.h │ └── textures │ │ ├── ISamplableTexture.h │ │ ├── ITexture.h │ │ └── ITextureSampler.h ├── ogl2.0 │ ├── GDeviceGL20.cpp │ ├── GDeviceGL20.h │ ├── GOcclusionQueryGL20.cpp │ ├── GOcclusionQueryGL20.h │ ├── GRenderTargetGL20.cpp │ ├── GRenderTargetGL20.h │ ├── GShaderPermutationGL20.cpp │ ├── GShaderPermutationGL20.h │ ├── GVertexBufferBindingsGL20.cpp │ ├── GVertexBufferBindingsGL20.h │ ├── buffers │ │ ├── GIndexBufferGL20.cpp │ │ ├── GIndexBufferGL20.h │ │ ├── GUniformBufferGL20.cpp │ │ ├── GUniformBufferGL20.h │ │ ├── GVertexBufferDynamicGL20.cpp │ │ ├── GVertexBufferDynamicGL20.h │ │ ├── GVertexBufferGL20.cpp │ │ └── GVertexBufferGL20.h │ ├── meshes │ │ ├── GM2MeshGL20.cpp │ │ ├── GM2MeshGL20.h │ │ ├── GMeshGL20.cpp │ │ ├── GMeshGL20.h │ │ ├── GParticleMeshGL20.cpp │ │ └── GParticleMeshGL20.h │ ├── shaders │ │ ├── GAdtShaderPermutationGL20.cpp │ │ ├── GAdtShaderPermutationGL20.h │ │ ├── GM2ParticleShaderPermutationGL20.cpp │ │ ├── GM2ParticleShaderPermutationGL20.h │ │ ├── GM2ShaderPermutationGL20.cpp │ │ ├── GM2ShaderPermutationGL20.h │ │ ├── GWMOShaderPermutationGL20.cpp │ │ └── GWMOShaderPermutationGL20.h │ └── textures │ │ ├── GBlpTextureGL20.cpp │ │ ├── GBlpTextureGL20.h │ │ ├── GTextureGL20.cpp │ │ └── GTextureGL20.h ├── ogl3.3 │ ├── GDeviceGL33.cpp │ ├── GDeviceGL33.h │ ├── GFrameBufferGL33.cpp │ ├── GFrameBufferGL33.h │ ├── GOcclusionQueryGL33.cpp │ ├── GOcclusionQueryGL33.h │ ├── GRenderTargetGL33.cpp │ ├── GRenderTargetGL33.h │ ├── GShaderPermutationGL33.cpp │ ├── GShaderPermutationGL33.h │ ├── GVertexBufferBindingsGL33.cpp │ ├── GVertexBufferBindingsGL33.h │ ├── buffers │ │ ├── GIndexBufferGL33.cpp │ │ ├── GIndexBufferGL33.h │ │ ├── GUnformBufferChunk33.h │ │ ├── GUniformBufferGL33.cpp │ │ ├── GUniformBufferGL33.h │ │ ├── GVertexBufferDynamicGL33.cpp │ │ ├── GVertexBufferDynamicGL33.h │ │ ├── GVertexBufferGL33.cpp │ │ └── GVertexBufferGL33.h │ ├── meshes │ │ ├── GM2MeshGL33.cpp │ │ ├── GM2MeshGL33.h │ │ ├── GMeshGL33.cpp │ │ ├── GMeshGL33.h │ │ ├── GParticleMeshGL33.cpp │ │ └── GParticleMeshGL33.h │ ├── shaders │ │ ├── GAdtShaderPermutationGL33.cpp │ │ ├── GAdtShaderPermutationGL33.h │ │ ├── GFFXGlow.cpp │ │ ├── GFFXGlow.h │ │ ├── GFFXgauss4.cpp │ │ ├── GFFXgauss4.h │ │ ├── GM2ParticleShaderPermutationGL33.cpp │ │ ├── GM2ParticleShaderPermutationGL33.h │ │ ├── GM2ShaderPermutationGL33.cpp │ │ ├── GM2ShaderPermutationGL33.h │ │ ├── GSkyConus.cpp │ │ ├── GSkyConus.h │ │ ├── GWMOShaderPermutationGL33.cpp │ │ ├── GWMOShaderPermutationGL33.h │ │ ├── GWaterShaderGL33.cpp │ │ ├── GWaterShaderGL33.h │ │ ├── GWaterfallShaderGL33.cpp │ │ └── GWaterfallShaderGL33.h │ └── textures │ │ ├── GBlpTextureGL33.cpp │ │ ├── GBlpTextureGL33.h │ │ ├── GTextureGL33.cpp │ │ └── GTextureGL33.h ├── ogl4.x │ ├── GDeviceGL4x.cpp │ ├── GDeviceGL4x.h │ ├── GOcclusionQueryGL4x.cpp │ ├── GOcclusionQueryGL4x.h │ ├── GRenderTargetGL4x.cpp │ ├── GRenderTargetGL4x.h │ ├── GShaderPermutationGL4x.cpp │ ├── GShaderPermutationGL4x.h │ ├── GVertexBufferBindingsGL4x.cpp │ ├── GVertexBufferBindingsGL4x.h │ ├── buffers │ │ ├── GIndexBufferGL4x.cpp │ │ ├── GIndexBufferGL4x.h │ │ ├── GUniformBufferGL4x.cpp │ │ ├── GUniformBufferGL4x.h │ │ ├── GVertexBufferGL4x.cpp │ │ └── GVertexBufferGL4x.h │ ├── meshes │ │ ├── GM2MeshGL4x.cpp │ │ ├── GM2MeshGL4x.h │ │ ├── GMeshGL4x.cpp │ │ ├── GMeshGL4x.h │ │ ├── GParticleMeshGL4x.cpp │ │ └── GParticleMeshGL4x.h │ ├── shaders │ │ ├── GAdtShaderPermutationGL4x.cpp │ │ ├── GAdtShaderPermutationGL4x.h │ │ ├── GM2ParticleShaderPermutationGL4x.cpp │ │ ├── GM2ParticleShaderPermutationGL4x.h │ │ ├── GM2ShaderPermutationGL4x.cpp │ │ ├── GM2ShaderPermutationGL4x.h │ │ ├── GWMOShaderPermutationGL4x.cpp │ │ └── GWMOShaderPermutationGL4x.h │ ├── syncronization │ │ ├── GPUFenceGL44.cpp │ │ └── GPUFenceGL44.h │ └── textures │ │ ├── GBlpTextureGL4x.cpp │ │ ├── GBlpTextureGL4x.h │ │ ├── GTextureGL4x.cpp │ │ └── GTextureGL4x.h ├── renderdoc_app.h └── vulkan │ ├── GDescriptorSetUpdater.cpp │ ├── GDescriptorSetUpdater.h │ ├── GDeviceVulkan.cpp │ ├── GDeviceVulkan.h │ ├── GFrameBufferVLK.cpp │ ├── GFrameBufferVLK.h │ ├── GRenderPassVLK.cpp │ ├── GRenderPassVLK.h │ ├── GVertexBufferBindingsVLK.cpp │ ├── GVertexBufferBindingsVLK.h │ ├── IDeviceVulkan.h │ ├── TextureManagerVLK.cpp │ ├── TextureManagerVLK.h │ ├── bindable │ └── DSBindable.h │ ├── buffers │ ├── CBufferChunkVLK.cpp │ ├── CBufferChunkVLK.h │ ├── GBufferChunkDynamicVLK.cpp │ ├── GBufferChunkDynamicVLK.h │ ├── GBufferChunkDynamicVersionedVLK.h │ ├── GBufferVLK.cpp │ ├── GBufferVLK.h │ ├── GStagingRingBuffer.cpp │ ├── GStagingRingBuffer.h │ ├── IBufferVLK.h │ └── gpu │ │ ├── BufferGpuVLK.cpp │ │ ├── BufferGpuVLK.h │ │ ├── BufferStagingVLK.cpp │ │ └── BufferStagingVLK.h │ ├── commandBuffer │ ├── CommandBuffer.cpp │ ├── CommandBuffer.h │ ├── CommandBufferThread.cpp │ ├── CommandBufferThread.h │ ├── commandBufferRecorder │ │ ├── CommandBufferDebugLabel.cpp │ │ ├── CommandBufferDebugLabel.h │ │ ├── CommandBufferRecorder.cpp │ │ ├── CommandBufferRecorder.h │ │ ├── CommandBufferRecorder_inline.h │ │ ├── RenderPassHelper.cpp │ │ ├── RenderPassHelper.h │ │ ├── TextureUploadHelper.cpp │ │ └── TextureUploadHelper.h │ └── commandPoolThread │ │ ├── CommandPoolThread.cpp │ │ └── CommandPoolThread.h │ ├── context │ └── vulkan_context.h │ ├── descriptorSets │ ├── DescriptorRecord.h │ ├── DescriptorResourceCallBack.h │ ├── GDescriptorPoolVLK.cpp │ ├── GDescriptorPoolVLK.h │ ├── GDescriptorSet.cpp │ ├── GDescriptorSet.h │ ├── GDescriptorSetLayout.cpp │ ├── GDescriptorSetLayout.h │ └── bindless │ │ ├── BindlessTextureHolder.cpp │ │ └── BindlessTextureHolder.h │ ├── fastmemcp.h │ ├── materials │ ├── ISimpleMaterialVLK.cpp │ ├── ISimpleMaterialVLK.h │ ├── MaterialBuilderVLK.cpp │ └── MaterialBuilderVLK.h │ ├── meshes │ ├── GM2MeshVLK.cpp │ ├── GM2MeshVLK.h │ ├── GMeshVLK.cpp │ ├── GMeshVLK.h │ ├── GSortableMeshVLK.cpp │ └── GSortableMeshVLK.h │ ├── pipeline │ ├── GPipelineLayoutVLK.cpp │ ├── GPipelineLayoutVLK.h │ ├── GPipelineVLK.cpp │ └── GPipelineVLK.h │ ├── shaders │ ├── GShaderPermutationVLK.cpp │ ├── GShaderPermutationVLK.h │ └── ShaderConfig.h │ ├── synchronization │ ├── GFenceVLK.cpp │ ├── GFenceVLK.h │ ├── GSemaphoreVLK.cpp │ └── GSemaphoreVLK.h │ ├── textures │ ├── GBlpTextureVLK.cpp │ ├── GBlpTextureVLK.h │ ├── GTextureSamplerVLK.cpp │ ├── GTextureSamplerVLK.h │ ├── GTextureVLK.cpp │ └── GTextureVLK.h │ ├── utils │ └── MutexLockedVector.h │ ├── vkAllocator.cpp │ ├── vk_mem_alloc.h │ ├── volk.c │ └── volk.h ├── include ├── config.h ├── controllable.h ├── custom_container_key.h ├── database │ └── dbStructs.h ├── databaseHandler.h ├── iostuff.h ├── sharedFile.h ├── stdint_msvc.h ├── string_utils.h └── string_utlis.cpp ├── logger └── viewerLogger.h ├── opengl └── GL │ ├── glcorearb.h │ ├── glext.h │ ├── glxext.h │ └── wglext.h ├── persistence ├── RequestProcessor.cpp └── RequestProcessor.h ├── renderer ├── IRenderParameters.h ├── IRenderer.h ├── buffers │ ├── IVertexBufferDynamicTemplate.cpp │ └── IVertexBufferDynamicTemplate.h ├── frame │ ├── FrameInputParams.h │ ├── FrameProfile.h │ ├── SceneComposer.cpp │ ├── SceneComposer.h │ ├── SceneScenario.cpp │ ├── SceneScenario.h │ └── prodConsumerChain │ │ ├── ProdConsumerIOConnector.cpp │ │ └── ProdConsumerIOConnector.h ├── mapScene │ ├── FrameDependentData.h │ ├── IMapSceneBufferCreate.h │ ├── MapSceneParams.h │ ├── MapScenePlan.h │ ├── MapSceneRenderer.cpp │ ├── MapSceneRenderer.h │ ├── MapSceneRendererFactory.cpp │ ├── MapSceneRendererFactory.h │ ├── materials │ │ ├── BindlessTexture.h │ │ └── IMaterialStructs.h │ └── vulkan │ │ ├── MapSceneRenderBindlessDeferredVLK.cpp │ │ ├── MapSceneRenderBindlessDeferredVLK.h │ │ ├── MapSceneRenderBindlessVLK.cpp │ │ ├── MapSceneRenderBindlessVLK.h │ │ ├── MapSceneRenderForwardVLK.cpp │ │ ├── MapSceneRenderForwardVLK.h │ │ ├── materials │ │ └── IMaterialInstance.h │ │ ├── passes │ │ ├── FFXGlowPassVLK.cpp │ │ └── FFXGlowPassVLK.h │ │ └── view │ │ ├── IRenderViewVLK.h │ │ ├── RenderViewDeferredVLK.cpp │ │ ├── RenderViewDeferredVLK.h │ │ ├── RenderViewForwardVLK.cpp │ │ └── RenderViewForwardVLK.h └── vulkan │ └── IRenderFunctionVLK.h └── robin_hood.h /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rdparty/googletest/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/.clang-format -------------------------------------------------------------------------------- /3rdparty/googletest/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /3rdparty/googletest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/.gitignore -------------------------------------------------------------------------------- /3rdparty/googletest/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/BUILD.bazel -------------------------------------------------------------------------------- /3rdparty/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/googletest/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/CONTRIBUTING.md -------------------------------------------------------------------------------- /3rdparty/googletest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/CONTRIBUTORS -------------------------------------------------------------------------------- /3rdparty/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/LICENSE -------------------------------------------------------------------------------- /3rdparty/googletest/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/MODULE.bazel -------------------------------------------------------------------------------- /3rdparty/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/README.md -------------------------------------------------------------------------------- /3rdparty/googletest/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/WORKSPACE -------------------------------------------------------------------------------- /3rdparty/googletest/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/WORKSPACE.bzlmod -------------------------------------------------------------------------------- /3rdparty/googletest/ci/linux-presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/ci/linux-presubmit.sh -------------------------------------------------------------------------------- /3rdparty/googletest/ci/macos-presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/ci/macos-presubmit.sh -------------------------------------------------------------------------------- /3rdparty/googletest/ci/windows-presubmit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/ci/windows-presubmit.bat -------------------------------------------------------------------------------- /3rdparty/googletest/docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: GoogleTest 2 | -------------------------------------------------------------------------------- /3rdparty/googletest/docs/_data/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/_data/navigation.yml -------------------------------------------------------------------------------- /3rdparty/googletest/docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/_layouts/default.html -------------------------------------------------------------------------------- /3rdparty/googletest/docs/_sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/_sass/main.scss -------------------------------------------------------------------------------- /3rdparty/googletest/docs/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/advanced.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/assets/css/style.scss -------------------------------------------------------------------------------- /3rdparty/googletest/docs/community_created_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/community_created_documentation.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/faq.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/gmock_cheat_sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/gmock_cheat_sheet.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/gmock_cook_book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/gmock_cook_book.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/gmock_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/gmock_faq.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/gmock_for_dummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/gmock_for_dummies.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/index.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/pkgconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/pkgconfig.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/platforms.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/primer.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/quickstart-bazel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/quickstart-bazel.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/quickstart-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/quickstart-cmake.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/reference/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/reference/actions.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/reference/assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/reference/assertions.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/reference/matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/reference/matchers.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/reference/mocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/reference/mocking.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/reference/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/reference/testing.md -------------------------------------------------------------------------------- /3rdparty/googletest/docs/samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/docs/samples.md -------------------------------------------------------------------------------- /3rdparty/googletest/fake_fuchsia_sdk.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/fake_fuchsia_sdk.bzl -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/README.md -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/cmake/gmock.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/cmake/gmock.pc.in -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/cmake/gmock_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/cmake/gmock_main.pc.in -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/docs/README.md -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/include/gmock/gmock.h -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/src/gmock-all.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/src/gmock-cardinalities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/src/gmock-cardinalities.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/src/gmock-internal-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/src/gmock-internal-utils.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/src/gmock-spec-builders.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/src/gmock-spec-builders.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/src/gmock.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/src/gmock_main.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/BUILD.bazel -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock-actions_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock-matchers_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock-matchers_test.h -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock-port_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock-pp-string_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock-pp-string_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock-pp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock-pp_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_all_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_leak_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_leak_test.py -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_leak_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_leak_test_.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_link2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_link2_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_link_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_link_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_link_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_link_test.h -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_output_test.py -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_output_test_.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_stress_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/test/gmock_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googlemock/test/gmock_test_utils.py -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/README.md -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/cmake/Config.cmake.in -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/cmake/gtest.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/cmake/gtest.pc.in -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/cmake/gtest_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/cmake/gtest_main.pc.in -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/cmake/libgtest.la.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/cmake/libgtest.la.in -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/docs/README.md -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/include/gtest/gtest.h -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/prime_tables.h -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample1.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample1.h -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample2.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample2.h -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample3-inl.h -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample4.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample4.h -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/src/gtest-all.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/src/gtest-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/src/gtest-matchers.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/src/gtest-port.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/src/gtest-printers.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/src/gtest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/src/gtest_main.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/BUILD.bazel -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/googletest-port-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/googletest-port-test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_dirs_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_dirs_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_help_test.py -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_skip_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_skip_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/production.cc -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest/test/production.h -------------------------------------------------------------------------------- /3rdparty/googletest/googletest_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/googletest/googletest_deps.bzl -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/BUILD.bazel -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/CHANGES.txt -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/LICENSE -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/Makefile.am -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/Makefile.in -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/README.md -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/WORKSPACE -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/ar-lib -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/autogen.sh -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/benchmarks/README.md -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/README.md -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/examples.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/examples.cmake -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/install.cmake -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/libprotoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/libprotoc.cmake -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/protoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/protoc.cmake -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/tests.cmake -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/cmake/version.rc.in -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/compile -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/config.guess -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/config.h.in -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/config.sub -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/configure -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/configure.ac -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/conformance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/conformance/README.md -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/conformance/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/conformance/defs.bzl -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/conformance/failure_list_python.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/csharp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/csharp/BUILD.bazel -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/depcomp -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/editors/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/editors/README.txt -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/editors/proto.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/editors/proto.vim -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/examples/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/examples/BUILD.bazel -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/examples/Makefile -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/examples/README.md -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/examples/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/examples/WORKSPACE -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/examples/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/examples/go/go.mod -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/examples/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/examples/go/go.sum -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/examples/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/examples/pubspec.yaml -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/install-sh -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/ltmain.sh -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/m4/acx_check_suncc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/m4/acx_check_suncc.m4 -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/m4/libtool.m4 -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/m4/ltoptions.m4 -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/m4/ltsugar.m4 -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/m4/ltversion.m4 -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/m4/stl_hash.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/m4/stl_hash.m4 -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/maven_install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/maven_install.json -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/missing -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/php/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/php/BUILD.bazel -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf-lite.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf-lite.pc.in -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf.bzl -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf.pc.in -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf_deps.bzl -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf_release.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf_release.bzl -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf_version.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/protobuf_version.bzl -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/ruby/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/ruby/BUILD.bazel -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/src/Makefile.am -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/src/Makefile.in -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/src/README.md -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/src/libprotobuf.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/src/libprotobuf.map -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/src/libprotoc.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/src/libprotoc.map -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/test-driver -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/third_party/googletest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/protobuf-cpp/protobuf-3.21.5/update_file_lists.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/protobuf-cpp/protobuf-3.21.5/update_file_lists.sh -------------------------------------------------------------------------------- /3rdparty/sqlite_orm/sqlite_orm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/3rdparty/sqlite_orm/sqlite_orm.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Get-EnvPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/Get-EnvPath.ps1 -------------------------------------------------------------------------------- /Invoke-CmdScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/Invoke-CmdScript.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/README.md -------------------------------------------------------------------------------- /android_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/.gitignore -------------------------------------------------------------------------------- /android_app/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android_app/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/build.gradle -------------------------------------------------------------------------------- /android_app/app/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /android_app/app/cpp/src/HttpRequestProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/cpp/src/HttpRequestProcessor.cpp -------------------------------------------------------------------------------- /android_app/app/cpp/src/HttpRequestProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/cpp/src/HttpRequestProcessor.h -------------------------------------------------------------------------------- /android_app/app/cpp/src/includes/mbedtls/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/cpp/src/includes/mbedtls/certs.h -------------------------------------------------------------------------------- /android_app/app/cpp/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/cpp/src/main.cpp -------------------------------------------------------------------------------- /android_app/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/proguard-rules.pro -------------------------------------------------------------------------------- /android_app/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android_app/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android_app/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_app/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_app/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_app/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_app/app/src/main/res/values-night-v27/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/values-night-v27/themes.xml -------------------------------------------------------------------------------- /android_app/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /android_app/app/src/main/res/values-v27/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/values-v27/themes.xml -------------------------------------------------------------------------------- /android_app/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android_app/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android_app/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android_app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/build.gradle -------------------------------------------------------------------------------- /android_app/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/gradle.properties -------------------------------------------------------------------------------- /android_app/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/gradlew -------------------------------------------------------------------------------- /android_app/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/android_app/gradlew.bat -------------------------------------------------------------------------------- /android_app/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "WowViewerAndroid" -------------------------------------------------------------------------------- /emscripten_port/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/CMakeLists.txt -------------------------------------------------------------------------------- /emscripten_port/jsLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/jsLib.js -------------------------------------------------------------------------------- /emscripten_port/prejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/prejs.js -------------------------------------------------------------------------------- /emscripten_port/project.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/project.data -------------------------------------------------------------------------------- /emscripten_port/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/project.js -------------------------------------------------------------------------------- /emscripten_port/project.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/project.wasm -------------------------------------------------------------------------------- /emscripten_port/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/serve.js -------------------------------------------------------------------------------- /emscripten_port/sitemock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/sitemock/index.html -------------------------------------------------------------------------------- /emscripten_port/src/HttpRequestProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/src/HttpRequestProcessor.cpp -------------------------------------------------------------------------------- /emscripten_port/src/HttpRequestProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/src/HttpRequestProcessor.h -------------------------------------------------------------------------------- /emscripten_port/src/RequestProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/src/RequestProcessor.cpp -------------------------------------------------------------------------------- /emscripten_port/src/RequestProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/src/RequestProcessor.h -------------------------------------------------------------------------------- /emscripten_port/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/src/main.cpp -------------------------------------------------------------------------------- /emscripten_port/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/emscripten_port/test.html -------------------------------------------------------------------------------- /find_and_exec_msvc_env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/find_and_exec_msvc_env.bat -------------------------------------------------------------------------------- /run-and-set-envs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/run-and-set-envs.ps1 -------------------------------------------------------------------------------- /src/database/CEmptySqliteDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/database/CEmptySqliteDB.cpp -------------------------------------------------------------------------------- /src/database/CEmptySqliteDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/database/CEmptySqliteDB.h -------------------------------------------------------------------------------- /src/database/CSqliteDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/database/CSqliteDB.cpp -------------------------------------------------------------------------------- /src/database/CSqliteDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/database/CSqliteDB.h -------------------------------------------------------------------------------- /src/database/buildInfoParser/buildDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/database/buildInfoParser/buildDefinition.h -------------------------------------------------------------------------------- /src/database/buildInfoParser/buildInfoParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/database/buildInfoParser/buildInfoParser.cpp -------------------------------------------------------------------------------- /src/database/buildInfoParser/buildInfoParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/database/buildInfoParser/buildInfoParser.h -------------------------------------------------------------------------------- /src/database/csvtest/csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/database/csvtest/csv.h -------------------------------------------------------------------------------- /src/database/product_db_parser/productDbParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/database/product_db_parser/productDbParser.cpp -------------------------------------------------------------------------------- /src/database/product_db_parser/productDbParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/database/product_db_parser/productDbParser.h -------------------------------------------------------------------------------- /src/db2FileList.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/exporters/dataExporter/DataExporterClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/exporters/dataExporter/DataExporterClass.cpp -------------------------------------------------------------------------------- /src/exporters/dataExporter/DataExporterClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/exporters/dataExporter/DataExporterClass.h -------------------------------------------------------------------------------- /src/exporters/gltfExporter/GLTFExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/exporters/gltfExporter/GLTFExporter.cpp -------------------------------------------------------------------------------- /src/exporters/gltfExporter/GLTFExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/exporters/gltfExporter/GLTFExporter.h -------------------------------------------------------------------------------- /src/jniLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/jniLib.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/minimapGenerator/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/minimapGenerator/entities.h -------------------------------------------------------------------------------- /src/minimapGenerator/minimapGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/minimapGenerator/minimapGenerator.cpp -------------------------------------------------------------------------------- /src/minimapGenerator/minimapGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/minimapGenerator/minimapGenerator.h -------------------------------------------------------------------------------- /src/minimapGenerator/storage/CMinimapDataDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/minimapGenerator/storage/CMinimapDataDB.cpp -------------------------------------------------------------------------------- /src/minimapGenerator/storage/CMinimapDataDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/minimapGenerator/storage/CMinimapDataDB.h -------------------------------------------------------------------------------- /src/persistance/CascRequestProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/CascRequestProcessor.cpp -------------------------------------------------------------------------------- /src/persistance/CascRequestProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/CascRequestProcessor.h -------------------------------------------------------------------------------- /src/persistance/HttpRequestProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/HttpRequestProcessor.cpp -------------------------------------------------------------------------------- /src/persistance/HttpRequestProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/HttpRequestProcessor.h -------------------------------------------------------------------------------- /src/persistance/HttpZipRequestProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/HttpZipRequestProcessor.cpp -------------------------------------------------------------------------------- /src/persistance/HttpZipRequestProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/HttpZipRequestProcessor.h -------------------------------------------------------------------------------- /src/persistance/MpqRequestProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/MpqRequestProcessor.cpp -------------------------------------------------------------------------------- /src/persistance/MpqRequestProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/MpqRequestProcessor.h -------------------------------------------------------------------------------- /src/persistance/ZipRequestProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/ZipRequestProcessor.cpp -------------------------------------------------------------------------------- /src/persistance/ZipRequestProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/ZipRequestProcessor.h -------------------------------------------------------------------------------- /src/persistance/httpFile/httpFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/httpFile/httpFile.cpp -------------------------------------------------------------------------------- /src/persistance/httpFile/httpFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/persistance/httpFile/httpFile.h -------------------------------------------------------------------------------- /src/screenshots/lodepng/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/screenshots/lodepng/lodepng.cpp -------------------------------------------------------------------------------- /src/screenshots/lodepng/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/screenshots/lodepng/lodepng.h -------------------------------------------------------------------------------- /src/screenshots/screenshotMaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/screenshots/screenshotMaker.cpp -------------------------------------------------------------------------------- /src/screenshots/screenshotMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/screenshots/screenshotMaker.h -------------------------------------------------------------------------------- /src/ui/FrontendUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/FrontendUI.cpp -------------------------------------------------------------------------------- /src/ui/FrontendUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/FrontendUI.h -------------------------------------------------------------------------------- /src/ui/childWindow/BLPViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/BLPViewer.cpp -------------------------------------------------------------------------------- /src/ui/childWindow/BLPViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/BLPViewer.h -------------------------------------------------------------------------------- /src/ui/childWindow/fileListWindow/FileListWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/fileListWindow/FileListWindow.cpp -------------------------------------------------------------------------------- /src/ui/childWindow/fileListWindow/FileListWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/fileListWindow/FileListWindow.h -------------------------------------------------------------------------------- /src/ui/childWindow/keysUpdateWorkflow/KeysUpdateWorkflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/keysUpdateWorkflow/KeysUpdateWorkflow.h -------------------------------------------------------------------------------- /src/ui/childWindow/m2Window/M2Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/m2Window/M2Window.cpp -------------------------------------------------------------------------------- /src/ui/childWindow/m2Window/M2Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/m2Window/M2Window.h -------------------------------------------------------------------------------- /src/ui/childWindow/mapSelectionWindow/MapSelectDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/mapSelectionWindow/MapSelectDialog.cpp -------------------------------------------------------------------------------- /src/ui/childWindow/mapSelectionWindow/MapSelectDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/mapSelectionWindow/MapSelectDialog.h -------------------------------------------------------------------------------- /src/ui/childWindow/sceneWindow/SceneWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/sceneWindow/SceneWindow.cpp -------------------------------------------------------------------------------- /src/ui/childWindow/sceneWindow/SceneWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/sceneWindow/SceneWindow.h -------------------------------------------------------------------------------- /src/ui/childWindow/textureRenderer/DebugRendererWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/textureRenderer/DebugRendererWindow.cpp -------------------------------------------------------------------------------- /src/ui/childWindow/textureRenderer/DebugRendererWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/childWindow/textureRenderer/DebugRendererWindow.h -------------------------------------------------------------------------------- /src/ui/imguiLib/compactColorPicker/compactColorPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/compactColorPicker/compactColorPicker.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/compactColorPicker/compactColorPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/compactColorPicker/compactColorPicker.h -------------------------------------------------------------------------------- /src/ui/imguiLib/compactFloatEditor/compactFloatEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/compactFloatEditor/compactFloatEditor.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/compactFloatEditor/compactFloatEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/compactFloatEditor/compactFloatEditor.h -------------------------------------------------------------------------------- /src/ui/imguiLib/disablableButton/disablableButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/disablableButton/disablableButton.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/disablableButton/disablableButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/disablableButton/disablableButton.h -------------------------------------------------------------------------------- /src/ui/imguiLib/fileBrowser/imfilebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/fileBrowser/imfilebrowser.h -------------------------------------------------------------------------------- /src/ui/imguiLib/floatCenterSlider/floatCenterSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/floatCenterSlider/floatCenterSlider.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/floatCenterSlider/floatCenterSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/floatCenterSlider/floatCenterSlider.h -------------------------------------------------------------------------------- /src/ui/imguiLib/groupPanel/groupPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/groupPanel/groupPanel.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/groupPanel/groupPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/groupPanel/groupPanel.h -------------------------------------------------------------------------------- /src/ui/imguiLib/hasFocus/imguiHasFocus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/hasFocus/imguiHasFocus.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/hasFocus/imguiHasFocus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/hasFocus/imguiHasFocus.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imageButton2/imageButton2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imageButton2/imageButton2.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/imageButton2/imageButton2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imageButton2/imageButton2.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imconfig.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imgui.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imgui.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imguiCustomConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imguiCustomConfig.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imguiImpl/imgui_impl_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imguiImpl/imgui_impl_android.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/imguiImpl/imgui_impl_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imguiImpl/imgui_impl_android.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imguiImpl/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imguiImpl/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/imguiImpl/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imguiImpl/imgui_impl_glfw.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imguiImpl/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imguiImpl/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/imguiImpl/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imguiImpl/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imguiImpl/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imguiImpl/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/imguiImpl/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imguiImpl/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imguiImpl/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imguiImpl/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imgui_demo.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imgui_draw.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imgui_internal.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imgui_tables.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imgui_widgets.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imstb_rectpack.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imstb_textedit.h -------------------------------------------------------------------------------- /src/ui/imguiLib/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/imstb_truetype.h -------------------------------------------------------------------------------- /src/ui/imguiLib/stateSaver/stateSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/stateSaver/stateSaver.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/stateSaver/stateSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/stateSaver/stateSaver.h -------------------------------------------------------------------------------- /src/ui/imguiLib/wheelCapture/wheelCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/wheelCapture/wheelCapture.cpp -------------------------------------------------------------------------------- /src/ui/imguiLib/wheelCapture/wheelCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/imguiLib/wheelCapture/wheelCapture.h -------------------------------------------------------------------------------- /src/ui/renderer/uiScene/FrontendUIRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/renderer/uiScene/FrontendUIRenderer.cpp -------------------------------------------------------------------------------- /src/ui/renderer/uiScene/FrontendUIRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/renderer/uiScene/FrontendUIRenderer.h -------------------------------------------------------------------------------- /src/ui/renderer/uiScene/FrontendUIRendererFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/renderer/uiScene/FrontendUIRendererFactory.cpp -------------------------------------------------------------------------------- /src/ui/renderer/uiScene/FrontendUIRendererFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/renderer/uiScene/FrontendUIRendererFactory.h -------------------------------------------------------------------------------- /src/ui/renderer/uiScene/IFrontendUIBufferCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/renderer/uiScene/IFrontendUIBufferCreate.h -------------------------------------------------------------------------------- /src/ui/renderer/uiScene/ImGUIPlan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/renderer/uiScene/ImGUIPlan.cpp -------------------------------------------------------------------------------- /src/ui/renderer/uiScene/ImGUIPlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/renderer/uiScene/ImGUIPlan.h -------------------------------------------------------------------------------- /src/ui/renderer/uiScene/materials/UIMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/renderer/uiScene/materials/UIMaterial.h -------------------------------------------------------------------------------- /src/ui/renderer/uiScene/vulkan/FrontendUIRenderForwardVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/src/ui/renderer/uiScene/vulkan/FrontendUIRenderForwardVLK.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/src/cameraTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/test/src/cameraTests.cpp -------------------------------------------------------------------------------- /test/src/projectionTexturingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/test/src/projectionTexturingTests.cpp -------------------------------------------------------------------------------- /test/src/tests1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/test/src/tests1.cpp -------------------------------------------------------------------------------- /testApps/TestLightBlending.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/testApps/TestLightBlending.cpp -------------------------------------------------------------------------------- /tileCutter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/tileCutter.py -------------------------------------------------------------------------------- /visibilityBuffer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/visibilityBuffer.txt -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/OffsetAllocator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/OffsetAllocator/CMakeLists.txt -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/OffsetAllocator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/OffsetAllocator/LICENSE -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/OffsetAllocator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/OffsetAllocator/README.md -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/OffsetAllocator/offsetAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/OffsetAllocator/offsetAllocator.cpp -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/OffsetAllocator/offsetAllocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/OffsetAllocator/offsetAllocator.hpp -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/arena-allocator/arena_alloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/arena-allocator/arena_alloc.cc -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/arena-allocator/arena_alloc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/arena-allocator/arena_alloc.hh -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/LICENSE.txt -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/bin/Release/Win32/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/bin/Release/Win32/glew32.dll -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/bin/Release/x64/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/bin/Release/x64/glew32.dll -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/bin/Release/x64/glewinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/bin/Release/x64/glewinfo.exe -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/advanced.html -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/basic.html -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/build.html -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/credits.html -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/github.png -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/glew.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/glew.css -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/glew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/glew.html -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/glew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/glew.png -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/glew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/glew.txt -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/glxew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/glxew.html -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/gpl.txt -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/index.html -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/install.html -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/khronos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/khronos.txt -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/log.html -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/mesa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/mesa.txt -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/new.png -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/ogl_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/ogl_sm.jpg -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/travis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/travis.png -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/doc/wglew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/doc/wglew.html -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/include/GL/eglew.h -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/include/GL/glew.h -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/include/GL/glxew.h -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/include/GL/wglew.h -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/lib/Release/Win32/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/lib/Release/Win32/glew32.lib -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/lib/Release/x64/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/lib/Release/x64/glew32.lib -------------------------------------------------------------------------------- /wowViewerLib/3rdparty/glew_win/lib/Release/x64/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/3rdparty/glew_win/lib/Release/x64/glew32s.lib -------------------------------------------------------------------------------- /wowViewerLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/CMakeLists.txt -------------------------------------------------------------------------------- /wowViewerLib/shaders/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/CMakeLists.txt -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/adt/adtShader_text.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/adt/adtShader_text.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/deferred_excerpt.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/deferred_excerpt.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/lights/pointLight.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/lights/pointLight.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/lights/pointLight.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/lights/pointLight.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/lights/spotLight.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/lights/spotLight.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/lights/spotLight.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/lights/spotLight.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/m2/forward/m2Shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/m2/forward/m2Shader.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/m2/forward/m2Shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/m2/forward/m2Shader.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/m2/m2shader_text.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/m2/m2shader_text.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/m2Ribbon/ribbonShader_text.glsl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/water/waterShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/water/waterShader.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/water/waterShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/water/waterShader.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/bindless/wmo/wmoshader_text.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/bindless/wmo/wmoshader_text.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/common/commonADTMaterial.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/common/commonADTMaterial.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/common/commonFogFunctions.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/common/commonFogFunctions.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/common/commonFunctions.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/common/commonFunctions.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/common/commonGBufferData.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/common/commonGBufferData.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/common/commonLightFunctions.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/common/commonLightFunctions.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/common/commonM2DescriptorSet.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/common/commonM2DescriptorSet.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/common/commonM2Material.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/common/commonM2Material.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/common/commonUboSceneData.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/common/commonUboSceneData.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/common/commonWMOMaterial.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/common/commonWMOMaterial.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/common/commonWaterIndirect.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/common/commonWaterIndirect.glsl -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/adtShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/adtShader.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/adtShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/adtShader.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/drawPoints.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/drawPoints.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/drawPoints.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/drawPoints.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/drawQuad.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/drawQuad.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/ffxgauss4.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/ffxgauss4.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/ffxglow.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/ffxglow.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/imguiShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/imguiShader.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/imguiShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/imguiShader.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/m2Shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/m2Shader.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/m2Shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/m2Shader.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/skyConus.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/skyConus.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/skyConus.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/skyConus.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/waterShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/waterShader.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/waterShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/waterShader.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/wmoShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/wmoShader.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/forwardRendering/wmoShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/forwardRendering/wmoShader.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/stubs/commonGBufferData.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/stubs/commonGBufferData.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/stubs/commonSceneData.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/stubs/commonSceneData.frag -------------------------------------------------------------------------------- /wowViewerLib/shaders/glsl/stubs/stub.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/glsl/stubs/stub.vert -------------------------------------------------------------------------------- /wowViewerLib/shaders/slang/common/animation.slang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/slang/common/animation.slang -------------------------------------------------------------------------------- /wowViewerLib/shaders/slang/common/animationInputs.slang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/slang/common/animationInputs.slang -------------------------------------------------------------------------------- /wowViewerLib/shaders/slang/common/particle/rndSeed.slang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/slang/common/particle/rndSeed.slang -------------------------------------------------------------------------------- /wowViewerLib/shaders/slang/compute/particleEmit.slang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/slang/compute/particleEmit.slang -------------------------------------------------------------------------------- /wowViewerLib/shaders/slang/compute/particleMakeOlder.slang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/slang/compute/particleMakeOlder.slang -------------------------------------------------------------------------------- /wowViewerLib/shaders/slang/compute/particleUpdate.slang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/slang/compute/particleUpdate.slang -------------------------------------------------------------------------------- /wowViewerLib/shaders/src/spirv/dumpGLSLShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/src/spirv/dumpGLSLShader.h -------------------------------------------------------------------------------- /wowViewerLib/shaders/src/spirv/dumpShaderFields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/src/spirv/dumpShaderFields.h -------------------------------------------------------------------------------- /wowViewerLib/shaders/src/spirv/dumpShaderMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/src/spirv/dumpShaderMetaData.h -------------------------------------------------------------------------------- /wowViewerLib/shaders/src/spirv/fileHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/src/spirv/fileHelpers.h -------------------------------------------------------------------------------- /wowViewerLib/shaders/src/spirv/spirv_refl_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/src/spirv/spirv_refl_main.cpp -------------------------------------------------------------------------------- /wowViewerLib/shaders/src/spirv/webGLSLCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/src/spirv/webGLSLCompiler.cpp -------------------------------------------------------------------------------- /wowViewerLib/shaders/src/spirv/webGLSLCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/shaders/src/spirv/webGLSLCompiler.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/ApiContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/ApiContainer.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/ApiContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/ApiContainer.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/CameraMatrices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/CameraMatrices.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/WowFilesCacheStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/WowFilesCacheStorage.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/WowFilesCacheStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/WowFilesCacheStorage.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/C3Spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/C3Spline.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/C3Spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/C3Spline.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/C3Spline_Bezier3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/C3Spline_Bezier3.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/C3Spline_Bezier3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/C3Spline_Bezier3.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/FrameCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/FrameCounter.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/FrameCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/FrameCounter.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/animate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/animate.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/animate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/animate.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/grahamScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/grahamScan.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/grahamScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/grahamScan.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/hashString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/hashString.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/mathHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/mathHelper.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/mathHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/mathHelper.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/mathHelper_culling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/mathHelper_culling.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/mathHelper_culling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/mathHelper_culling.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/mathHelper_culling_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/mathHelper_culling_sse.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/quick-sort-omp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/quick-sort-omp.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/algorithms/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/algorithms/utility.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/androidLogSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/androidLogSupport.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/cache/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/cache/cache.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/cache/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/cache/cache.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/camera/CameraInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/camera/CameraInterface.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/camera/firstPersonCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/camera/firstPersonCamera.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/camera/firstPersonCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/camera/firstPersonCamera.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/camera/firstPersonOrthoCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/camera/firstPersonOrthoCamera.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/camera/firstPersonOrthoCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/camera/firstPersonOrthoCamera.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/camera/m2TiedCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/camera/m2TiedCamera.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/camera/m2TiedCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/camera/m2TiedCamera.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/camera/planarCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/camera/planarCamera.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/camera/planarCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/camera/planarCamera.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/engineClassList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/engineClassList.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/geometry/m2Geom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/geometry/m2Geom.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/geometry/m2Geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/geometry/m2Geom.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/geometry/skinGeom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/geometry/skinGeom.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/geometry/skinGeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/geometry/skinGeom.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/geometry/wmoGroupGeom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/geometry/wmoGroupGeom.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/geometry/wmoGroupGeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/geometry/wmoGroupGeom.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/geometry/wmoMainGeom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/geometry/wmoMainGeom.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/geometry/wmoMainGeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/geometry/wmoMainGeom.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/managers/CRibbonEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/managers/CRibbonEmitter.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/managers/CRibbonEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/managers/CRibbonEmitter.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/managers/SceneGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/managers/SceneGraph.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/managers/SceneGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/managers/SceneGraph.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/managers/animationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/managers/animationManager.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/managers/animationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/managers/animationManager.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/managers/particles/CRndSeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/managers/particles/CRndSeed.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/managers/particles/CRndSeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/managers/particles/CRndSeed.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/managers/particles/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/managers/particles/particle.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/managers/particles/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/managers/particles/particle.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/SceneObjectWithID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/SceneObjectWithID.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/ViewsObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/ViewsObjects.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/ViewsObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/ViewsObjects.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/adt/adtObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/adt/adtObject.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/adt/adtObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/adt/adtObject.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/iMapApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/iMapApi.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/iScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/iScene.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/iScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/iScene.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/iWmoApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/iWmoApi.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/lights/CPointLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/lights/CPointLight.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/lights/CPointLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/lights/CPointLight.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/lights/CSpotLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/lights/CSpotLight.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/lights/CSpotLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/lights/CSpotLight.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/lights/CWmoNewLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/lights/CWmoNewLight.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/lights/CWmoNewLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/lights/CWmoNewLight.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/liquid/LiquidDataGetters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/liquid/LiquidDataGetters.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/liquid/LiquidInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/liquid/LiquidInstance.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/liquid/LiquidInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/liquid/LiquidInstance.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/m2/m2Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/m2/m2Object.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/m2/m2Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/m2/m2Object.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/objectCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/objectCache.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/scenes/NullScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/scenes/NullScene.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/scenes/m2Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/scenes/m2Scene.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/scenes/m2Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/scenes/m2Scene.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/scenes/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/scenes/map.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/scenes/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/scenes/map.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/scenes/wmoScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/scenes/wmoScene.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/scenes/wmoScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/scenes/wmoScene.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/wdl/wdlObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/wdl/wdlObject.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/wdl/wdlObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/wdl/wdlObject.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/wdt/wdtLightsObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/wdt/wdtLightsObject.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/wdt/wdtLightsObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/wdt/wdtLightsObject.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/wmo/wmoGroupObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/wmo/wmoGroupObject.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/wmo/wmoGroupObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/wmo/wmoGroupObject.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/wmo/wmoObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/wmo/wmoObject.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/objects/wmo/wmoObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/objects/wmo/wmoObject.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/opengl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/opengl/header.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/PersistentFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/PersistentFile.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/adtFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/adtFile.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/adtFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/adtFile.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/animFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/animFile.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/animFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/animFile.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/db2File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/db2File.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/db2File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/db2File.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/header/M2FileHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/header/M2FileHeader.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/header/M2FileHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/header/M2FileHeader.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/header/adtFileHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/header/adtFileHeader.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/header/blpFileHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/header/blpFileHeader.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/header/ida.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/header/ida.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/header/skelFileHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/header/skelFileHeader.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/header/skinFileHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/header/skinFileHeader.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/header/texFileHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/header/texFileHeader.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/header/wdlHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/header/wdlHeader.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/header/wdtFileHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/header/wdtFileHeader.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/header/wmoFileHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/header/wmoFileHeader.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/m2File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/m2File.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/m2File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/m2File.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/skelFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/skelFile.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/skelFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/skelFile.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/texFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/texFile.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/texFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/texFile.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/wdlFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/wdlFile.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/wdlFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/wdlFile.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/wdtFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/wdtFile.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/wdtFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/wdtFile.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/wdtLightFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/wdtLightFile.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/persistance/wdtLightFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/persistance/wdtLightFile.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/shader/ShaderDefinitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/shader/ShaderDefinitions.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/shader/ShaderRuntimeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/shader/ShaderRuntimeData.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/shader/ShaderRuntimeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/shader/ShaderRuntimeData.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/stringTrim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/stringTrim.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/texture/BlpTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/texture/BlpTexture.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/texture/BlpTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/texture/BlpTexture.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/texture/DxtDecompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/texture/DxtDecompress.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/engine/texture/DxtDecompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/texture/DxtDecompress.h -------------------------------------------------------------------------------- /wowViewerLib/src/engine/wowCommonClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/engine/wowCommonClasses.h -------------------------------------------------------------------------------- /wowViewerLib/src/exporters/IExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/exporters/IExporter.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/IDeviceFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/IDeviceFactory.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/IDeviceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/IDeviceFactory.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/UniformBufferStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/UniformBufferStructures.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/IDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/IDevice.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/IDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/IDevice.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/IFrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/IFrameBuffer.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/IOcclusionQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/IOcclusionQuery.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/IRendererProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/IRendererProxy.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/IShaderPermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/IShaderPermutation.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/IVertexBufferBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/IVertexBufferBindings.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/buffers/IBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/buffers/IBuffer.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/buffers/IBufferChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/buffers/IBufferChunk.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/buffers/IBufferVersioned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/buffers/IBufferVersioned.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/materials/IMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/materials/IMaterial.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/meshes/IM2Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/meshes/IM2Mesh.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/meshes/IMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/meshes/IMesh.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/meshes/IParticleMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/meshes/IParticleMesh.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/meshes/ISortableMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/meshes/ISortableMesh.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/sortLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/sortLambda.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/syncronization/IGPUFence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/syncronization/IGPUFence.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/textures/ITexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/textures/ITexture.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/interface/textures/ITextureSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/interface/textures/ITextureSampler.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/GDeviceGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/GDeviceGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/GDeviceGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/GDeviceGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/GOcclusionQueryGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/GOcclusionQueryGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/GOcclusionQueryGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/GOcclusionQueryGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/GRenderTargetGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/GRenderTargetGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/GRenderTargetGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/GRenderTargetGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/GShaderPermutationGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/GShaderPermutationGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/GShaderPermutationGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/GShaderPermutationGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/GVertexBufferBindingsGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/GVertexBufferBindingsGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/GVertexBufferBindingsGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/GVertexBufferBindingsGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/buffers/GIndexBufferGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/buffers/GIndexBufferGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/buffers/GIndexBufferGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/buffers/GIndexBufferGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/buffers/GUniformBufferGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/buffers/GUniformBufferGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/buffers/GUniformBufferGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/buffers/GUniformBufferGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/buffers/GVertexBufferGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/buffers/GVertexBufferGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/buffers/GVertexBufferGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/buffers/GVertexBufferGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/meshes/GM2MeshGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/meshes/GM2MeshGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/meshes/GM2MeshGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/meshes/GM2MeshGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/meshes/GMeshGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/meshes/GMeshGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/meshes/GMeshGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/meshes/GMeshGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/meshes/GParticleMeshGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/meshes/GParticleMeshGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/meshes/GParticleMeshGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/meshes/GParticleMeshGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/textures/GBlpTextureGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/textures/GBlpTextureGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/textures/GBlpTextureGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/textures/GBlpTextureGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/textures/GTextureGL20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/textures/GTextureGL20.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl2.0/textures/GTextureGL20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl2.0/textures/GTextureGL20.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GDeviceGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GDeviceGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GDeviceGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GDeviceGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GFrameBufferGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GFrameBufferGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GFrameBufferGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GFrameBufferGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GOcclusionQueryGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GOcclusionQueryGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GOcclusionQueryGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GOcclusionQueryGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GRenderTargetGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GRenderTargetGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GRenderTargetGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GRenderTargetGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GShaderPermutationGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GShaderPermutationGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GShaderPermutationGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GShaderPermutationGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GVertexBufferBindingsGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GVertexBufferBindingsGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/GVertexBufferBindingsGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/GVertexBufferBindingsGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/buffers/GIndexBufferGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/buffers/GIndexBufferGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/buffers/GIndexBufferGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/buffers/GIndexBufferGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/buffers/GUnformBufferChunk33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/buffers/GUnformBufferChunk33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/buffers/GUniformBufferGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/buffers/GUniformBufferGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/buffers/GUniformBufferGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/buffers/GUniformBufferGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/buffers/GVertexBufferGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/buffers/GVertexBufferGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/buffers/GVertexBufferGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/buffers/GVertexBufferGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/meshes/GM2MeshGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/meshes/GM2MeshGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/meshes/GM2MeshGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/meshes/GM2MeshGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/meshes/GMeshGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/meshes/GMeshGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/meshes/GMeshGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/meshes/GMeshGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/meshes/GParticleMeshGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/meshes/GParticleMeshGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/meshes/GParticleMeshGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/meshes/GParticleMeshGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/shaders/GFFXGlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/shaders/GFFXGlow.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/shaders/GFFXGlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/shaders/GFFXGlow.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/shaders/GFFXgauss4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/shaders/GFFXgauss4.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/shaders/GFFXgauss4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/shaders/GFFXgauss4.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/shaders/GSkyConus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/shaders/GSkyConus.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/shaders/GSkyConus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/shaders/GSkyConus.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/shaders/GWaterShaderGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/shaders/GWaterShaderGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/textures/GBlpTextureGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/textures/GBlpTextureGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/textures/GTextureGL33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/textures/GTextureGL33.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl3.3/textures/GTextureGL33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl3.3/textures/GTextureGL33.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/GDeviceGL4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/GDeviceGL4x.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/GDeviceGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/GDeviceGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/GOcclusionQueryGL4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/GOcclusionQueryGL4x.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/GOcclusionQueryGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/GOcclusionQueryGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/GRenderTargetGL4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/GRenderTargetGL4x.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/GRenderTargetGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/GRenderTargetGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/GShaderPermutationGL4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/GShaderPermutationGL4x.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/GShaderPermutationGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/GShaderPermutationGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/GVertexBufferBindingsGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/GVertexBufferBindingsGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/buffers/GIndexBufferGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/buffers/GIndexBufferGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/buffers/GVertexBufferGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/buffers/GVertexBufferGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/meshes/GM2MeshGL4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/meshes/GM2MeshGL4x.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/meshes/GM2MeshGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/meshes/GM2MeshGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/meshes/GMeshGL4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/meshes/GMeshGL4x.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/meshes/GMeshGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/meshes/GMeshGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/meshes/GParticleMeshGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/meshes/GParticleMeshGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/textures/GBlpTextureGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/textures/GBlpTextureGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/textures/GTextureGL4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/textures/GTextureGL4x.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/ogl4.x/textures/GTextureGL4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/ogl4.x/textures/GTextureGL4x.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/renderdoc_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/renderdoc_app.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/GDescriptorSetUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/GDescriptorSetUpdater.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/GDescriptorSetUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/GDescriptorSetUpdater.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/GDeviceVulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/GDeviceVulkan.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/GDeviceVulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/GDeviceVulkan.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/GFrameBufferVLK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/GFrameBufferVLK.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/GFrameBufferVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/GFrameBufferVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/GRenderPassVLK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/GRenderPassVLK.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/GRenderPassVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/GRenderPassVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/GVertexBufferBindingsVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/GVertexBufferBindingsVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/IDeviceVulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/IDeviceVulkan.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/TextureManagerVLK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/TextureManagerVLK.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/TextureManagerVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/TextureManagerVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/bindable/DSBindable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/bindable/DSBindable.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/buffers/CBufferChunkVLK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/buffers/CBufferChunkVLK.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/buffers/CBufferChunkVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/buffers/CBufferChunkVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/buffers/GBufferVLK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/buffers/GBufferVLK.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/buffers/GBufferVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/buffers/GBufferVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/buffers/IBufferVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/buffers/IBufferVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/buffers/gpu/BufferGpuVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/buffers/gpu/BufferGpuVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/context/vulkan_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/context/vulkan_context.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/fastmemcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/fastmemcp.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/meshes/GM2MeshVLK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/meshes/GM2MeshVLK.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/meshes/GM2MeshVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/meshes/GM2MeshVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/meshes/GMeshVLK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/meshes/GMeshVLK.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/meshes/GMeshVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/meshes/GMeshVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/meshes/GSortableMeshVLK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/meshes/GSortableMeshVLK.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/meshes/GSortableMeshVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/meshes/GSortableMeshVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/pipeline/GPipelineVLK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/pipeline/GPipelineVLK.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/pipeline/GPipelineVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/pipeline/GPipelineVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/shaders/ShaderConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/shaders/ShaderConfig.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/synchronization/GFenceVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/synchronization/GFenceVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/textures/GBlpTextureVLK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/textures/GBlpTextureVLK.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/textures/GBlpTextureVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/textures/GBlpTextureVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/textures/GTextureVLK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/textures/GTextureVLK.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/textures/GTextureVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/textures/GTextureVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/utils/MutexLockedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/utils/MutexLockedVector.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/vkAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/vkAllocator.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/vk_mem_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/vk_mem_alloc.h -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/volk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/volk.c -------------------------------------------------------------------------------- /wowViewerLib/src/gapi/vulkan/volk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/gapi/vulkan/volk.h -------------------------------------------------------------------------------- /wowViewerLib/src/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/include/config.h -------------------------------------------------------------------------------- /wowViewerLib/src/include/controllable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/include/controllable.h -------------------------------------------------------------------------------- /wowViewerLib/src/include/custom_container_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/include/custom_container_key.h -------------------------------------------------------------------------------- /wowViewerLib/src/include/database/dbStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/include/database/dbStructs.h -------------------------------------------------------------------------------- /wowViewerLib/src/include/databaseHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/include/databaseHandler.h -------------------------------------------------------------------------------- /wowViewerLib/src/include/iostuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/include/iostuff.h -------------------------------------------------------------------------------- /wowViewerLib/src/include/sharedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/include/sharedFile.h -------------------------------------------------------------------------------- /wowViewerLib/src/include/stdint_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/include/stdint_msvc.h -------------------------------------------------------------------------------- /wowViewerLib/src/include/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/include/string_utils.h -------------------------------------------------------------------------------- /wowViewerLib/src/include/string_utlis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/include/string_utlis.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/logger/viewerLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/logger/viewerLogger.h -------------------------------------------------------------------------------- /wowViewerLib/src/opengl/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/opengl/GL/glcorearb.h -------------------------------------------------------------------------------- /wowViewerLib/src/opengl/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/opengl/GL/glext.h -------------------------------------------------------------------------------- /wowViewerLib/src/opengl/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/opengl/GL/glxext.h -------------------------------------------------------------------------------- /wowViewerLib/src/opengl/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/opengl/GL/wglext.h -------------------------------------------------------------------------------- /wowViewerLib/src/persistence/RequestProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/persistence/RequestProcessor.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/persistence/RequestProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/persistence/RequestProcessor.h -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/IRenderParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/IRenderParameters.h -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/IRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/IRenderer.h -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/frame/FrameInputParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/frame/FrameInputParams.h -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/frame/FrameProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/frame/FrameProfile.h -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/frame/SceneComposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/frame/SceneComposer.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/frame/SceneComposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/frame/SceneComposer.h -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/frame/SceneScenario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/frame/SceneScenario.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/frame/SceneScenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/frame/SceneScenario.h -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/mapScene/FrameDependentData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/mapScene/FrameDependentData.h -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/mapScene/MapSceneParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/mapScene/MapSceneParams.h -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/mapScene/MapScenePlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/mapScene/MapScenePlan.h -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/mapScene/MapSceneRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/mapScene/MapSceneRenderer.cpp -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/mapScene/MapSceneRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/mapScene/MapSceneRenderer.h -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/mapScene/vulkan/MapSceneRenderBindlessDeferredVLK.cpp: -------------------------------------------------------------------------------- 1 | #include "MapSceneRenderBindlessDeferredVLK.h" 2 | 3 | -------------------------------------------------------------------------------- /wowViewerLib/src/renderer/vulkan/IRenderFunctionVLK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/renderer/vulkan/IRenderFunctionVLK.h -------------------------------------------------------------------------------- /wowViewerLib/src/robin_hood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deamon87/WebWowViewerCpp/HEAD/wowViewerLib/src/robin_hood.h --------------------------------------------------------------------------------