Close to getting FBOs.... link error. =(

Started by
3 comments, last by AverageJoeSSU 16 years, 3 months ago
So close! im getting..... unresolved external symbol __imp____glewGenFramebuffersEXT here is the order of what i am including.... #include <windows.h> #include "TCHAR.H" #include<gl\glew.h> #include<gl\glext.h> //#include<gl\glee.h> //#include <gl\gl.h> // Header File For The OpenGL32 Library //#include <gl\glu.h> // Header File For The GLu32 Library //#include <gl\glaux.h> // Header File For The Glaux Library when i include the others there are problems, and i cant seem to find the right order. ugh

------------------------------

redwoodpixel.com

Advertisement
Are you linking to the Glew DLL and/or Libs?
Such as "#pragma comment( lib, "glew32.lib" )"

Edit: Also will want to make sure the DLL is in either your Build/Bin directory or is in your System32 directory.
that was it... thanks.

------------------------------

redwoodpixel.com

curiosity... Why are you using glee and glew? Don't they essentially do the same thing?

(I realize one of them is commented out... but there must've been a reason you included the comments)
____________________________Bjarni Arnasonbjarni.us
in an effort to get it compiling... i put both in the include file... but commented each out at a time to see if it made a difference.

------------------------------

redwoodpixel.com

This topic is closed to new replies.

Advertisement