I'm doing GPU computing on a Nvidia GeForce GTX 1050 in an ASUS RoG fx553 laptop, and for some reason, although the official Nvidia website lists this GPU as compatible with thread intrinsics instructions (GL_NV_shader_thread_group
and the like), using #extension GL_NV_shader_thread_group : require
constantly throws an error and reports the extension as not being available, even though I'm using a 4.3 context with #version 430
(I also tried 4.4 to no avail). Since I'm new to loading extensions, I don't know if I'm missing some setting up on the Glad/GLFW end.
EDIT : I downloaded the OpenGL extensions viewer, which went on and told me that my GPU supposedly supports GL_NV_shader_thread_group
, even in an OpenGL 4.3 context.