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
#pragma once #include "polygonobject.h" namespace ldraw { class Edge; } class ldraw::Edge : public PolygonObject<2> { public: using PolygonObject::PolygonObject; QString textRepresentation() const override; void getPolygons(std::vector<gl::Polygon>& polygons, GetPolygonsContext* context) const override; Type typeIdentifier() const override; QString toLDrawCode() const override; QString iconName() const override; QString typeName() const override; };