Wed, 25 May 2022 20:36:34 +0300
Fix pick() picking from weird places on the screen with high DPI scaling
glReadPixels reads data from the frame buffer, which contains data after
high DPI scaling, so any reads to that need to take this scaling into account
#include "edge.h" QString ldraw::Edge::textRepresentation() const { return utility::format( "%1 %2", utility::vertexToStringParens(this->points[0]), utility::vertexToStringParens(this->points[1])); } void ldraw::Edge::getPolygons( std::vector<gl::Polygon>& polygons, GetPolygonsContext* context) const { Q_UNUSED(context) polygons.push_back(gl::edgeLine(this->points[0], this->points[1], this->colorIndex, this->id)); } ldraw::Object::Type ldraw::Edge::typeIdentifier() const { return Type::EdgeLine; } QString ldraw::Edge::toLDrawCode() const { return utility::format( "2 %1 %2 %3", this->colorIndex.index, utility::vertexToString(this->points[0]), utility::vertexToString(this->points[1])); } QString ldraw::Edge::iconName() const { return ":/icons/linetype-edgeline.png"; } QString ldraw::Edge::typeName() const { return QObject::tr("edge"); }