Files
axyz/include/Engine/Rendering/Util/CommonFunctions.h
T
Tleety 53265bbc90 PNG is now a resource.
You can now load textures threaded.
PNG will now throw exceptions when errors happend
SpriteComponent is now working without billboarding.
2016-02-10 17:50:17 +01:00

14 lines
249 B
C++

#ifndef CommonFuntions_h__
#define CommonFuntions_h__
#include "../../Common.h"
#include "../../OpenGL.h"
#include "../../GLM.h"
#include "../Texture.h"
namespace CommonFunctions
{
Texture* LoadTexture(std::string path, bool threaded);
};
#endif