mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-29 19:02:55 +02:00
addressing comment in pr. removing extra space added in previous checkin
This commit is contained in:
parent
a5f4664001
commit
fe6b2fceed
2 changed files with 2 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
//
|
//
|
||||||
// Application.h
|
// Application.h
|
||||||
// interface/src
|
// interface/src
|
||||||
//
|
//
|
||||||
|
@ -78,8 +78,6 @@
|
||||||
|
|
||||||
#include "Sound.h"
|
#include "Sound.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class GLCanvas;
|
class GLCanvas;
|
||||||
class FaceTracker;
|
class FaceTracker;
|
||||||
class MainWindow;
|
class MainWindow;
|
||||||
|
|
|
@ -251,7 +251,7 @@ GPUIdent* GPUIdent::ensureQuery(const QString& vendor, const QString& renderer)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!validAdapterList.empty()) {
|
if (!validAdapterList.empty()) {
|
||||||
for (auto outy = adapterToOutputs.begin(); outy != adapterToOutputs.end(); outy++) {
|
for (auto outy = adapterToOutputs.begin(); outy != adapterToOutputs.end(); ++outy) {
|
||||||
|
|
||||||
AdapterEntry entry = *outy;
|
AdapterEntry entry = *outy;
|
||||||
for (auto test = entry.second.begin(); test != entry.second.end(); ++test) {
|
for (auto test = entry.second.begin(); test != entry.second.end(); ++test) {
|
||||||
|
|
Loading…
Reference in a new issue