Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xs/xsp/GUI_3DScene.xsp')
-rw-r--r--xs/xsp/GUI_3DScene.xsp21
1 files changed, 21 insertions, 0 deletions
diff --git a/xs/xsp/GUI_3DScene.xsp b/xs/xsp/GUI_3DScene.xsp
index 186511cc4..f6d729f98 100644
--- a/xs/xsp/GUI_3DScene.xsp
+++ b/xs/xsp/GUI_3DScene.xsp
@@ -141,6 +141,27 @@ _glew_init()
CODE:
_3DScene::_glew_init();
+unsigned int
+get_legend_texture_id()
+ CODE:
+ RETVAL = _3DScene::get_legend_texture_id();
+ OUTPUT:
+ RETVAL
+
+unsigned int
+get_legend_texture_width()
+ CODE:
+ RETVAL = _3DScene::get_legend_texture_width();
+ OUTPUT:
+ RETVAL
+
+unsigned int
+get_legend_texture_height()
+ CODE:
+ RETVAL = _3DScene::get_legend_texture_height();
+ OUTPUT:
+ RETVAL
+
void
_load_print_toolpaths(print, volumes, tool_colors, use_VBOs)
Print *print;