Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jones committed Nov 8, 2024
1 parent 74522d6 commit f6e6615
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ include(FetchContent)
# include google test to project
FetchContent_Declare(
googletest
URL https://github.com/google/googletest/archive/58d77fa8070e8cec2dc1ed015d66b454c8d78850.zip
URL https://github.com/google/googletest/archive/df1544bcee0c7ce35cd5ea0b3eb8cc81855a4140.zip
)
# For Windows: Prevent overriding the parent project's compiler/linker settings
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
Expand All @@ -74,7 +74,7 @@ FetchContent_MakeAvailable(googletest)
# You can also pick a specific commit, if you need to.
FetchContent_Declare(GSL
GIT_REPOSITORY "https://github.com/microsoft/GSL"
GIT_TAG "v4.0.0"
GIT_TAG "v4.1.0"
)
FetchContent_MakeAvailable(GSL)

Expand Down
2 changes: 1 addition & 1 deletion ExternalLib/GLFW
Submodule GLFW updated 114 files
2 changes: 1 addition & 1 deletion ExternalLib/GLM
Submodule GLM updated 1680 files
2 changes: 1 addition & 1 deletion ExternalLib/IMGUI
Submodule IMGUI updated 198 files
2 changes: 1 addition & 1 deletion ExternalLib/TOL
Submodule TOL updated 52 files
+30 −0 .cirrus.yml
+15 −0 .github/FUNDING.yml
+115 −0 .github/workflows/wheels.yml
+2 −0 .gitignore
+9 −0 BUILD.bazel
+60 −4 CMakeLists.txt
+8 −0 MANIFEST.in
+9 −0 MODULE.bazel
+26 −15 README.md
+130 −125 azure-pipelines.yml
+20 −0 bootstrap-cmake-linux-with-pyhthon.sh
+9 −0 cmake/ClangClCMakeCompileRules.cmake
+14 −0 cmake/aarch64-linux-gnu.toolchain
+327 −0 cmake/clang-cl-msvc-windows.cmake
+327 −0 cmake/clang-cl-msvc-wsl.cmake
+17 −0 cmake/linux_i386.toolchain.cmake
+24 −0 cmake/llvm-mingw-cross.cmake
+20 −0 cmake/llvm-mingw-win64.cmake
+20 −0 cmake/mingw64-cross.cmake
+59 −0 cmake/sanitizers/FindASan.cmake
+57 −0 cmake/sanitizers/FindMSan.cmake
+94 −0 cmake/sanitizers/FindSanitizers.cmake
+65 −0 cmake/sanitizers/FindTSan.cmake
+46 −0 cmake/sanitizers/FindUBSan.cmake
+55 −0 cmake/sanitizers/asan-wrapper
+177 −0 cmake/sanitizers/sanitize-helpers.cmake
+1 −1 examples/obj_sticher/obj_writer.cc
+1 −0 examples/viewer/.gitignore
+29 −0 examples/viewer/CMakeLists.txt
+47 −23 examples/viewer/viewer.cc
+1 −1 loader_example.cc
+31 −0 models/cube-vertex-w-component.obj
+2 −0 models/invalid-relative-texture-index.obj
+1 −0 models/invalid-relative-vertex-index.obj
+39 −0 models/issue-319-002.obj
+27 −0 models/issue-319-003.obj
+12 −0 models/issue-330.obj
+2 −0 models/issue-356-leading-spaces-newmtl.mtl
+2 −0 models/issue-356-leading-spaces-newmtl.obj
+29 −0 pbr-mtl.md
+39 −0 pyproject.toml
+0 −6 python/MANIFEST.in
+1 −1 python/Makefile
+5 −8 python/README.md
+93 −8 python/bindings.cc
+0 −2 python/pyproject.toml
+72 −12 python/sample.py
+0 −131 python/setup.py
+1 −1 python/tiny_obj_loader.cc
+69 −0 setup.py
+48 −0 tests/tester.cc
+289 −123 tiny_obj_loader.h
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ With the provided CMake file you are able to built the project on Linux (Ubuntu
and Windows. I do not provide support for MacOS. Be aware of the dependencies:

* [OpenGL 4.6](https://www.opengl.org//)
* [GLAD](https://glad.dav1d.de/)
* [glm](https://github.com/g-truc/glm)
* [glfw](https://www.glfw.org/)
* [tinyobjloader](https://github.com/tinyobjloader/tinyobjloader)
Expand Down
11 changes: 5 additions & 6 deletions Src/gui/GUI.cpp
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#include "GUI.hpp"
#include "OpenGLRendererConfig.hpp"

#include <imgui.h>
#include <imgui_impl_glfw.h>
#include <imgui_impl_opengl3.h>

#include <sstream>
#include <filesystem>
#include <sstream>

#include "RepeatMode.hpp"
#include "Clouds.hpp"
#include "OpenGLRendererConfig.hpp"
#include "RepeatMode.hpp"
#include "host_device_shared.hpp"

GUI::GUI() {
Expand Down Expand Up @@ -206,9 +206,8 @@ void GUI::render(bool loading_in_progress, float progress,
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)",
1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
// ImGui::ShowDemoWindow();

ImGui::Image((void*)(intptr_t)logo_tex.get_id(), ImVec2(200, 200),
ImVec2(0, 1), ImVec2(1, 0));
// (void*)(intptr_t)
ImGui::Image(logo_tex.get_id(), ImVec2(200, 200), ImVec2(0, 1), ImVec2(1, 0));

ImGui::End();

Expand Down

0 comments on commit f6e6615

Please sign in to comment.