X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftexturecube.h;h=9ce216fdd1db1e79e164769f9d6017984de15f46;hb=08e19bc2b4eba572bc7699378cf55cd8772ac67e;hp=8d87c410d2f91e98032bc1ce47be5cad8a804f44;hpb=804ad5d99c575b92e9d47421947e963a44f7a905;p=libs%2Fgl.git diff --git a/source/texturecube.h b/source/texturecube.h index 8d87c410..9ce216fd 100644 --- a/source/texturecube.h +++ b/source/texturecube.h @@ -1,9 +1,8 @@ #ifndef MSP_GL_TEXTURECUBE_H_ #define MSP_GL_TEXTURECUBE_H_ +#include #include -#include "datatype.h" -#include "pixelformat.h" #include "texture.h" #include "vector.h" @@ -39,7 +38,11 @@ public: { public: Loader(TextureCube &); + Loader(TextureCube &, Collection &); private: + void init(); + + void external_image(TextureCubeFace, const std::string &); void image_data(TextureCubeFace, const std::string &); void raw_data(TextureCubeFace, const std::string &); void storage(PixelFormat, unsigned); @@ -50,7 +53,9 @@ private: unsigned size; unsigned allocated; + static TextureCubeFace face_order[6]; static Vector3 directions[6]; + static unsigned orientations[12]; public: TextureCube(); @@ -76,17 +81,22 @@ public: int x, int y, unsigned w, unsigned h, PixelFormat fmt, DataType type, const void *data); - void image(TextureCubeFace, const Graphics::Image &); + void image(TextureCubeFace, const Graphics::Image &, bool = false); + + virtual void image(const Graphics::Image &, bool = false); unsigned get_size() const { return size; } private: - unsigned get_level_size(unsigned); + unsigned get_n_levels() const; + unsigned get_level_size(unsigned) const; public: /** Translates indices into face constants. Valid indices are between 0 and 5, inclusive. */ static TextureCubeFace enumerate_faces(unsigned); + static unsigned get_face_index(TextureCubeFace); + /** Returns a vector pointing out of the face. */ static const Vector3 &get_face_direction(TextureCubeFace); @@ -98,6 +108,10 @@ public: /** Returns a vector pointing to the center a texel. */ Vector3 get_texel_direction(TextureCubeFace, unsigned, unsigned); + + virtual AsyncLoader *load(IO::Seekable &, const Resources * = 0) { return 0; } + virtual UInt64 get_data_size() const; + virtual void unload() { } }; void operator>>(const LexicalConverter &, TextureCubeFace &);