From 3df99ab9740630dfc4ce8e4e9ffc742c882485c8 Mon Sep 17 00:00:00 2001 From: enricoturri1966 Date: Tue, 5 Apr 2022 11:11:52 +0200 Subject: [PATCH] Tech ENABLE_GL_CORE_PROFILE set as default into Point.hpp --- src/libslic3r/Point.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/libslic3r/Point.hpp b/src/libslic3r/Point.hpp index 0333b1b93d..993718fa8d 100644 --- a/src/libslic3r/Point.hpp +++ b/src/libslic3r/Point.hpp @@ -46,12 +46,10 @@ using Vec3i64 = Eigen::Matrix; // Vector types with a double coordinate base type. using Vec2f = Eigen::Matrix; using Vec3f = Eigen::Matrix; +using Vec4f = Eigen::Matrix; using Vec2d = Eigen::Matrix; using Vec3d = Eigen::Matrix; -#if ENABLE_GL_CORE_PROFILE -using Vec4f = Eigen::Matrix; using Vec4d = Eigen::Matrix; -#endif // ENABLE_GL_CORE_PROFILE using Points = std::vector; using PointPtrs = std::vector;