egl: Remove commented code

Fix also the statement about buffer size handling.

Change-Id: I94e93fa4df7fee9b789ecca33d8722fbfc86ccc5
Reviewed-by: Jørgen Lind <jorgen.lind@digia.com>
This commit is contained in:
Laszlo Agocs 2014-03-24 19:55:29 +01:00 committed by The Qt Project
parent e7ad615cca
commit f254474d71

View File

@ -82,16 +82,7 @@ QVector<EGLint> q_createConfigAttributesFromFormat(const QSurfaceFormat &format)
// put in the list before 32-bit configs. So, to make sure 16-bit is preffered over 32-bit,
// we must set the red/green/blue sizes to zero. This has an unfortunate consequence that
// if the application sets the red/green/blue size to 5/6/5 on the QSurfaceFormat,
// they will probably get a 32-bit config, even when there's an RGB565 config available.
// // Now normalize the values so -1 becomes 0
// redSize = redSize > 0 ? redSize : 0;
// greenSize = greenSize > 0 ? greenSize : 0;
// blueSize = blueSize > 0 ? blueSize : 0;
// alphaSize = alphaSize > 0 ? alphaSize : 0;
// depthSize = depthSize > 0 ? depthSize : 0;
// stencilSize = stencilSize > 0 ? stencilSize : 0;
// sampleCount = sampleCount > 0 ? sampleCount : 0;
// they might still get a 32-bit config, even when there's an RGB565 config available.
QVector<EGLint> configAttributes;