X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fcore%2Ftexturecube.h;h=d444fee5dfefc8bb084956281a1957efbf9c0447;hp=aa43c9da0a97ca084bd2690fd1f1e7b2dae35b13;hb=f73e671dcb36c097647cddbf5b1eaaad2ffc9299;hpb=190a7e11237351f6b730c28f7b16f183e8adc69c diff --git a/source/core/texturecube.h b/source/core/texturecube.h index aa43c9da..d444fee5 100644 --- a/source/core/texturecube.h +++ b/source/core/texturecube.h @@ -60,6 +60,8 @@ public: cannot be changed once set. */ void storage(PixelFormat, unsigned size, unsigned lv = 0); + virtual void image(unsigned, const void *); + /** Replaces contents of a single face. Allocated storage must exist. The image data is interpreted according to the storage format and must have size matching the selected mipmap level. */ @@ -68,7 +70,7 @@ public: /** Replaces a rectangular region of a face. Allocated storage must exist. The image data is interpreted according to the storage format and the region must be fully inside the face. */ - void sub_image(TextureCubeFace, unsigned level, int x, int y, unsigned w, unsigned h, const void *); + void sub_image(TextureCubeFace, unsigned level, unsigned x, unsigned y, unsigned w, unsigned h, const void *); void image(TextureCubeFace, const Graphics::Image &); @@ -95,10 +97,6 @@ public: /** Returns a vector pointing to the center of a texel. */ Vector3 get_texel_direction(TextureCubeFace, unsigned, unsigned); - - virtual AsyncLoader *load(IO::Seekable &, const Resources * = 0) { return 0; } - virtual std::size_t get_data_size() const; - virtual void unload() { } }; void operator>>(const LexicalConverter &, TextureCubeFace &);