mirror of
https://git.freebsd.org/ports.git
synced 2025-05-18 01:53:13 -04:00
- Update to 2.3.3 - Change the dependency from devel/tbb to devel/onetbb ChangeLog: https://github.com/prusa3d/PrusaSlicer/releases/tag/version_2.3.3 PR: 258483 Submitted by: Steve Wills <swills@FreeBSD.org> Reported by: teodorsigaev@gmail.com (tested), eborisch+FreeBSD@gmail.com (tested)
12 lines
518 B
C++
12 lines
518 B
C++
--- src/slic3r/GUI/OpenGLManager.cpp.orig 2021-04-16 11:41:00 UTC
|
|
+++ src/slic3r/GUI/OpenGLManager.cpp
|
|
@@ -239,7 +239,8 @@ bool OpenGLManager::init_gl()
|
|
if (!m_gl_initialized) {
|
|
if (glewInit() != GLEW_OK) {
|
|
BOOST_LOG_TRIVIAL(error) << "Unable to init glew library";
|
|
- return false;
|
|
+ /* Ugly fix for https://github.com/prusa3d/PrusaSlicer/issues/6396 */
|
|
+ //return false;
|
|
}
|
|
m_gl_initialized = true;
|
|
if (GLEW_EXT_texture_compression_s3tc)
|