terravisor/include/load_texture.h

14 lines
270 B
C++

#ifndef __LOADTEXTURE_H__
#define __LOADTEXTURE_H__
#include "platform_utils.h"
#include <string>
#include <vector>
#include "GL/glew.h"
#include "GL/gl.h"
GLuint LoadTexture(const std::string& fname);
GLuint LoadSkybox(const std::vector<std::string>& faces);
#endif