fix ressources path of image

This commit is contained in:
arthur.jamet
2021-06-01 14:07:34 +02:00
parent fd94bd41d3
commit fabc51ca2f
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ namespace RAY {
Texture::Texture(const Image &image): Texture::Texture(const Image &image):
_texture(LoadTextureFromImage(image)), _texture(LoadTextureFromImage(image)),
_resourcePath("IMAGE") _resourcePath()
{ {
} }

View File

@@ -20,7 +20,7 @@ namespace RAY
//! @param filename: path to file to load //! @param filename: path to file to load
Texture(const std::string &filename); Texture(const std::string &filename);
//! @brief A texture is not constructable //! @brief A texture is copy constructable
Texture(const Texture &); Texture(const Texture &);
//! @brief A textrue can be loaded from an image //! @brief A textrue can be loaded from an image