Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt gui source file path #32

Merged
merged 1 commit into from
Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion comet/comet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "taichi/taichi_core.h"

// GUI
#include <taichi/gui/gui.h>
#include <taichi/ui/gui/gui.h>
#include <taichi/ui/backends/vulkan/renderer.h>

constexpr int img_h = 680;
Expand Down
2 changes: 1 addition & 1 deletion implicit_fem/include/fem_app.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <taichi/rhi/vulkan/vulkan_common.h>
#include <taichi/rhi/vulkan/vulkan_loader.h>
#include <taichi/runtime/program_impls/vulkan/vulkan_program.h>
#include <taichi/gui/gui.h>
#include <taichi/ui/gui/gui.h>
#include <taichi/inc/constants.h>
#include <taichi/ui/backends/vulkan/renderer.h>

Expand Down
2 changes: 1 addition & 1 deletion mpm88_desktop/mpm88.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <memory>
#include <taichi/gui/gui.h>
#include <taichi/ui/gui/gui.h>
#include <taichi/ui/backends/vulkan/renderer.h>
#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion sph/sph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <memory>
#include <vector>

#include <taichi/gui/gui.h>
#include <taichi/ui/gui/gui.h>
#include <taichi/ui/backends/vulkan/renderer.h>
#include "taichi_core_impl.h"
#include "c_api_test_utils.h"
Expand Down
2 changes: 1 addition & 1 deletion taichi_sparse/taichi_sparse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "taichi/taichi_core.h"

// GUI
#include <taichi/gui/gui.h>
#include <taichi/ui/gui/gui.h>
#include <taichi/ui/backends/vulkan/renderer.h>

constexpr int img_h = 680;
Expand Down