LiveViewOpenCL icon indicating copy to clipboard operation
LiveViewOpenCL copied to clipboard

Found some hard-coded dimensions, not sure if it's an issue or not (yet)

Open NimrodCarmon opened this issue 3 years ago • 0 comments

in frameworker.cpp, in the frameworker function (starts at line 68), we have this:

case XIO:
    Camera = new XIOCamera(settings->value(QString("ssd_width"), 640).toInt(),
                           settings->value(QString("ssd_height"), 480).toInt(),
                           settings->value(QString("ssd_height"), 480).toInt());
    break;
case ENVI:
    Camera = new ENVICamera(settings->value(QString("ssd_width"), 640).toInt(),
                            settings->value(QString("ssd_height"), 480).toInt(),
                            settings->value(QString("ssd_height"), 480).toInt());

It might be nothing, but I wanted to put it here so people would be aware in case there are downstream issues from this one.

NimrodCarmon avatar Mar 22 '21 23:03 NimrodCarmon