Fix warning in tst_qopengl.cpp

This fixes warning: unused parameter ‘glFormat’

Change-Id: I4865300fb99ea5392b96f8e9f4f594f15f18625c
Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
bb10
Joerg Bornemann 2019-02-12 14:21:03 +01:00
parent 37970d7b3e
commit aed1e2c49f
1 changed files with 2 additions and 0 deletions

View File

@ -642,6 +642,8 @@ static bool supportsInternalFboFormat(QOpenGLContext *ctx, int glFormat)
return false;
}
}
#else
Q_UNUSED(glFormat);
#endif
return true;
}