X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftexture2d.h;h=2a49eca572ee06e25a7a770488b0639d6fd07fc9;hb=refs%2Fheads%2Fmaster;hp=05fbbce2e80b6362e576077ca4fe019311576f46;hpb=48d253c9f19c04c6940bfc932a78c51ea24e2e75;p=libs%2Fgl.git diff --git a/source/texture2d.h b/source/texture2d.h deleted file mode 100644 index 05fbbce2..00000000 --- a/source/texture2d.h +++ /dev/null @@ -1,78 +0,0 @@ -#ifndef MSP_GL_TEXTURE2D_H_ -#define MSP_GL_TEXTURE2D_H_ - -#include -#include -#include "datatype.h" -#include "pixelformat.h" -#include "texture.h" - -namespace Msp { -namespace GL { - -/** -Two-dimensional texture class. This is the most common type of texture. -*/ -class Texture2D: public Texture -{ -public: - class Loader: public Texture::Loader - { - public: - Loader(Texture2D &); - private: - void image_data(const std::string &); - void raw_data(const std::string &); - void storage(PixelFormat, unsigned, unsigned); - void storage_b(PixelFormat, unsigned, unsigned, unsigned); - }; - -private: - PixelFormat ifmt; - unsigned width; - unsigned height; - unsigned allocated; - -public: - Texture2D(); - - /** - Defines the texture storage. This function may only be successfully called - once. - */ - void storage(PixelFormat fmt, unsigned wd, unsigned ht); - - /** Allocates texture storage. If storage has already been allocated, this - function does nothing. */ - void allocate(unsigned level); - - /** Uploads an image to the texture. storage() must have been called prior to - this, and the image must have dimensions conforming to the specified - storage. For level>0, mipmapping rules apply to the image dimensions. */ - void image(unsigned level, PixelFormat fmt, DataType type, const void *data); - - /** - Uploads a sub-image into the texture. Unlike full image upload, there are - no constraints on the size of the sub-image. - */ - void sub_image(unsigned level, int x, int y, unsigned wd, unsigned ht, PixelFormat fmt, DataType type, const void *data); - - /** - Loads an image from a file and uploads it to the texture. If storage() has - not been called, the storage format will be set to match the loaded image. - */ - void load_image(const std::string &fn); - - unsigned get_width() const { return width; } - unsigned get_height() const { return height; } - -private: - void image(const Graphics::Image &); - void require_storage(); - void get_level_size(unsigned, unsigned &, unsigned &); -}; - -} // namespace GL -} // namespace Msp - -#endif