chore: use standard stb header location
This commit is contained in:
parent
dafd2e9b06
commit
5def25ec03
|
@ -28,7 +28,6 @@ namespace Data {
|
||||||
std::string name;
|
std::string name;
|
||||||
Deserializer deserializer;
|
Deserializer deserializer;
|
||||||
FromString fromString;
|
FromString fromString;
|
||||||
TypeInfo(const TypeInfo&) = delete;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class String;
|
class String;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include <GL/glew.h>
|
#include <GL/glew.h>
|
||||||
#include <GL/gl.h>
|
#include <GL/gl.h>
|
||||||
#include <stb/stb_image.h>
|
#include <stb_image.h>
|
||||||
|
|
||||||
#include "skybox.h"
|
#include "skybox.h"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#include <GL/glew.h>
|
#include <GL/glew.h>
|
||||||
#include <GL/gl.h>
|
#include <GL/gl.h>
|
||||||
#include <stb/stb_image.h>
|
#include <stb_image.h>
|
||||||
|
|
||||||
Texture::Texture(const char* texturePath, unsigned int format, bool noMipMaps) {
|
Texture::Texture(const char* texturePath, unsigned int format, bool noMipMaps) {
|
||||||
glGenTextures(1, &this->ID);
|
glGenTextures(1, &this->ID);
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#include <GL/glew.h>
|
#include <GL/glew.h>
|
||||||
#include <GL/gl.h>
|
#include <GL/gl.h>
|
||||||
#include <stb/stb_image.h>
|
#include <stb_image.h>
|
||||||
|
|
||||||
Texture3D::Texture3D(const char* texturePath, unsigned int tileWidth, unsigned int tileHeight, unsigned int tileCount, unsigned int format) {
|
Texture3D::Texture3D(const char* texturePath, unsigned int tileWidth, unsigned int tileHeight, unsigned int tileCount, unsigned int format) {
|
||||||
glGenTextures(1, &this->ID);
|
glGenTextures(1, &this->ID);
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#define STB_IMAGE_IMPLEMENTATION
|
#define STB_IMAGE_IMPLEMENTATION
|
||||||
#include <stb/stb_image.h>
|
#include <stb_image.h>
|
Loading…
Reference in a new issue