~random-stuff/mupen64plus/mupen64plus-video-gliden64

« back to all changes in this revision

Viewing changes to src/GLideNUI/ConfigDialog.cpp

  • Committer: Sergey Lipskiy
  • Author(s): fzurita
  • Date: 2019-04-08 03:51:18 UTC
  • Revision ID: git-v1:5df3f9dbacfe0086ad4f440c34a6e243fd50d7c0
Threaded GLideN64 calls

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
        ui->aliasingLabelVal->setText(QString::number(config.video.multisampling));
118
118
        ui->anisotropicSlider->setValue(config.texture.maxAnisotropy);
119
119
        ui->vSyncCheckBox->setChecked(config.video.verticalSync != 0);
 
120
        ui->vThreadedVideoCheckBox->setChecked(config.video.threadedVideo != 0);
120
121
 
121
122
        switch (config.texture.bilinearMode) {
122
123
        case BILINEAR_3POINT:
426
427
 
427
428
        config.video.verticalSync = ui->vSyncCheckBox->isChecked() ? 1 : 0;
428
429
 
 
430
        config.video.threadedVideo = ui->vThreadedVideoCheckBox->isChecked() ? 1 : 0;
 
431
 
429
432
        // Emulation settings
430
433
        config.generalEmulation.enableLOD = ui->emulateLodCheckBox->isChecked() ? 1 : 0;
431
434
        config.generalEmulation.enableNoise = ui->emulateNoiseCheckBox->isChecked() ? 1 : 0;