When running my executable I get the following Warning :
Warning: The created OpenGL context does not fully meet the settings that were requested
Requested: version = 1.1 ; depth bits = 0 ; stencil bits = 0 ; AA level = 0 ; core = false ; debug = false ; sRGB = false
Created: version = 0.0 ; depth bits = 0 ; stencil bits = 0 ; AA level = 0 ; core = false ; debug = false ; sRGB = false
Setting vertical sync failed
sfml-graphics requires support for OpenGL 1.1 or greater
Ensure that hardware acceleration is enabled if available
OpenGL extension SGIS_texture_edge_clamp unavailable
Artifacts may occur along texture edges
Ensure that hardware acceleration is enabled if available
- I am running WSL 2 Ubuntu subsystem in VsCode
- My SFML version is 2.5.1+dfsg-1build1.
- I am running an integrated GPU Intel UHD 620.
- My OpenGL version is 4.6.0
This effectively creates unbearable visual lag in my application. The application works correctly and is fluid on my friend's machine (mac), where he does not get the aforementioned warning.
I have tried to enable hardware acceleration, but that option is not available for my machine, it seems. I looked at posts on this forum with similar issue but they weren't of help.
What options do I have? Can anyone help ?