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 "gl/common.h" #include "gl/basicshaderprogram.h" class AxesProgram : public AbstractBasicShaderProgram { Q_OBJECT public: using AbstractBasicShaderProgram::AbstractBasicShaderProgram; protected: const char* vertexShaderSource() const override; const char* fragmentShaderSource() const override; const void* vertexData() const override; GLenum drawMode() const override; int vertexSize() const override; int vertexCount() const override; void setupVertexArrays() override; QOpenGLBuffer::UsagePattern usagePattern() const override; };