Rocketmagnet
unread,Oct 24, 2008, 9:37:07 AM10/24/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Wildcat CAD
Hi,
Having build Wildcat, I can now tell you where it is crashing.
shader_manager.cpp, line 254
The problem is that glTransformFeedbackVaryingsEXT == 0x00000000.
Changing it to
if (glTransformFeedbackVaryingsEXT)
glTransformFeedbackVaryingsEXT(program->_id, varyingCount,
varyings, type);
seems to let it run OK. I don't know what this line is supposed to
do.
Hugo