Skip to content

Commit

Permalink
Update third_party dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkewley committed Jun 26, 2024
1 parent 59bf26a commit 9e4c4c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion third_party/SDL
Submodule SDL updated 131 files
2 changes: 1 addition & 1 deletion third_party/benchmark
Submodule benchmark updated 80 files
+0 −1 .clang-tidy
+4 −5 .github/install_bazel.sh
+1 −1 .github/libcxx-setup.sh
+1 −1 .github/workflows/bazel.yml
+53 −6 .github/workflows/build-and-test.yml
+2 −1 .github/workflows/clang-format-lint.yml
+38 −0 .github/workflows/pre-commit.yml
+0 −28 .github/workflows/pylint.yml
+8 −7 .github/workflows/test_bindings.yml
+44 −33 .github/workflows/wheels.yml
+1 −0 .gitignore
+18 −0 .pre-commit-config.yaml
+99 −94 .ycm_extra_conf.py
+1 −0 AUTHORS
+40 −13 BUILD.bazel
+25 −10 CMakeLists.txt
+2 −0 CONTRIBUTORS
+27 −10 MODULE.bazel
+11 −9 WORKSPACE
+16 −19 bazel/benchmark_deps.bzl
+0 −3 bindings/python/BUILD
+0 −25 bindings/python/build_defs.bzl
+3 −16 bindings/python/google_benchmark/BUILD
+18 −39 bindings/python/google_benchmark/__init__.py
+4 −1 bindings/python/google_benchmark/example.py
+7 −0 bindings/python/google_benchmark/version.py
+0 −17 bindings/python/nanobind.BUILD
+0 −6 bindings/python/python_headers.BUILD
+4 −26 cmake/GetGitVersion.cmake
+7 −0 cmake/benchmark_main.pc.in
+4 −4 docs/python_bindings.md
+2 −4 docs/reducing_variance.md
+4 −14 docs/releasing.md
+28 −2 docs/user_guide.md
+61 −12 include/benchmark/benchmark.h
+38 −2 pyproject.toml
+101 −66 setup.py
+10 −1 src/CMakeLists.txt
+33 −4 src/benchmark.cc
+3 −2 src/benchmark_register.cc
+2 −2 src/benchmark_register.h
+6 −5 src/benchmark_runner.cc
+3 −3 src/colorprint.cc
+29 −14 src/complexity.cc
+9 −5 src/console_reporter.cc
+2 −2 src/counter.cc
+11 −3 src/csv_reporter.cc
+24 −12 src/cycleclock.h
+1 −5 src/internal_macros.h
+7 −0 src/json_reporter.cc
+3 −2 src/perf_counters.cc
+10 −5 src/statistics.cc
+1 −1 src/string_util.cc
+38 −22 src/sysinfo.cc
+7 −3 src/timers.cc
+5 −0 test/BUILD
+49 −40 test/CMakeLists.txt
+1 −1 test/basic_test.cc
+1 −1 test/benchmark_gtest.cc
+26 −0 test/benchmark_test.cc
+101 −59 test/complexity_test.cc
+2 −2 test/diagnostics_test.cc
+1 −1 test/link_main_test.cc
+1 −1 test/memory_manager_test.cc
+1 −0 test/output_test_helper.cc
+1 −1 test/perf_counters_gtest.cc
+1 −1 test/perf_counters_test.cc
+7 −4 test/reporter_output_test.cc
+1 −1 test/skip_with_error_test.cc
+2 −2 test/statistics_gtest.cc
+6 −3 test/user_counters_tabular_test.cc
+7 −7 test/user_counters_test.cc
+3 −2 tools/BUILD.bazel
+261 −170 tools/compare.py
+18 −0 tools/gbench/Inputs/test5_run0.json
+18 −0 tools/gbench/Inputs/test5_run1.json
+4 −4 tools/gbench/__init__.py
+1,071 −653 tools/gbench/report.py
+71 −43 tools/gbench/util.py
+65 −53 tools/strip_asm.py
2 changes: 1 addition & 1 deletion third_party/imgui
Submodule imgui updated 65 files
+1 −1 .github/FUNDING.yml
+2 −2 .github/workflows/build.yml
+2 −1 .gitignore
+4 −2 backends/imgui_impl_allegro5.cpp
+2 −0 backends/imgui_impl_android.cpp
+2 −1 backends/imgui_impl_dx10.cpp
+2 −1 backends/imgui_impl_dx11.cpp
+2 −1 backends/imgui_impl_dx12.cpp
+2 −1 backends/imgui_impl_dx9.cpp
+8 −4 backends/imgui_impl_glfw.cpp
+2 −3 backends/imgui_impl_glfw.h
+1 −0 backends/imgui_impl_glut.cpp
+5 −3 backends/imgui_impl_metal.mm
+2 −1 backends/imgui_impl_opengl2.cpp
+25 −24 backends/imgui_impl_opengl3.cpp
+3 −3 backends/imgui_impl_opengl3.h
+110 −16 backends/imgui_impl_opengl3_loader.h
+3 −1 backends/imgui_impl_osx.h
+9 −5 backends/imgui_impl_osx.mm
+7 −4 backends/imgui_impl_sdl2.cpp
+3 −2 backends/imgui_impl_sdl2.h
+58 −40 backends/imgui_impl_sdl3.cpp
+4 −2 backends/imgui_impl_sdl3.h
+21 −23 backends/imgui_impl_sdlrenderer2.cpp
+1 −1 backends/imgui_impl_sdlrenderer2.h
+22 −24 backends/imgui_impl_sdlrenderer3.cpp
+1 −1 backends/imgui_impl_sdlrenderer3.h
+47 −23 backends/imgui_impl_vulkan.cpp
+11 −5 backends/imgui_impl_vulkan.h
+2 −1 backends/imgui_impl_wgpu.cpp
+1 −1 backends/imgui_impl_wgpu.h
+56 −27 backends/imgui_impl_win32.cpp
+2 −2 docs/BACKENDS.md
+297 −6 docs/CHANGELOG.txt
+4 −4 docs/EXAMPLES.md
+37 −5 docs/FAQ.md
+9 −7 docs/README.md
+8 −10 docs/TODO.txt
+1 −1 examples/example_android_opengl3/main.cpp
+17 −7 examples/example_glfw_vulkan/main.cpp
+100 −0 examples/example_glfw_wgpu/CMakeLists.txt
+0 −0 examples/example_glfw_wgpu/Makefile.emscripten
+2 −2 examples/example_glfw_wgpu/README.md
+84 −18 examples/example_glfw_wgpu/main.cpp
+5 −1 examples/example_glfw_wgpu/web/index.html
+2 −1 examples/example_sdl2_sdlrenderer2/main.cpp
+17 −7 examples/example_sdl2_vulkan/main.cpp
+3 −3 examples/example_sdl3_opengl3/Makefile
+3 −3 examples/example_sdl3_sdlrenderer3/Makefile
+5 −3 examples/example_sdl3_sdlrenderer3/main.cpp
+14 −2 examples/example_win32_directx10/main.cpp
+13 −2 examples/example_win32_directx11/main.cpp
+15 −2 examples/example_win32_directx12/main.cpp
+18 −4 examples/example_win32_directx9/main.cpp
+1 −1 examples/libs/usynergy/uSynergy.h
+821 −476 imgui.cpp
+217 −140 imgui.h
+339 −140 imgui_demo.cpp
+333 −18 imgui_draw.cpp
+212 −184 imgui_internal.h
+122 −53 imgui_tables.cpp
+164 −102 imgui_widgets.cpp
+1 −1 imstb_textedit.h
+1 −1 imstb_truetype.h
+1 −1 misc/freetype/imgui_freetype.cpp
2 changes: 1 addition & 1 deletion third_party/stb
Submodule stb updated 4 files
+2 −2 README.md
+6 −3 stb_image.h
+23 −22 stb_image_resize2.h
+4 −0 tests/stb.dsp

0 comments on commit 9e4c4c0

Please sign in to comment.