🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

texturing

Started by
2 comments, last by okapota 23 years, 11 months ago
i read the textures tutorial. i wrote everything, and i get 3 "unresolveable" errors: unresolved external symbol "public: __thiscall CTexures::CTexures(void)" (??0CTexures@@QAE@XZ) openglfirstView.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall CTexures::~CTexures(void)" (??1CTexures@@UAE@XZ) openglfirstView.obj : error LNK2001: unresolved external symbol "public: bool __thiscall CTexures::LoadTexture(void)" (?LoadTexture@CTexures@@QAE_NXZ) what to do??
Advertisement
It seems you missed a file for class CTexures.
You should put missing files into your projects.
Linker errors are mostly caused by including the right header files but not llinking with the binaries.

So....you probably didn''t link with the opengl libraries.
Look in the setup tutorials for the three libs.
Also a common copy-paste error is forgetting the CTexures:: in the cpp file, and you are missing a "t" in "CTextures". ??

Edited by - Claus Hansen Ries on August 10, 2000 5:45:04 AM
Ries

This topic is closed to new replies.

Advertisement