Skip to content

Commit

Permalink
Merge pull request #55 from lindemeier/feature/gpu-texture-brush
Browse files Browse the repository at this point in the history
feature/gpu texture brush
  • Loading branch information
lindemeier authored Nov 22, 2020
2 parents a7c52d8 + 09e439c commit 41edd9b
Show file tree
Hide file tree
Showing 73 changed files with 2,234 additions and 767 deletions.
1 change: 0 additions & 1 deletion .bazelrc

This file was deleted.

51 changes: 0 additions & 51 deletions .github/workflows/bazel.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install dependencies, opencv, Qt5 for GUIs and clang-10
run: |
sudo apt-get update
sudo apt-get install libopencv-dev qtbase5-dev clang-10 ninja-build libeigen3-dev libceres-dev
sudo apt-get install libopencv-dev qtbase5-dev clang-10 ninja-build libeigen3-dev libceres-dev libglfw3 libglfw3-dev libglew-dev
- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
*.app

build/*
.vscode/*
linear_rgb.png
luminance.png
hugo.png
Expand Down
29 changes: 0 additions & 29 deletions 3rdParty/BUILD.bazel

This file was deleted.

59 changes: 0 additions & 59 deletions 3rdParty/eigen.BUILD

This file was deleted.

12 changes: 0 additions & 12 deletions 3rdParty/nlohmann_json.BUILD

This file was deleted.

Empty file removed BUILD.bazel
Empty file.
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,18 @@ if(NOT json_POPULATED)
add_subdirectory(${json_SOURCE_DIR} ${json_BINARY_DIR} EXCLUDE_FROM_ALL)
endif()

FetchContent_Declare(
prgl
GIT_REPOSITORY https://github.com/lindemeier/prgl.git
GIT_TAG develop
)
FetchContent_MakeAvailable(prgl)


# modules
add_subdirectory(painty/core)
add_subdirectory(painty/image)
add_subdirectory(painty/gpu)
add_subdirectory(painty/io)
add_subdirectory(painty/mixer)
add_subdirectory(painty/renderer)
Expand Down
137 changes: 0 additions & 137 deletions WORKSPACE.bazel

This file was deleted.

Empty file removed apps/BUILD.bazel
Empty file.
40 changes: 0 additions & 40 deletions apps/painty_gui/BUILD.bazel

This file was deleted.

10 changes: 0 additions & 10 deletions apps/palette_extraction/BUILD.bazel

This file was deleted.

16 changes: 0 additions & 16 deletions apps/sbr_painter/BUILD.bazel

This file was deleted.

Loading

0 comments on commit 41edd9b

Please sign in to comment.