I want to load this picture into a 2d texture and then draw it onto the screen. The main problem is loading the picture into a texture variable. The follow code output the correct width and height and rgba but how do I put the data into a 3d texture.
#include <OpenGL/gl.h>
#include <OpenGL/glu.h>
/* more includes... */
#include "stb_image.h"
using namespace std;
int main(int argc, char** argv) {
int x,y,n;
unsigned char *data = stbi_load("png.png", &x, &y, &n, 0);
if (data == NULL) {
// error
cout << "Error, data was null";
} else {
// process
cout << data << endl << endl;
}
stbi_image_free(data);
cout << x << endl << y << endl << n;
return 0;
}