9
votes
3answers
680 views

Is GNU GCC used for AAA games?

GNU GCC is a very common compiler, but it seems like almost no one uses it for bigger projects like AAA games. To me, it's works just fine, never had a problem with it. But I wonder why all AAA games ...
2
votes
1answer
176 views

How to link OpenGL with my own static library?

My game project is split up into three parts: Core (lib) Editor (exe) Game (exe) I'm using OpenGL in both my Core and Game parts, but as soon as I try to call an OpenGL function in my Core library ...
0
votes
0answers
181 views

SDL audio streaming callback function never triggered

I'm attempting to stream audio for my C++ game which uses SDL through the mingw32 environment. From my understanding it's a fairly simple affair: extern "C" void audioStep(void* unused, Uint8* ...
3
votes
1answer
1k views

Setting up OpenGL 3.3 in SDL 1.2

I've been using SDL 1.2.14 for awhile without using many of the features from newer OpenGL versions. I'm now interested working only with the 3.3 API (not using the deprecated functions, etc... that's ...
1
vote
1answer
419 views

Ogre Specific libraries

i have a simple question. For people that know and built ogre3D from source as a Static library, What is the order of which the libraries should be linked? The libraries I need to be organized are: ...
1
vote
1answer
266 views

How would I setup the Environment Variables for BulletPhysics?

I am using Bullet Physics v2.78. And Im trying to build this library to be used for ogrebullet. The main problem is that Im getting errors trying to find the Bullet Directory. Im wondering if maybe ...