-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from rxdu/feature-xmotion_support
Feature xmotion support
- Loading branch information
Showing
99 changed files
with
2,454 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#version 330 core | ||
out vec4 FragColor; | ||
void main() | ||
{ | ||
FragColor = vec4(0.2, 0.5, 0.8, 1.0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#version 330 core | ||
layout (location = 0) in vec3 aPos; | ||
void main() | ||
{ | ||
gl_Position = vec4(aPos, 1.0); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,22 @@ | ||
add_executable(quickviz main.cpp | ||
# components | ||
quickviz_application.cpp | ||
# panels | ||
panels/main_docking_panel.cpp | ||
panels/config_panel.cpp | ||
panels/scene_panel.cpp | ||
panels/config_panel.cpp | ||
panels/console_panel.cpp) | ||
target_link_libraries(quickviz PRIVATE imview) | ||
target_include_directories(quickviz PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}) | ||
if (BUILD_QUICKVIZ_APP) | ||
message(STATUS "Build quickviz application") | ||
add_executable(quickviz main.cpp | ||
# components | ||
quickviz_application.cpp | ||
component/log_processor.cpp | ||
# panels | ||
panels/menu_bar.cpp | ||
panels/main_docking_panel.cpp | ||
panels/scene_panel.cpp | ||
panels/config_panel.cpp | ||
panels/console_panel.cpp) | ||
target_link_libraries(quickviz PRIVATE imview) | ||
target_include_directories(quickviz PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}) | ||
|
||
install(TARGETS quickviz | ||
EXPORT quickvizTargets | ||
LIBRARY DESTINATION lib | ||
ARCHIVE DESTINATION lib | ||
RUNTIME DESTINATION bin | ||
INCLUDES DESTINATION include) | ||
endif () |
Oops, something went wrong.