I am trying to use multisampling.
I'm calling glutInitDisplayMode()
with GLUT_MULTISAMPLE
flag, then I'm checking if multisampling is available and I received following values: GL_SAMPLE_BUFFERS
= 0 and GL_SAMPLES
= 1. I suppose it means that multisampling isn't available.
How to solve this issue and make multisampling available?