OGL3.2 & GL_EXT_geometry_shader4

GeForce 9600 GT @ WinXP64 @ 21.11.09 drivers & using OGL 3.2 @ geometry shader (#version 150), gives:

error C7531: global variable gl_PositionIn requires “#extension GL_EXT_geometry_shader4 : enable” before use

Why does it ask for it? Is it not core in 3.2?

:confused:

Geometry shaders are core 3.2. But it isn’t implemented the way EXT_geometry_shader4 is. The special input variables for geometry shaders are defined in an input layout block called “gl_in”, which is an array. See the GLSL 1.5 specification for more details.

Indeed! (Just recently did read the 1.5 spec from cover-to-cover and looking at the notes of that undertaking - i have noticed that difference and marked it with “???” … just kind of forgot that. x_x)

Thanks.

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.