Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
709 views

Compiling OpenGL SOIL on Mac OS X

How would I link in or compile SOIL (http://lonesock.net/soil.html) into my C++ OpenGL project on Mac OS X?
2
votes
0answers
114 views

Compiling OpenGL SOIL on Ubuntu

How do I link SOIL for a OpenGL in Ubuntu? EDIT: I figured out the issue, my professor showed the locate cmd in the terminal and I was able to find where I had to get the .h from. If anyone else ...
1
vote
0answers
54 views

Soil Type with Coordinates API

I need to get a soil type with coordinates. Is this possible? This is what i wanna do, i want to ask for coordinates and return the soil type. Any ideias, sugestions? Please, Help.
1
vote
1answer
1k views

OpenGL,SOIL library and a textured rectangular

I'm trying to make a simple textured rectangular in OpenGL using SOIL and GLUT. This is my Display function (executed in main by glutDisplayFunc(Display)): void Display () { GLuint tex_2d; ...
0
votes
1answer
89 views

How to load different images (loop) using SOIL for OpenGL c++?

Anyone knows how to loop different image from xml I parse (I used libxml2) then load it > using SOIL for OpenGL in c++? here's my code: LoadImage *img[0]; File getFile; int a; string imge; ...
0
votes
1answer
218 views

OpenGL Mipmaps and SOIL Flag

So i got the SOIL loading my images now, but it says you can set a flag for the MipMap generation. I set the flag and as far as I know OpenGL does the rest when it comes to using the MipMaps at ...
0
votes
1answer
363 views

Is there a way to split one texture into an array of them using SOIL in C++?

I'm using SOIL in my project, and I need to take in a single texture, and than convert it into an array of textures using different parts of the first texture. (To use a sprite sheet). I'm using SDL ...