Lukas Matena
f7d8e20beb
Fixup of previous commit (4ae7a7c): actually add the files into the repository
2024-07-08 16:06:13 +02:00
Martin Šach
21116995d7
Refactor CMake and improve #includes.
...
* 1. Remove all global include_directories.
* 2. Move 3d party dependencies from src to budled deps if possible.
* Unify and enforce one way of including headers:
e.g. #include "libslic3r/GCode.hpp" vs #include "GCode.hpp"
(always use the "libslic3r/GCode.hpp" option).
* Make all dependencies (also header only) a cmake target.
2024-07-08 15:36:46 +02:00
enricoturri1966
bafd65d55b
SPE-2344: Fix performance hit on MAC in GCodeViewer:
...
squashed et_spe2344_bis (5c6bba6)
2024-06-24 19:45:08 +02:00
Martin Šach
8c55b5f443
Fix size_t -> std::size_t
2024-06-10 14:55:05 +02:00
Lukas Matena
34a79d69eb
GCodeViewer: Added missing breaks into ViewerImpl::set_color_range_palette
2024-06-10 10:46:12 +02:00
Lukas Matena
f5331d7b2d
GCodeViewer: Vertex colors are cached so the don't need to be recalculated too often
2024-06-10 10:46:12 +02:00
Lukas Matena
edb41c8e1d
GCodeViewer: Some std::maps converted to std::arrays for performance reasons
2024-06-10 10:46:12 +02:00
Lukas Matena
0a35a1dbc4
GCodeViewer: Removed needless updates of color ranges
2024-06-10 10:46:11 +02:00
enricoturri1966
87e1341e6f
SPE-2218 - libvgcode - Fixed color of wipe moves for speed range view
2024-04-24 10:25:09 +02:00
enricoturri1966
473f58c4e6
SPE-2218 - libvgcode - Fixed detection of fan speed range
2024-04-24 10:25:09 +02:00
enricoturri1966
f848f00ec2
SPE-2218 - libvgcode - Fixed detection of temperature range
2024-04-24 10:25:09 +02:00
enricoturri1966
95b39425c2
SPE-2218 - libvgcode - Fixed colors for Actual volumetric flow rate view
2024-04-24 10:25:09 +02:00
Martin Šach
5fd66d53ad
Add missing headers and replace size_t with std::size_t.
2024-04-05 14:53:10 +02:00
enricoturri1966
c3120b038a
libvgcode - Fixed potential out of bound access in ViewerImpl::update_view_full_range()
2024-03-26 14:41:57 +01:00
enricoturri1966
1112fca688
Tech ENABLE_OPENGL_ES replaced by build option SLIC3R_OPENGL_ES
2024-03-26 14:41:57 +01:00
enricoturri1966
dbeea5dd0e
libvgcode - Precompiler definition of ENABLE_OPENGL_ES moved into CMakeLists.txt
2024-03-26 14:41:57 +01:00
enricoturri1966
c75c10e908
Added missing include
2024-03-26 14:41:56 +01:00
enricoturri1966
589f733dcc
libvgcode - Textures setup modified to work when building using emscripten
2024-03-26 14:41:56 +01:00
enricoturri1966
c0ef0e52a1
libvgcode - small optimization
2024-03-26 14:41:56 +01:00
enricoturri1966
c7f61a795f
libvgcode - fixed OpenGLWrapper::unload_opengl()
2024-03-26 14:41:56 +01:00
enricoturri1966
673127aeed
libvgcode - CMakeLists.txt modified to work with emscripten
2024-03-26 14:41:56 +01:00
enricoturri1966
e7b22a8d3b
libvgcode - Replace 'glVertexAttribIPointer()' with 'glVertexAttribPointer()' in SegmentTemplate::init() for OpenGL ES
2024-03-26 14:41:56 +01:00
enricoturri1966
8b0142fcce
libvgcode - Replace 'xor' with '^' Bitset.hpp
2024-03-26 14:41:56 +01:00
enricoturri1966
73deaf9075
libvgcode - Newer glad library for OpenGL 4.6 and OpenGL ES 3.0
2024-03-26 14:41:56 +01:00
enricoturri1966
29cfe37de4
libvgcode - Alternate fix in method ViewerImpl::update_heights_widths() for OpenGL ES
2024-03-26 14:41:56 +01:00
enricoturri1966
37359ead80
libvgcode - Fixes in glAssertRecentCallImpl()
2024-03-26 14:41:56 +01:00
enricoturri1966
e3494b9538
libvgcode - Fixes in method ViewerImpl::update_heights_widths() for OpenGL ES
2024-03-26 14:41:56 +01:00
Lukas Matena
c652c1e1f4
Fixed ES shaders so they work with OpenGL ES 3.0
2024-03-26 14:41:56 +01:00
enricoturri1966
5669decd98
libvgcode - Use multiple plain textures in place of texture buffers for OpenGL ES
2024-03-26 14:41:56 +01:00
enricoturri1966
461d30537f
libvgcode - Use plain textures in place of texture buffers for OpenGL ES (partial implementation using one texture per buffer)
2024-03-26 14:41:56 +01:00
enricoturri1966
9579c9c212
libvgcode - refactoring of class OpenGLWrapper
2024-03-26 14:41:56 +01:00
enricoturri1966
9217141b65
libvgcode - small refactoring in shaders
2024-03-26 14:41:56 +01:00
enricoturri1966
591e83b52e
libvgcode - replacement of glMapBuffer() call for OpenGL ES
2024-03-26 14:41:56 +01:00
enricoturri1966
0094ec8b09
libvgcode - Changes into CMakeLists.txt
2024-03-26 14:41:56 +01:00
enricoturri1966
7bd60043d8
Code cleanup and techs removal - step 1
2024-03-26 14:27:02 +01:00
enricoturri1966
feacbc2933
SPE-1872: Fixed rendering of wipe moves when actual speed view is selected
2024-03-26 14:27:01 +01:00
enricoturri1966
fbb7eb77b4
SPE-1872: Actual speed profile extended to travel and wipe moves
2024-03-26 14:27:01 +01:00
enricoturri1966
c054e70dc6
SPE-1872: Added debug graphic to show move actual speed profile
2024-03-26 14:27:01 +01:00
enricoturri1966
21ec3a4a5b
SPE-1872: libvgcode library: replace volumetric flow rate data with mm3_per_mm to reduce memory usage
2024-03-26 14:27:01 +01:00
enricoturri1966
0ba4a67af2
SPE-1872: Added visualization of actual volumetric flow rate
2024-03-26 14:27:01 +01:00
enricoturri1966
268b5860fd
SPE-1872: Fixes in calculating actual speed
2024-03-26 14:27:01 +01:00
enricoturri1966
e4a3fb3b45
SPE-1872: Added visualization of actual speed in gcode preview
2024-03-26 14:27:01 +01:00
enricoturri1966
0da174908a
New gcode visualization library - Interface for estimated times
2024-03-26 14:27:01 +01:00
enricoturri1966
344dfac25b
New gcode visualization library - Tool marker rendering
2024-03-26 14:27:01 +01:00
enricoturri1966
9120c93e7b
New gcode visualization library - Axes aligned bounding boxes calculation
2024-03-26 14:27:01 +01:00
enricoturri1966
4d61f1ced8
Removed obsolete debug code
2024-03-26 14:27:01 +01:00
enricoturri1966
c20d05b15e
New gcode visualization library - Added statistic of used memory
2024-03-26 14:27:00 +01:00
enricoturri1966
6529f28f26
New gcode visualization library - Separation of tool colors and color changes colors to simplify client code
2024-03-26 14:26:59 +01:00
enricoturri1966
24f0c66886
Added missing include
2024-03-26 14:15:40 +01:00
enricoturri1966
88ae637098
New gcode visualization library - Added print color changes detection
2024-03-26 14:15:40 +01:00