mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 19:50:31 -04:00
ChangeLog: https://www.freshports.org/cad/PrusaSlicer/ PR: 267772 Reported by: teodorsigaev@gmail.com (maintainer)
12 lines
518 B
C++
12 lines
518 B
C++
--- src/slic3r/GUI/OpenGLManager.cpp.orig 2022-09-06 07:09:19 UTC
|
|
+++ src/slic3r/GUI/OpenGLManager.cpp
|
|
@@ -236,7 +236,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)
|